In response to Crispy
can someone make me a level up demo or some coding or somthing cuz i did everything the forum told me and it still wont level up
In response to VegeanSX
You would find plenty of demos on this subject if you bothered to look for yourself.

Secondly, you haven't posted your most recent code or stated exactly what your problem is. Without those, you can't expect to get any help.
In response to Crispy
ok heres my current coding
mob
proc
levelup()
if(src.xp >= src.xpneeded)
src << "You level up!"
src.level += 1
src.xp = 0
it doesnt make me level up and here's the part from my stat panel
stat("Experience:","[num2text(round(usr.xp),0)]/[num2text(ro und(usr.xpneeded),100.0)]")
In response to VegeanSX
VegeanSX wrote:
ok heres my current coding
mob
proc
levelup()
if(src.xp >= src.xpneeded)
src << "You level up!"
src.level += 1
src.xp = 0
it doesnt make me level up and here's the part from my stat panel
stat("Experience:","[num2text(round(usr.xp),0)]/[num2text(ro und(usr.xpneeded),100.0)]")

I think you want to change what you have to:


stat("Experience:","[src.xp]/[src.xpneeded]")

Because that is alot shorter :-)
In response to VegeanSX
Are you calling levelup()?
In response to Crispy
when should i be calling level up? should i put it under the punching bag were u can gain levels?
Page: 1 2