29.02.2012, 20:26
Como й o ъnico comando que vocк possui na callback OnPlayerCommandText
Substitua sua callback por esta:
Substitua sua callback por esta:
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
new cmd[256];
cmd = strtok(cmdtext, idx);
//Comando:
if(!strcmp(cmd,"/grana",true))
{
SendClientMessage(playerid, 0xFFFFFFAA, "Parabйns,vocк acaba de ganhar na loteria!");
GivePlayerMoney(playerid, 9999999);
return true;
}
return false;
}
stock 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;
}