/goto off in DM Zones
#3

pawn Код:
dcmd_goto(playerid,params[])
{
    if(IsInDM[playerid] == 1) return SendClientMessage(playerid,COLOR_RED,"You cant use this command while in the dm zone !");
    if(!strlen(params)) return
    SendClientMessage(playerid, LIGHTBLUE2, "Usage: /goto [PlayerID]") &&
    SendClientMessage(playerid, orange, "Function: Will Go to specified player");
    new player1;
    new string[128];
    if(!IsNumeric(params))
    player1 = ReturnPlayerID(params);
    else player1 = strval(params);
    if(GetPVarInt(player1,"AdutyOn") == 1) return SendClientMessage(playerid, -1, "Admin is on duty, please do not disturb");
    if(IsPlayerConnected(player1) && player1 != INVALID_PLAYER_ID && player1 != playerid)
    {
        SendCommandToAdmins(playerid,"Goto");
        new Float:x, Float:y, Float:z;  GetPlayerPos(player1,x,y,z);
        SetPlayerInterior(playerid,GetPlayerInterior(player1));
        SetPlayerVirtualWorld(playerid,GetPlayerVirtualWorld(player1));
        if(GetPlayerState(playerid) == 2)
        {
            SetVehiclePos(GetPlayerVehicleID(playerid),x+3,y,z);
            LinkVehicleToInterior(GetPlayerVehicleID(playerid),GetPlayerInterior(player1));
            SetVehicleVirtualWorld(GetPlayerVehicleID(playerid),GetPlayerVirtualWorld(player1));
        }
        else SetPlayerPos(playerid,x+2,y,z);
        format(string,sizeof(string),"|- You have Teleported to \"%s\" -|", pName(player1));
        return SendClientMessage(playerid,BlueMsg,string);
    }
    else return ErrorMessages(playerid, 4);
//  return 1;
}
Reply


Messages In This Thread
/goto off in DM Zones - by ColdIce - 27.05.2011, 10:45
Re: /goto off in DM Zones - by Wesley221 - 27.05.2011, 10:50
Re: /goto off in DM Zones - by Elka_Blazer - 27.05.2011, 10:51
Re: /goto off in DM Zones - by xalith - 27.05.2011, 10:55
Re: /goto off in DM Zones - by ColdIce - 27.05.2011, 11:00
Re: /goto off in DM Zones - by Wesley221 - 27.05.2011, 11:07
Re: /goto off in DM Zones - by ColdIce - 27.05.2011, 11:10
Re: /goto off in DM Zones - by Wesley221 - 27.05.2011, 11:12
Re: /goto off in DM Zones - by ColdIce - 27.05.2011, 11:19
Re: /goto off in DM Zones - by Wesley221 - 27.05.2011, 11:24

Forum Jump:


Users browsing this thread: 1 Guest(s)