Posts: 121
Threads: 21
Joined: Oct 2009
Reputation:
0
Actually i don't know, because i never had used strcmp.
Better use dcmd or zcmd. It's faster and better.
Posts: 80
Threads: 21
Joined: Jun 2009
Reputation:
0
Thanks.. but that didn't answer my question at all. If somebody knows, please reply as I'm interested in knowing it.
Posts: 80
Threads: 21
Joined: Jun 2009
Reputation:
0
Thanks.. but if I want to make a teleport command, which one would you use? !strcmp or strcmp?
Posts: 382
Threads: 1
Joined: Nov 2007
Reputation:
0
They both do the same, just in different ways.
Posts: 1,781
Threads: 13
Joined: Sep 2009
Reputation:
0
simple, the ! char represents the "not".
(1 < 2), true. (1 is smaller)
(1 == 2), not true. (1 equals 2 ?)
!(1 == 2), true. (1 is NOT equal 2)
(1 > 2), not true. (1 greater 2 ?)
!(1 > 2), true. (1 NOT greater 2)
Posts: 523
Threads: 34
Joined: Aug 2008
Reputation:
0
If theres and "!" infront of anything its the oppersit than without?
you get it?