[Request] Change player speed
Posted: 31 Jul 2019, 23:46
Good, I need a script that changes the player's speed, I need to make the character slower.
Official Community of WohlSoft Team
https://wohlsoft.ru/forum/
Code: Select all
do
If char(j).xsp > 0 then
char(j).xsp = char(1).xsp * q
end if
call sleep(1)
loop
Code: Select all
do
If char(j).xsp < 0 then
char(j).xsp = char(1).xsp * q
end if
call sleep(1)
loop
Code: Select all
do
If char(j).xsp < 0 then
char(j).ysp = char(1).ysp * q
end if
call sleep(1)
loop
Code: Select all
do
If char(j).xsp > 0 then
char(j).ysp = char(1).ysp * q
end if
call sleep(1)
loop