26.09.2012, 21:30
Quote:
_: - clears the tag from variable ( not sure ) - example Float:X becomes normal X.
a>b - logical operator. This returns true(1) if variable a is higher then variable b. ( false -0 if not) >> >>> - bit operators ( https://sampforum.blast.hk/showthread.php?tid=177523) for |= and ~ I never saw them barackets are used to tell program to first do operations inside then use the result- same as you do in maths. (1+1)*3 is not same as 1+1*3 |
Quote:
_: defines a custom tag without giving any error, example:
pawn Код:
pawn Код:
|
about the barackets - yes,but the barackets were used like this:
pawn Код:
stock ThisIsMyStock()
{
SendClientMessage(playerid,0xC0C0C0,"This is a message");
(_: array[3] |= ((array1 & array2) << array3));
}