Quote:
Originally Posted by Majataka
So i dont need to care about the "Strtok" warning? P:
|
Yes you do. You need to care about EVERY warning. To get rid of the "never used" warning then just delete the function or use this:
pawn Код:
#pragma unused MyFunctionName
so it's like this in your case:
Quote:
Originally Posted by DarkPower
Quote:
I:\Programfiler\Rockstar Games\GTA San Andreas\Server\gamemodes\Majatacker.pwn(1374) : warning 203: symbol is never used: "strtok"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
|
just put this after includes
new strtok;
|
Learn some basics.