Everything is okay but...
#10

pawn Код:
CMD:freeze(playerid, params[])
{
    if(PlayerInfo[playerid][Admin] < 1) return SendClientMessage(playerid, 0x0259EAAA, "You are not admin");
    new id;
    if(sscanf(params, "u", id)) return SendClientMessage(playerid, 0x0259EAAA, "USAGE: /freeze [PlayerId/PartOfName]");
    if(!IsPlayerConnected(id)) return SendClientMessage(playerid, 0x0259EAAA, "Player is not connected");
    new string[64], name[MAX_PLAYER_NAME], PlayerName[MAX_PLAYER_NAME];
    GetPlayerName(playerid, name, sizeof(name));
    GetPlayerName(id, PlayerName, sizeof(PlayerName));
    format(string, sizeof(string), "Admin Action: Admin %s(%d) Has Frozen You", name, playerid);
    SendClientMessage(id, 0xFF0000FF, string);
    format(string, sizeof(string), "You Have Frozen %s(%d)", PlayerName, id);
    SendClientMessage(playerid, 0xFF0000FF, string);
    TogglePlayerControllable(id, false);
    return 1;
}
why did u guys srsly go through that again? this code above is correct.

do you have onplayercommandtext in your script? show me your onplayercommandtext if u have it and show me your onplayercommandrecieved and onplayercommandperformed
Reply


Messages In This Thread
Everything is okay but... - by Tachibana - 21.06.2011, 16:53
Re: Everything is okay but... - by Wesley221 - 21.06.2011, 17:04
Re: Everything is okay but... - by Tachibana - 21.06.2011, 17:06
Re: Everything is okay but... - by Donya - 21.06.2011, 17:12
Re: Everything is okay but... - by Tachibana - 21.06.2011, 17:15
Re: Everything is okay but... - by Laronic - 21.06.2011, 17:16
Re: Everything is okay but... - by Tachibana - 21.06.2011, 17:17
Re: Everything is okay but... - by Laronic - 21.06.2011, 17:20
Re: Everything is okay but... - by Tachibana - 21.06.2011, 17:21
Re: Everything is okay but... - by Donya - 21.06.2011, 17:35

Forum Jump:


Users browsing this thread: 2 Guest(s)