kklkkk eu tinha esquecido que mudei o nome...
mais tem essa warning aki que eu ainda nгo entendi
pawn Код:
C:\Users\Famнlia Vilen\Downloads\SAMP\samp03dsvr_R2_win32 (1)\gamemodes\GangWarBr.pwn(1682) : warning: 203: symbol is never used: "string"
Linha:
pawn Код:
strtok(const string[], & index)
Ao redor:
pawn Код:
strtok(const string[], & index)
{
new length = strlen(CELULAS);
while ((index < length) && (CELULAS[index] <= ' '))
{
index++;
}
new offset = index;
new result[20];
while ((index < length) && (CELULAS[index] > ' ') && ((index - offset) < (sizeof(result) - 1)))
{
result[index - offset] = CELULAS[index];
index++;
}
result[index - offset] = EOS;
return result;
}