07.05.2011, 19:24
Quote:
Can someone make me a filterscript that:
Loads when the server is turned on please? This is what needs to be in the filterscript: AddStaticVehicle(522,2796.0242,-1571.8405,10.4870,271.8347,1,1); // - this vehicle will be a PCJ-600(461) and colour ID 1 (white) AddStaticVehicle(522,2796.1746,-1575.8713,10.4694,270.9300,1,1); // - this vehicle will be an FCR-900(521) and colour id 1 (white) AddStaticVehicle(461,2796.1514,-1584.9053,10.5263,272.2281,1,1); // - this vehicle will be an FCR-900(521) and colour id 1 (white) AddStaticVehicle(461,2796.1655,-1588.9225,10.5099,268.0545,1,1); // - this vehicle will be a PCJ-600(461) and colour ID 1 (white) AddStaticVehicle(562,2795.9612,-1580.4926,10.5866,269.7886,0,0); // - this vehicle will be a bullet(541) and colour id 0 1 (black with white stripe) Then also, an interior with a marker (to enter the interior) at this point: AddPlayerClass(165,2795.5496,-1619.3833,10.9219,259.2963,0,0,0,0,0,0); // and the interior should be: SF gym 6 774.213989,-48.924297,1000.585937 |
if its a filterscript
then under OnFilterScriptInIt()
pawn Код:
AddStaticVehicle(522,2796.0242,-1571.8405,10.4870,271.8347,1,1);
AddStaticVehicle(522,2796.1746,-1575.8713,10.4694,270.9300,1,1);
AddStaticVehicle(461,2796.1514,-1584.9053,10.5263,272.2281,1,1);
AddStaticVehicle(461,2796.1655,-1588.9225,10.5099,268.0545,1,1);
AddStaticVehicle(562,2795.9612,-1580.4926,10.5866,269.7886,0,0);
then under OnGameModeInIt()
pawn Код:
AddStaticVehicle(522,2796.0242,-1571.8405,10.4870,271.8347,1,1);
AddStaticVehicle(522,2796.1746,-1575.8713,10.4694,270.9300,1,1);
AddStaticVehicle(461,2796.1514,-1584.9053,10.5263,272.2281,1,1);
AddStaticVehicle(461,2796.1655,-1588.9225,10.5099,268.0545,1,1);
AddStaticVehicle(562,2795.9612,-1580.4926,10.5866,269.7886,0,0);
pawn Код:
AddStaticPickup(modelid,type,2795.5496,-1619.3833,10.9219,259.2963,0);
Find out more about addstaticpickup https://sampwiki.blast.hk/wiki/AddStaticPickup
now....
add this to your enter command
lets say you got
pawn Код:
if(strcmp(cmdtext,"/enter",true) == 0)
{
if(IsPlayerInRangeOfPoint(playerid,5,x,y,z))
{
SetPlayerPos(playerid,x,y,z);
}
}
pawn Код:
if(strcmp(cmdtext,"/enter",true) == 0)
{
if(IsPlayerInRangeOfPoint(playerid,5,x,y,z))
{
SetPlayerPos(playerid,x,y,z);
}
else if (IsPlayerInRangeOfPoint(playerid,3,2795.5496,-1619.3833,10.9219,259.2963))
{
SetPlayerPos(playerid,774.213989,-48.924297,1000.585937);
SetPlayerInterior(playerid,6);
}
}
just put the player back to the old position
pawn Код:
if(strcmp(cmdtext,"/exit",true) == 0)
{
if(IsPlayerInRangeOfPoint(playerid,5,x,y,z))
{
SetPlayerPos(playerid,x,y,z);
}
else if (IsPlayerInRangeOfPoint(playerid,3,774.213989,-48.924297,1000.585937))
{
SetPlayerPos(playerid,2795.5496,-1619.3833,10.9219,259.2963);
SetPlayerInterior(playerid,0);
}
}