SA-MP Forums Archive
Abrir - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Español/Spanish (https://sampforum.blast.hk/forumdisplay.php?fid=29)
+---- Thread: Abrir (/showthread.php?tid=263761)



Abrir - vampirmd - 23.06.2011

Como puedo hacer cuando estoy cerca del coche me abre el capo de coche. No cundo estoi dentro
Lo he intentado hacer pero solo cuando estas dentro pero yo quero fuera
Код:
public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
    if(newkeys == KEY_SUBMISSION)
    {
	new Float:X, Float:Y, Float:Z;
	new engine,lights,alarm,doors,bonnet,boot,objective;
	for(new vehicles; vehicles < MAX_VEHICLES; vehicles ++ )
	{
	GetVehiclePos(vehicles, X, Y, Z );
	if(IsPlayerInRangeOfPoint(playerid, 7.0, X, Y, Z ) )
	{
		  	GetVehicleParamsEx(vehicles,engine,lights,alarm,doors,bonnet,boot,objective);
		  	SetVehicleParamsEx(vehicles,engine,lights,alarm,doors,bonnet,VEHICLE_PARAMS_ON,objective);
		  	SetPVarInt(playerid, "Boot", 1);
  	        
         }
	}
      }
	return 1;
}



Re: Abrir - MrDeath537 - 23.06.2011

KEY_SUBMISSION es el nъmero 2 por defecto (el que aprietas para hacer misiones de policнa, paramйdico etc), y no funciona estando a pie. Por ese motivo solo funciona cuando estбs en el vehнculo.


Respuesta: Abrir - vampirmd - 23.06.2011

Vale gracia