Thanks to Rot8er_ConeX
Original Concept : https://www.pokecommunity.com/threads/354015
This script allows the player to become the pokemon sprite if pokemon used the move or is in party
-----------------------------------------------------
you want to go in the scripts to PField_Field, around line 1601 you'll find the following code:
Add the stuff in red.
Then you need to add this somewhere above Main
You can change the file names. But whatever you do name them to, you need an image of the same name in Graphics/Characters/
This can also be used for HM-Surf & Bike
Original Concept : https://www.pokecommunity.com/threads/354015
This script allows the player to become the pokemon sprite if pokemon used the move or is in party
-----------------------------------------------------
you want to go in the scripts to PField_Field, around line 1601 you'll find the following code:
Code:
def Kernel.pbUpdateVehicle
meta=pbGetMetadata(0,MetadataPlayerA+$PokemonGlobal.playerID)
if meta
if $PokemonGlobal.diving
$game_player.character_name=pbGetPlayerCharset(meta,5) # Diving graphic
elsif $PokemonGlobal.surfing
[COLOR="red"]if pbHasSpecies?(:GYARADOS)
trainer=$Trainer if !trainer
outfit=trainer ? trainer.outfit : 0
if outfit==0
$game_player.character_name=Settings::GyaraSurfFileName[$PokemonGlobal.playerID]
else
$game_player.character_name=Settings::GyaraSurfFileName[$PokemonGlobal.playerID]+"_"+outfit.to_s
end
else[/COLOR]
$game_player.character_name=pbGetPlayerCharset(meta,3) # Surfing graphic
[COLOR="Red"]end[/COLOR]
elsif $PokemonGlobal.bicycle
$game_player.character_name=pbGetPlayerCharset(meta,2) # Bicycle graphic
else
$game_player.character_name=pbGetPlayerCharset(meta,1) # Regular graphic
end
end
end
Then you need to add this somewhere above Main
Code:
module Settings
GyaraSurfFileName = [
"boy_surfGyara", # Player A
"girl_surfGyara", # Player B
"", # Player C
"", # Player D
"", # Player E
"", # Player F
]
end
You can change the file names. But whatever you do name them to, you need an image of the same name in Graphics/Characters/
This can also be used for HM-Surf & Bike
Last edited: