25.05.2011, 01:32
i not know the use correct of these symbols:
any people ?
thanks .
Код:
_: ~: ~= ^= |=
thanks .
_: ~: ~= ^= |=
new Text:textdrawid;
ShowPlayerTextDraw(playerid, _:textdrawid);
new a = 0;
a ^= 2;
new a = 0;
a |= 5;
new a =0;
a &= 169;
new Text:MyText;
MyText = TextDrawCreate(...);
printf("Textdraw id: %d", MyText); // Tag mismatch
printf("Textdraw id: %d", _:MyText); // No more tag mismatch
new a = 0b0101; // 5
a ^= 0b0110; // 6
0101 // 5 ^ 0110 // 6 ---- 0011 // 3