ID:270862
 
Is there anny way to increase the speed of a person?
Ex:
A person's normal speed was slow.
But after weight training, they got faster?
after the training..usr.speed += number
In response to Rikishi
Is there a max to how high the speed can go?
In response to Chibi-Gohan0
uhh not really, can go pretty high all the way to #inf
In response to Chibi-Gohan0
Depends on how you make your system.

Example:
mob
var
speed=10
maxspeed=1000
tmp/moved=0 //wouldn't be fair if this var was saved
Move()//will only effect mob's speed
if(src.moved)return //will stop the mob from moving foward
.=..()//makes the mob move if there's nothing stopping it
if(.)//if the mob successfully moved (think . as having the return value for ..() )
src.moved=1
spawn(maxspeed-speed)//You should get what this does
if(src)src.moved=0


There can be many more possibilities >_>

- GhostAnime
In response to GhostAnime
Thanks, i'll try it.