11.04.2012, 14:16
the symbol "==" is used to compare two values (not strings, they can be integers, booleans, hexadecimal values) as they have an exact match.
if you are looking for the "equal" function, I've made it for you
if you are looking for the "equal" function, I've made it for you
pawn Код:
stock equal(a,b)
return (a==b)?1:0;