ReVaN777
Creator of Pokemon Titanium
- 108
- Posts
- 13
- Years
- Moreno Valley, CA
- Seen Mar 28, 2024
Does anyone know how to edit the Players pokeball throw during battles,
this is the script that needs to be edited but i don't know how to edited it? any help would be appreciated.
this is the script that needs to be edited but i don't know how to edited it? any help would be appreciated.
Code:
def pbSendOut(battlerindex,pkmn) # Player sending out Pokémon
while inPartyAnimation?; end
balltype=pkmn.ballused
ballbitmap=sprintf("Graphics/Pictures/ball%02d",balltype)
pictureBall=PictureEx.new(32)
delay=1
pictureBall.moveVisible(delay,true)
pictureBall.moveName(delay,ballbitmap)
pictureBall.moveOrigin(delay,PictureOrigin::Center)
# Setting the ball's movement path
path=[[0, 100], [10, 134], [21, 122], [30, 112],
[39, 104], [46, 99], [53, 95], [61, 93],
[68, 93], [75, 96], [82, 102], [89, 111],
[94, 121], [100, 134], [106, 150], [111, 166],
[116, 183], [120, 199], [124, 216], [127, 238]]