OK, so, call me a retard. I don't care.
In my current code, enemies are given factions through a string array
ie
Entity_faction$(x)="yardies"
say I have 10 factions , and I want an entity to know when he's not near another entity of his faction...
how do I say "doesn't equal"
as in
if Entity_faction$(x)=Entity_faction$(y)
will find if entities x and y are in the same faction. what do I use instead of a "=" to find if they are not in the same faction?
I don't want to use and "else", because...well, because I tried it and it doesn't work!