Application

Započeo [OG]undeR., April 16, 2012, 11:07:03 PRE PODNE

prethodna tema - sledeća tema

0 članova i 1 gost pregledaju ovu temu.

Radim jedan program za pocetnike u pawn jeziku, i zelim da im olaksam ne samo njima, vec i ostalima neke stvari. U programu ce biti neke korisne skripte, zcmd i ostala 2(napisao sam ali sam zab imena :D)pa mi trebaju neke korisne skripte...



CMD:energy(playerid, params[])
    {
        if(PlayerInfo[playerid][pAdmin] >= 5)
        {
            SetPlayerHealth(playerid, 100); //if he's allowed, restore his health
            SendClientMessage(playerid, COLOR_GREY, "Health has been restored to 100."); // and send him the success-message
        }
        else
        {
            SendClientMessage(playerid, COLOR_GREY, "You are not authorized to use that command!"); // if not, send him only the following message
        }
        return 1;
    }


CMD:kick(playerid, params[])
    {
        if(PlayerInfo[playerid][pAdmin] >= 3) {
            new PID; //define the playerid we wanna kick
            new reason[64]; //the reason, put into a string
            new str[128]; //a new message string
            new Playername[MAX_PLAYER_NAME], Adminname[MAX_PLAYER_NAME]; //defines the function with the playername we wanna get
            GetPlayerName(playerid, Adminname, sizeof(Adminname)); //defines the function with the adminname we wanna get
            GetPlayerName(PID, Playername, sizeof(Playername));
            if(sscanf(params, "us[64]", PID,reason)) return SendClientMessage(playerid, COLOR_GREY, "USAGE: /kick [playerid] [reason]"); //tell sscanf if the parameters/the syntax is written wrong to return a message (PID and the reason used here)

            if(!IsPlayerConnected(PID)) // if the ID is wrong or not connected, return a message! (PID used here)
                return SendClientMessage(playerid, COLOR_GREY, "Player is not connected!");

            format(str, sizeof(str), "'%s' has been kicked by administrator '%s'. Reason: %s ", Playername, Adminname, reason); //format the string we've defined to send the message, playername and adminname are used to receive the information about the names
        SendClientMessageToAll(COLOR_RED, str); //send that message to all
        Kick(PID); //kick the playerid we've defined

        }
        else //if he has not got the permissions
        {
            SendClientMessage(playerid, COLOR_GREY, "You have to be level 3 to use that command!"); //return this message
        }
        return 1;
    }


CMD:ban(playerid, params[])
    {
        if(PlayerInfo[playerid][pAdmin] >= 3) {
            new PID; //define the playerid we wanna ban
            new reason[64]; //the reason, put into a string
            new str[128]; //a new message string
            new Playername[MAX_PLAYER_NAME], Adminname[MAX_PLAYER_NAME]; //defines the function with the playername we wanna get
            GetPlayerName(playerid, Adminname, sizeof(Adminname)); //defines the function with the adminname we wanna get
            GetPlayerName(PID, Playername, sizeof(Playername));
            if(sscanf(params, "us[64]", PID,reason)) return SendClientMessage(playerid, COLOR_GREY, "USAGE: /kick [playerid] [reason]"); //tell sscanf if the parameters/the syntax is written wrong to return a message (PID and the reason used here)

            if(!IsPlayerConnected(PID)) // if the ID is wrong or not connected, return a message! (PID used here)
                return SendClientMessage(playerid, COLOR_GREY, "Player is not connected!");

            format(str, sizeof(str), "'%s' has been banned by administrator '%s'. Reason: %s ", Playername, Adminname, reason); //format the string we've defined to send the message, playername and adminname are used to receive the information about the names
        SendClientMessageToAll(COLOR_RED, str); //send that message to all
        Ban(PID); //Ban the playerid we've defined

        }
        else //if he has not got the permissions
        {
            SendClientMessage(playerid, COLOR_GREY, "You have to be level 5 to use that command!"); //return this message
        }
        return 1;
    }


COMMAND:clearchat(playerid,params[])
{
   if( PlayerInfo[ playerid ][ pAdmin ] < 1 ) return SendClientMessage( playerid, COLOR_RED, "ERROR: You must be level 1 to use this command!" );
{
     for( new i = 0; i <= 100; i ++ ) SendClientMessageToAll( COLOR_WHITE, "" );
}   return 1;
}
Respect: $--L84S--$, ναηιâ,,"â,,"α , BloodMaster , LuxZillo, Don_Sergio, ExtremePower, Gotti747, Gagi_

CMD:freeze(playerid, params[])
{
new id;
if(PlayerInfo[playerid][pAdmin] < 1) return SCM(playerid,COLOR_RED,"Nisi ovlasten za koristenje ove komande.");
if(sscanf(params,"u", id)) return SCM(playerid, COLOR_WHITE,"KORISTI: /freeze [ID/Dio imena]");
if(!IsPlayerConnected(id)) return SCM(playerid, COLOR_RED,"Taj igrac nije online.");
else
{
    TogglePlayerControllable(id, 0);
}
return 1;
}
CMD:unfreeze(playerid, params[])
{
new id;
if(PlayerInfo[playerid][pAdmin] < 1) return SCM(playerid,COLOR_RED,"Nisi ovlasten za koristenje ove komande.");
if(sscanf(params,"u", id)) return SCM(playerid, COLOR_WHITE,"KORISTI: /unfreeze [ID/Dio imena]");
if(!IsPlayerConnected(id)) return SCM(playerid, COLOR_RED,"Taj igrac nije online.");
else
{
    TogglePlayerControllable(id, 1);
}
return 1;
}


Kad povadim jos iz moda stavit cu ti.



[quote author=[OG]undeR. link=topic=42144.msg317681#msg317681 date=1334685406]
a "CMD:" je..?
[/quote]
zcmd

kao sto si napiso u prvom postu
Respect: $--L84S--$, ναηιâ,,"â,,"α , BloodMaster , LuxZillo, Don_Sergio, ExtremePower, Gotti747, Gagi_

Pa upoznat sam sa tim, ali dok je jos bio strcp valjda u modi :D  sad ove mesam zcmd i te fore :$