GetEXP(mob/m)
if(m.HP<=0)
usr.EXP += m.mobEXP
usr<<"You gained [m.mobEXP] Experience"
GetLevel()
if(usr.EXP >= usr.MaxEXP)
usr.Level++
usr<<"You Leveled up to Level [usr.Level]."</b>
Problem description: I was trying to add a Experience System to my game.I am pretty new to Dm so i was not sure how to code it. I have no errors on this code but no text msg pops up and i dont get the Exp. If you have questions to the vars and where i placed them tell me. Please help because I tried everything. Thanks :3
(Obviously an example).