ID:262041
 
mob
Login()
..()
src.yourbabyfarm()


mob/proc/yourbabyfarm()
sleep(2000)
usr.Money-=300
sleep(3000)
usr.Money+=5000
sleep(1000)
usr.Money+=10000
return


But when i try this none of this works please help me!
You did tell it there to wait three and a half minutes before doing anything, five minutes before doing the next thing and one and a half minutes before finishing. sleep works in tenths of a second, are you waiting long enough to be sure nothing is happening?
In response to Loduwijk
Don't use usr in procs. usr basically refers to the usr of a verb and therefore is useless in procs. Replace it with src or since src is default, just delete all mentions of "usr."
In response to Wizkidd0123
Wizkidd0123 wrote:
Don't use usr in procs. usr basically refers to the usr of a verb and therefore is useless in procs. Replace it with src or since src is default, just delete all mentions of "usr."

Don't go so far as to say that it is never useful. It would be better to point the person in the direction of a lengthy explanation of the usr variable. Or just tell the person to use the forum search to learn more.