18.09.2011, 17:00
Hello all,
i have created minigames and i want to create a goto command
just for player who are out of minigame
so i have this code:
I have put this:
Then the goto command here:
i Use LuxAdmin system...
So i need a help
PLZ hElp
Thanks!
i have created minigames and i want to create a goto command
just for player who are out of minigame
so i have this code:
I have put this:
Код:
new inminigame[MAX_PLAYERS];
Код:
dcmd_goto(playerid,params[])
{
if(inminigame[playerid] == 0)
{
if(!strlen(params)) return
SendClientMessage(playerid, LIGHTBLUE2, "Use this: /goto [PlayerID]");
new player1;
new string[128];
if(!IsNumeric(params))
player1 = ReturnPlayerID(params);
else player1 = strval(params);
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);
}
else return SendClientMessage(playerid,COLOR_RED,"[ERROR]: You cant /goto players, while you are in Mini-Game. First use: /leavemg");
}
So i need a help
PLZ hElp
Thanks!

