12.06.2009, 17:22
well, i will try it, if i understood it right, but can't you just type the command?
this is how i understood from you:
this is how i understood from you:
Код:
if(strcmp(cmdtext, "/InviteDrift", true) == 0)
{
tmp = strtok(cmdtext, idx);
if (strcmp (tmp, "/Invitedirft", true) == 0)
{
new string[256], string2[256];
new otherplayer = strval(tmp);
new name[MAX_PLAYER_NAME];
new opname[MAX_PLAYER_NAME];
GetPlayerName(playerid,name,sizeof(name));
GetPlayerName(otherplayer,opname,sizeof(opname));
if(!strlen(tmp)) return SendClientMessage(playerid, WHITE, "USE: /InviteDrift [playerid]");
if(!IsPlayerConnected(otherplayer)) return SendClientMessage(playerid, WHITE, "Invalid playerID.");
format(string,sizeof(string), ".Drift - [ID:%d | %s] дежоръ мгшйфи тм йгй дщзчп", playerid, name);
format(string2,sizeof(string2), ".Drift - мгшйфи [ID:%d | %s] джоръ бдцмзд аъ дщзчп", otherplayer, opname);
SendClientMessage(otherplayer, LIGHTBLUE, string);
SendClientMessage(playerid, LIGHTBLUE, string2);
}
return 1;
}

