ID:149192
 
I have a Guild system in my game, it works, but the Experience won't be recognized. All three verbs are buggy.

mob/verb/Crazy()
if(usr.Experience <= 100)
world << "[usr] is CRAZY!"
usr.Guild = "Crazy Warriors"
else
usr << "You are not strong enough."

mob/verb/Secondary_Elite()
if(usr.Experience <= 1000)
world << "[usr] is now a member of the Secondary Elite!"
usr.Guild = "Secondary Elite"
else
usr << "You are a fool! You need 1000 Experience to join the Secondary Elite! You only have [Experience] Exp!"

mob/verb/Elite()
if(usr.Experience <= 1000000)
world << "[usr] is now a member of the ELITE!"
usr.Guild = "Elite"
else
usr << "You are a fool! 1000000 Exp is needed for Elite status! [Experience] is your Experience!"
Change the <= to >=

Somebody didn't learn thier math :P
In response to Sariat
Thanks