Games
Developers
Forums
More
BYOND
Download
Developer Guide
Developer Reference
Support
Terms of Service
Membership
Contact Us
Many features on this site require JavaScript. Please enable JavaScript support in your browser.
Register
Login
BYOND Forums
Announcements
·
BYOND Help
·
Bug Reports
·
Feature Requests
·
Beta Testers
·
Beta Bugs
·
Developer Help
·
Design Philosophy
·
Demos & Libraries
·
Tutorials & Snippets
·
Art & Sound
·
Classified Ads
·
Game Updates
·
Contests & Events
·
Linux Talk
·
On Topic
·
Off Topic
Lowering the usrs speed.
[Tips]
ID:175876
Mar 1 2003, 10:03 pm
Koolguy900095
Is it possible to set the usrs speed slower than it normaly is
Mar 1 2003, 10:05 pm
Zlegend2
yes.
mob/Login()
speeding = 0
mob/var
speeding = 0
rundelay = 3
normalrundelay = 3
client/Move()
if(mob.speeding <= 0)
mob.speeding = 1
..()
sleep(mob.rundelay)
mob.speeding = 0
else
return
Mar 1 2003, 10:16 pm
In response to
Zlegend2
Koolguy900095
yeah it works thanks!
Mar 1 2003, 10:20 pm
In response to
Koolguy900095
Zlegend2
anytime.
Copyright © 2025 BYOND Software. All rights reserved.
mob/Login()
speeding = 0
mob/var
speeding = 0
rundelay = 3
normalrundelay = 3
client/Move()
if(mob.speeding <= 0)
mob.speeding = 1
..()
sleep(mob.rundelay)
mob.speeding = 0
else
return