Need help on two things.
#4

pawn Код:
dcmd_housepun(playerid,params[])
{
    if(!IsPlayerAdmin(playerid))return SendClientMessage(playerid,COLOR_RED,"ERROR: You are not a high enough level to use this command");
    if(!strlen(params)) return SendClientMessage(playerid, COLOR_PINK, "USAGE: /housepun [playerid]");
    new player1 = strval(params), string[128], pName[24];
    if(IsPlayerConnected(player1) && player1 != INVALID_PLAYER_ID)
    {
        GetPlayerName(player1, pName, 24);

        format(string, sizeof(string), "You have punished \"%s\" ", pName);
        SendClientMessage(playerid,COLOR_PINK,string);
        if(player1 != playerid)
        {
            format(string,sizeof(string),"Administrator \"%s\" has punished you", pName);
            SendClientMessage(player1,COLOR_PINK,string);
        }
        SetPlayerPos(player1, 694.7562,-2377.2427,-0.0825);
    }
    if(!IsPlayerConnected(player1) || player1 == INVALID_PLAYER_ID ) return SendClientMessage(playerid,COLOR_RED,"ERROR: Player is not connected");
    return 1;
}
for the admin level just add the definition for levels from ladmin (which I don't know)..
e.g. PlayerInfo[player1][Level] = 0;

edit: hm someone before me lol
Reply


Messages In This Thread
Need help on two things. - by captainjohn - 24.04.2011, 12:24
Re: Need help on two things. - by dannyk0ed - 24.04.2011, 12:31
Re: Need help on two things. - by Sinner - 24.04.2011, 12:36
Re: Need help on two things. - by Sascha - 24.04.2011, 12:36
Re: Need help on two things. - by captainjohn - 24.04.2011, 12:52
Re: Need help on two things. - by captainjohn - 24.04.2011, 14:23
Re: Need help on two things. - by grand.Theft.Otto - 24.04.2011, 16:02
Re: Need help on two things. - by captainjohn - 24.04.2011, 16:10
Re: Need help on two things. - by grand.Theft.Otto - 24.04.2011, 16:17
Re: Need help on two things. - by captainjohn - 24.04.2011, 16:20

Forum Jump:


Users browsing this thread: 1 Guest(s)