Code help
#8

pawn Код:
CMD:getteam(playerid, params[])
{
    new teamid;
    if(PInfo[playerid][Level] < 4) return SendClientMessage(playerid,0xFF0000AA,"ERROR: You are not allowed to use this command!");
    if(sscanf(params,"d",teamid)) return SendClientMessage(playerid, 0xFF0000FF,"USAGE: /getteam [teamid]");
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
        if(gTeam[i] == teamid)
        {
            new
                player1,
                Float:X,
                Float:Y,
                Float:Z
            ;
            GetPlayerPos(playerid, X, Y, Z);
            SetPlayerPos(i, X+3, Y, Z);
        }
    }
    new pname[24],dstring[124];
    GetPlayerName(playerid,pname,sizeof(pname));
    format(dstring, sizeof(dstring), "Administrator %s has teleported teamid %d ", pname, teamid);
    SendClientMessageToAll(blue, dstring);
    return 1;
}
Reply


Messages In This Thread
Code help - by Biess - 30.09.2012, 10:11
Re: Code help - by newbienoob - 30.09.2012, 10:18
Re: Code help - by Biess - 30.09.2012, 10:20
Re: Code help - by RedJohn - 30.09.2012, 10:24
Re: Code help - by Biess - 30.09.2012, 10:24
Re: Code help - by RedJohn - 30.09.2012, 10:26
Re: Code help - by Biess - 30.09.2012, 10:26
Re: Code help - by RedJohn - 30.09.2012, 10:32
Re: Code help - by Biess - 30.09.2012, 10:35
Re: Code help - by RedJohn - 30.09.2012, 10:39

Forum Jump:


Users browsing this thread: 3 Guest(s)