mob/proc/levelup(LU)
Level = Level + LU
if(usr.Wins==5)
usr.LU(1)
Problem description: I cannot get my proc to work, it says line 5, (usr.LU(1)) is an undefined proc. Can someone help me?
ID:264671
![]() Feb 26 2010, 12:16 pm
|
|
Code:
mob/proc/levelup(LU) Problem description: I cannot get my proc to work, it says line 5, (usr.LU(1)) is an undefined proc. Can someone help me? |
i know this isnt what your asking for how ever as a demo
proc Leveling_up() thats how you would call the proc and as Garthor said notice how i used Src insted of usr becuase usr may not always be pointing to that person |
Additionally, you are using usr in procs. This is wrong. You should be using src instead.