- 232
- Posts
- 8
- Years
- Seen May 13, 2025
I'm working on the PokeRide script. I would like a support ...
We have two mounts with different Pokémon as in the example:
# pbMount(Tauros)
module Tauros
MoveSheet = ["Pokeride/boy_tauros","Pokeride/girl_tauros"]
MoveSpeed = 5.0
ActionSheet = ["Pokeride/boy_tauros_charge","Pokeride/girl_tauros_charge"]
ActionSpeed = 5.6
RockSmash = true
end
# pbMount(Charizard)
module Charizard
MoveSheet = ["boy_charizard","girl_charizard"]
MoveSpeed = 2
ActionSheet = ["boy_charizard","girl_charizard"]
ActionSpeed = 2
end
I don't want to modify Tauros, it's perfect.
But, I wish the Charizard had animated on the mount. Because it flies, right? I would like it to have fixed animation because of its wings that flap in the air. What code should I implement?
Thanks!
We have two mounts with different Pokémon as in the example:
Spoiler:
# pbMount(Tauros)
module Tauros
MoveSheet = ["Pokeride/boy_tauros","Pokeride/girl_tauros"]
MoveSpeed = 5.0
ActionSheet = ["Pokeride/boy_tauros_charge","Pokeride/girl_tauros_charge"]
ActionSpeed = 5.6
RockSmash = true
end
# pbMount(Charizard)
module Charizard
MoveSheet = ["boy_charizard","girl_charizard"]
MoveSpeed = 2
ActionSheet = ["boy_charizard","girl_charizard"]
ActionSpeed = 2
end
I don't want to modify Tauros, it's perfect.
But, I wish the Charizard had animated on the mount. Because it flies, right? I would like it to have fixed animation because of its wings that flap in the air. What code should I implement?
Thanks!