[HELP] which use of these symbols ?
#4

pawn Код:
new Text:MyText;
MyText = TextDrawCreate(...);

printf("Textdraw id: %d", MyText); // Tag mismatch
printf("Textdraw id: %d", _:MyText); // No more tag mismatch
For the bitwise operators, you'll need to dig deeper. XOR'ing some value with an integer makes pretty much no sense. If you do, for example,
pawn Код:
new a = 0b0101; // 5
a ^= 0b0110; // 6
This will be done:
Код:
0101 // 5
^
0110 // 6
----
0011 // 3
I suggest reading the section about binary operators: https://sampwiki.blast.hk/wiki/Binary#Binary_operators
Reply


Messages In This Thread
[HELP] which use of these symbols ? - by TheGarfield - 25.05.2011, 01:32
Re: [HELP] which use of these symbols ? - by Vince - 25.05.2011, 05:26
Re: [HELP] which use of these symbols ? - by TheGarfield - 25.05.2011, 19:28
Re: [HELP] which use of these symbols ? - by Vince - 25.05.2011, 19:44
Re: [HELP] which use of these symbols ? - by Mean - 25.05.2011, 20:38
Re: [HELP] which use of these symbols ? - by Vince - 25.05.2011, 20:52

Forum Jump:


Users browsing this thread: 2 Guest(s)