How to?
#1

Well I keep trying to make a small mission that triggers when I type /mission as admin. I don't get it why but it's not working.
This command should be for a specific team. So when admin types /missionstart it should give all players from Team 1 message "Deffend the truck!" and from the other side they should get the checkpoint and message.


Код HTML:
    if (strcmp("/startmission", cmdtext, true) == 0)
    {
        if(!IsPlayerAdmin(playerid))
	    {
			SendClientMessage(playerid, COLOR_RED, "<!>You are not an admin!");
			return 1;
		}
	    if(GetPlayerTeam(playerid) == 1)
		{
			SendClientMessage(playerid, COLOR_LIGHTBLUE, "<!>Mission: Defend the truck!");
		    return 1;
		}
		if(GetPlayerTeam(playerid) == 2)
		{
            CreateCheckpoint(-1426.42, 478.65, 5.61, 5, 10, 0);
		    SendClientMessage(playerid, COLOR_LIGHTBLUE, "<!>Mission: Get the truck and deliver it at the base!");
		    return 1;
		}
	}
The code looks retarded here, but it's normal in the GM so don't worry, it's not lost of indetification...
Reply
#2

pawn Код:
if (strcmp("/startmission", cmdtext, true) == 0)
    {
        if(!IsPlayerAdmin(playerid))
        {
            SendClientMessage(playerid, COLOR_RED, "<!>You are not an admin!");
            return 1;
        }
        for(new i = 0; i < MAX_PLAYERS; i++)
        {
            if(IsPlayerConnected(i))
            {
                if(GetPlayerTeam(i) == 1)
                {
                    SendClientMessage(i, COLOR_LIGHTBLUE, "<!>Mission: Defend the truck!");
                    return 1;
                }
                if(GetPlayerTeam(i) == 2)
                {
                    SetPlayerCheckpoint(i,-1426.42, 478.65, 5.61,5);
                    SendClientMessage(i, COLOR_LIGHTBLUE, "<!>Mission: Get the truck and deliver it at the base!");
                    return 1;
                }
            }
        }
    }
Rep
Reply
#3

Oh thanks, I will test that ^_^ I gave you the rep ^_^
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)