In reply to: Well... -- William 16:53:59 08-03-2004
| Well... Posted by: Xorlak 12:03:15 08-04-2004  | 
        
 It looks like you're trying to do:
#enehp[0]!=10
#enehp[1]!=10
etc...
With the variable 'slot!'.  i.e.:
#slot!=0
#enehp[slot!]!=10
What I'm using is a map, which is the same thing with literal variables.  Basically, I also could have done:
#slot$="MaxHP"
#endHero[slot$]!=Hero[slot$]!
To get:
#endHero[MaxHp]!=Hero[MaxHp]!
In yours, you want 'slot!' to be a variable.  But in mine, 'MaxHP', etc. are values.  See the difference?