Help /goto command in Minigame
#1

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:
Код:
new inminigame[MAX_PLAYERS];
Then the goto command here:
Код:
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");
}
i Use LuxAdmin system...
So i need a help
PLZ hElp
Thanks!
Reply
#2

What info need?
Reply
#3

What exactly went wrong? Give us some more information.
Reply
#4

this its do not work if i am in minigame
i need this to dont work if i am in any minigame
i need it to work if i am out of minigame
.....
Reply
#5

Well did you set that inminigame[playerid]=1 is to 1 when entered the minigame ?
Reply
#6

Do you run admin script from GM or FS
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)