- 3
- Posts
- 8
- Years
- Seen May 28, 2017
Hey guys, i'm making a Pokémon that change it's form and type based on the place it's caught, i want to do it for every single type, i'll do 17 different forms.
I did this:
I must say i'm a total newbie with scripts, and i don't know how to make this work.
Right now the only place where it has another form is in map 80, it appears with form 0 in 78, how do i fix this?
Thanks in advance.
I did this:
MultipleForms.register(:ROLLERBOSTER,{
"getFormOnCreation"=>proc{|pokemon|
maps=[78] # Map IDs for second form
if $game_map && maps.include?($game_map.map_id)
next 1
else
next 0
end
},
"getFormOnCreation"=>proc{|pokemon|
maps=[80] # Map IDs for second form
if $game_map && maps.include?($game_map.map_id)
next 1
else
next 0
end
},
I must say i'm a total newbie with scripts, and i don't know how to make this work.
Right now the only place where it has another form is in map 80, it appears with form 0 in 78, how do i fix this?
Thanks in advance.
Last edited: