Quote:
Originally Posted by Jimmmy
Comeзo da Callback
OnPlayerCommandTex
PHP код:
public OnPlayerCommandText(playerid, cmdtext[])
{
new tmp[128];
new cmd[128], idx;
cmd = strtok(cmdtext, idx);
//Comandos..
Caso nгo tenha coloque no final do GameMode .
PHP код:
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;
}
Caso queira aprender ..
https://sampwiki.blast.hk/wiki/Strtok
|
como faзo para poder salvar as pessoas que eu setar em um arquivo .txt ? ou em uma pasta ?