How to...?
#2

Hi there Rubennnnn,

If I understand you correctly, you basically want a checkpoint for all players on the oposite team to appear when someone gets onto a tractor.

Simple way to do this:

Код:
public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
	new veh = GetVehicleModel(vehicleid);
	if(veh == 531)
	{
		for(new i=0; i<MAX_PLAYERS; i++)
  	{
    	if(IsPlayerConnected(i))
    	{
    	 		if(TEAM_VARIABLE[i] != TEAM_VARIABLE[playerid])
       	{
        	 new Float:X, Float:Y, Float:Z;
        	 GetPlayerPos(playerid,X,Y,Z);
        	 SetPlayerCheckpoint(i,X,Y,Z);
				}
			}
		}
	}
	return 1;
}
Thats just something I quickly put together, so forgive me if there are any errors, give it a try see what happens.

Cheers,

TJ
Reply


Messages In This Thread
How to...? - by Rubennnnn - 08.02.2010, 16:53
Re: How to...? - by TTJJ - 08.02.2010, 17:04
Re: How to...? - by Rubennnnn - 08.02.2010, 17:09
Re: How to...? - by TTJJ - 08.02.2010, 17:14
Re: How to...? - by Rubennnnn - 09.02.2010, 13:50
Re: How to...? - by Rubennnnn - 10.02.2010, 14:11
Re: How to...? - by XeoN_13 - 10.02.2010, 14:23
Re: How to...? - by TTJJ - 10.02.2010, 14:33
Re: How to...? - by Rubennnnn - 10.02.2010, 14:38

Forum Jump:


Users browsing this thread: 3 Guest(s)