/sendto command help?
#3

Quote:
Originally Posted by Stanford
Посмотреть сообщение
This maybe:

pawn Код:
CMD:sendto(playerid, params[])
{
    new playerb;
    if(PlayerInfo[playerid][pAdmin] < 2) return SendClientMessage(playerid, COLOR_GREY, "You are not authorized to use this command.");
    if(sscanf(params,"us[32]", playerb, params))
    {
        SendClientMessage(playerid, COLOR_WHITE, "[Usage]: /sendto [playerid] [place]");
        SendClientMessage(playerid, COLOR_GREY, "PLACES: ls | sf | lv");
        return 1;
    }
    if(!IsPlayerLoggedIn(playerb)) return SendClientMessage(playerid, COLOR_GREY, "Invalid player id.");
    if(!strcmp(params, "ls", true))
    {
        SetPlayerInterior(playerb, 0);
        SetPlayerVirtualWorld(playerb, 0);
        SetPlayerPos(playerb,1529.6,-1691.2,13.3);
        SendClientMessage(playerb, COLOR_WHITE, " You have been teleported to Los Santos.");
        return 1;
    }
    else if(!strcmp(params, "sf", true))
    {
        SetPlayerInterior(playerb, 0);
        SetPlayerVirtualWorld(playerb, 0);
        SetPlayerPos(playerb,-2015.261108, 154.379516, 27.687500);
        SendClientMessage(playerb, COLOR_WHITE, " You have been teleported to San Fierro.");
        return 1;
    }
    else if(!strcmp(params, "lv", true))
    {
        SetPlayerInterior(playerb, 0);
        SetPlayerVirtualWorld(playerb, 0);
        SetPlayerPos(playerid,1699.2,1435.1, 10.7);
        SendClientMessage(playerb, COLOR_WHITE, " You have been teleported to Las Venturas.");
        return 1;
    }
    return 1;
}
gave ya LV as a gift.
Copy >> Paste really?
Reply


Messages In This Thread
/sendto command help? - by Necip - 01.06.2013, 08:58
Re: /sendto command help? - by Stanford - 01.06.2013, 09:04
Re: /sendto command help? - by RenSoprano - 01.06.2013, 09:08
Re: /sendto command help? - by DeMoX - 01.06.2013, 09:12
Re: /sendto command help? - by Necip - 01.06.2013, 09:12
Re: /sendto command help? - by DeMoX - 01.06.2013, 09:14
Re: /sendto command help? - by RenSoprano - 01.06.2013, 09:15
Re: /sendto command help? - by Stanford - 01.06.2013, 09:17
Re: /sendto command help? - by Necip - 01.06.2013, 09:34

Forum Jump:


Users browsing this thread: 1 Guest(s)