/kick ?
#1

What i do wrong? Is my first command like that.
PHP код:
CMD:kick(playeridparams[])
{
    new 
idstring[256],player[MAX_PLAYER_NAME],user[MAX_PLAYER_NAME];
    
GetPlayerName(idplayersizeof(player));
    
GetPlayerName(playeridusersizeof(user));
    if(
sscanf(params,"u"id)) return SendClientMessage(playerid,-1,"INFO:Foloseste /kick [NAME/ID]");
    if(!
IsPlayerConnected(id))  return SendClientMessage(playerid,-1,"Player is not connected.");
    
format(string,sizeof(string), "INFO: %s a primit kick de la Adminul %s ",player,user);
    
SendClientMessageToAll(-1,string);
    return 
1;

Reply
#2

You're using GetPlayerName before sscanf assigns the id variable, that's why you're getting player id 0 everytime you run the command.

PHP код:
new
    
id,
    
player[MAX_PLAYER_NAME]
;
if (
sscanf(params"u"id)) return SendClientMessage(playerid, -1"INFO:Foloseste /kick [NAME/ID]");
GetPlayerName(idplayersizeof player); 
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)