ID:147368
 
if(moneycheck)

Doesn't that mean "if the moneycheck proc is true"?
Because it comes up as an undefined variable.
Zlegend2 wrote:
if(moneycheck)


Nope, if you wrote if(moneycheck()) it would run the proc and see if what it returned was true.
You wrote that in such a way that it thinks your trying to check if a variable is true, not a proc. if(moneycheck) is the same as if(var) not if(proc). Understand?