Quote:
Originally Posted by blackbeltben
aaah, i got it. but HOW would you do a everything "but" if there is no =
You can't put != because it's set up like
(player.ani.name.starts("servername_sword_"))
Last question, what is the importance of adding two equal signs when one works?
|
You can put the exclamation mark in front of it all, like this:
PHP Code:
if (!player.ani.name.starts("servername_sword_"))
Also, you need to use two equal signs because a single one
doesn't work. Using only a single one you are assigning a value to a variable, or at least trying to do so. If you want to compare stuff, use double equal signs.