Rayquaza.
Lead Dev in Pokémon Order and Chaos
- 702
- Posts
- 13
- Years
- United Kingdom
- Seen Jan 24, 2021
As many people know I have no scripting knowledge whatsoever, so it was inevitable that when I tried to add stuff to the multiple forms script I get a syntax (or worse).
Luckily all I got was a syntax instead of screwing up the entire game, while trying to input a bit for KYUREM's new forms this came up (See attachment).
If you know how to fix the highlighted part that'd be great.
also if you want to try to edit this in your RMXP here is the script I tried to input:
Luckily all I got was a syntax instead of screwing up the entire game, while trying to input a bit for KYUREM's new forms this came up (See attachment).
If you know how to fix the highlighted part that'd be great.
also if you want to try to edit this in your RMXP here is the script I tried to input:
Code:
MultipleForms.register(:KYUREM,{
"ability"=>proc{|pokemon|
if pokemon.form==0
next getID(PBAbilities,:PRESSURE)
else
next getID(PBAbilities,:MOLDBREAKER)
end
},
"getForm"=>proc{|pokemon|
if isConst?(pokemon.item,PBItems,:ICEORB)
next 1
if isConst?(pokemon.item,PBItems,:VOLTORB)
next 2
next 0
},
"getBaseStats"=>proc{|pokemon|
case pokemon.form
# White Forme
when 1; next [170,160,140,120,140,140]
# Black Forme
when 2; next [170,170,150,110,140,150]
# Normal Forme
else; next [150,100,120,90,100,120]
end
}
})
Attachments
Last edited: