Anaristos Sorcerer
Joined: 17 Jul 2007 Posts: 821 Location: California
|
Posted: Mon Aug 30, 2010 5:02 am
[323aB] Another unmatched brace problem [Ignore - Mistake] |
This following line of code gets an unmatched braces error:
Code: |
#IF (%null(@chardb.enemy)) {@chardb.enemyhp = %null}
|
This should work unless %null is no longer a variable.
;;
EDIT: the line should have been
Code: |
#IF (%null(@chardb.enemy)) {chardb.enemyhp = %null}
|
|
|