ID:175908
 
ok in my coding its being really stupid and giving me and invalid expression on a proc def. heres the codeing
mob/proc
dragon()
if(usr.eballs >= 7)
usr.verbs += /mob/proc/summone
if(usr.nballs >= 7)


summone()
usr.verbs -= /mob/proc/summone
usr.eballs = 0
have a look on this line: if(usr.nballs >= 7)

the reason this is happening is because if your nballs var is over seven...it does.whatever is under neath it, WHITCH IS NOTHING, put Your coding there...btw in procs use src
In response to Wanabe
crap i look at every aspect of the problem and i over looked that thx
In response to VegeanSX
You're also using usr in a proc, which is bad.