17.11.2012, 07:46
Quote:
|
and how do if player press "T" or F6 and type 1 then opens another texdraw??
And i got those errors. Код:
C:\Users\Mustafa\Desktop\SAmp SRV\ForYou\gamemodes\SFCRRPG.pwn(10035) : error 017: undefined symbol "newkeys" C:\Users\Mustafa\Desktop\SAmp SRV\ForYou\gamemodes\SFCRRPG.pwn(10043) : warning 225: unreachable code Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 1 Error. |
CTRL+ F and Enter 'OnPlayerKeyStateChange' and look for this callback.
Where ever you find it! Inside it. Write
pawn Код:
if (newkeys & KEY_FIRE) // You can also add more checks that TD is shown to the player or not!
{
TextDrawDestroy(textdrawname);//Change TextDraw Name here!
}
return 1;


