SA-MP Forums Archive
Help - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Help (/showthread.php?tid=497531)



Help - Ananisiki - 27.02.2014

~~~~~~~~


Re: Help - Konstantinos - 27.02.2014

pawn Код:
if(fineTextOnScreen[pID] == 1)
{
    TextDrawDestroy(fine0[pID], TextDrawDestroy(fine1[pID]);
    // more..
}



Re: Help - Ananisiki - 27.02.2014

~~~~~~


Re: Help - BroZeus - 27.02.2014

yes u can just do
Код:
if(fineTextOnScreen[pID] == 1) 
{
    TextDrawDestroy(fine0[pID], TextDrawDestroy(fine1[pID]);
    // more..
}
if(warnTextOnScreen[pID] == 1)
    {
        TextDrawDestroy(warn[pID]);
        KillTimer(warnTimer);
    }



Re: Help - Ananisiki - 27.02.2014

~~~~~~