10543 sor\\ teleports49 = TextDrawCreate(153.000000,379.000000,\"Nincs ilyen parancs %s\");
10576sor\\ strtok(const string[], &index)
10662 sorom nincs is ???[/pawn]
stock strtok(...)
#include <strtok>
warning 219: local variable \"string\" shadows a variable at a preceding level[/quote]
A módban kétszer szerepel a \'string\' változó, csak más tömb értékkel. Nevezd át a globális változót, vagy töröld, ha nincs
használaton.
warning 203: symbol is never used: \"strtok\"[/quote]
Nem tudja értelmezni az \'strtok\' részt. Helyezd el a módodba.
strtok(const string[], &index)
{
new length = strlen(string);
while ((index < length) && (string[index] <= \' \'))
{
index++;
}
new offset = index;
new result[20];
while ((index < length) && (string[index] > \' \') && ((index - offset) < (sizeof(result) - 1)))
{
result[index - offset] = string[index];
index++;
}
result[index - offset] = EOS;
return result;
}