I will be mapping more stuff (Hopefully this is the right section and I am new to this) This was my first mapped and I only added some houses Ammu. There are also fences infront of LSPD!
Code:
/*
convertFFS generated filterscript.
--------------------------------------------------------------------------------
This filterscript base was created from the new.pwn file that is included with
the SA-MP Windows server package and therefore is © 2005-2010 SA-MP.com team.
Please note that to create a public SA-MP server you must agree with the SA-MP
Services Agreement which can be found at http://sa-mp.com/service_agreement.txt
*/
#include <a_samp>
public OnFilterScriptInit()
{
print("\n--------------------------------------");
print(" Filterscript generated by convertFFS");
print("--------------------------------------\n");
//Converted objects and vehicles below!
CreateObject(984,1529.52160645,-1609.53002930,13.01949215,0.00000000,0.00000000,0.00000000); //object(fenceshit2) (1)
CreateObject(984,1529.54919434,-1622.34082031,13.01949215,0.00000000,0.00000000,0.00000000); //object(fenceshit2) (2)
CreateObject(984,1529.52038574,-1635.10021973,13.01949215,0.00000000,0.00000000,0.00000000); //object(fenceshit2) (3)
CreateObject(984,1529.52490234,-1647.95935059,13.01949215,0.00000000,0.00000000,0.00000000); //object(fenceshit2) (4)
CreateObject(984,1529.49877930,-1660.78356934,13.01949215,0.00000000,0.00000000,0.00000000); //object(fenceshit2) (5)
CreateObject(984,1529.52026367,-1673.59753418,13.01949215,0.00000000,0.00000000,0.00000000); //object(fenceshit2) (6)
CreateObject(984,1529.60498047,-1686.28356934,13.01949215,0.00000000,0.00000000,0.00000000); //object(fenceshit2) (7)
CreateObject(984,1529.58679199,-1699.14294434,13.01949215,0.00000000,0.00000000,0.00000000); //object(fenceshit2) (8)
CreateObject(984,1529.62854004,-1712.25549316,13.01949215,0.00000000,0.00000000,0.00000000); //object(fenceshit2) (9)
CreateObject(10631,1986.08312988,-2059.93212891,17.01709747,0.00000000,0.00000000,90.00000000); //object(ammunation_sfs) (1)
CreateObject(3639,2511.21875000,-1783.56469727,16.95080757,0.00000000,0.00000000,86.00000000); //object(glenphouse01_lax) (1)
/*
Objects converted: 11
Vehicles converted: 0
Vehicle models found: 0
----------------------
In the time this conversion took to finish a hummingbird could have flapped it's wings 3.71 times!
*/
return 1;
}
public OnFilterScriptExit()
{
return 1;
}
public OnPlayerConnect(playerid)
{
return 1;
}
public OnPlayerDisconnect(playerid, reason)
{
return 1;
}
public OnPlayerSpawn(playerid)
{
return 1;
}
public OnPlayerDeath(playerid, killerid, reason)
{
return 1;
}
public OnVehicleSpawn(vehicleid)
{
return 1;
}
public OnVehicleDeath(vehicleid, killerid)
{
return 1;
}
public OnPlayerText(playerid, text[])
{
return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/mycommand", cmdtext, true, 10) == 0)
{
// Do something here
return 1;
}
return 0;
}
public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
return 1;
}
public OnPlayerExitVehicle(playerid, vehicleid)
{
return 1;
}
public OnPlayerStateChange(playerid, newstate, oldstate)
{
return 1;
}
public OnPlayerEnterCheckpoint(playerid)
{
return 1;
}
public OnPlayerLeaveCheckpoint(playerid)
{
return 1;
}
public OnPlayerEnterRaceCheckpoint(playerid)
{
return 1;
}
public OnPlayerLeaveRaceCheckpoint(playerid)
{
return 1;
}
public OnRconCommand(cmd[])
{
return 1;
}
public OnPlayerRequestSpawn(playerid)
{
return 1;
}
public OnObjectMoved(objectid)
{
return 1;
}
public OnPlayerObjectMoved(playerid, objectid)
{
return 1;
}
public OnPlayerPickUpPickup(playerid, pickupid)
{
return 1;
}
public OnVehicleMod(playerid, vehicleid, componentid)
{
return 1;
}
public OnVehiclePaintjob(playerid, vehicleid, paintjobid)
{
return 1;
}
public OnVehicleRespray(playerid, vehicleid, color1, color2)
{
return 1;
}
public OnPlayerSelectedMenuRow(playerid, row)
{
return 1;
}
public OnPlayerExitedMenu(playerid)
{
return 1;
}
public OnPlayerInteriorChange(playerid, newinteriorid, oldinteriorid)
{
return 1;
}
public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
return 1;
}
public OnRconLoginAttempt(ip[], password[], success)
{
return 1;
}
public OnPlayerUpdate(playerid)
{
return 1;
}
public OnPlayerStreamIn(playerid, forplayerid)
{
return 1;
}
public OnPlayerStreamOut(playerid, forplayerid)
{
return 1;
}
public OnVehicleStreamIn(vehicleid, forplayerid)
{
return 1;
}
public OnVehicleStreamOut(vehicleid, forplayerid)
{
return 1;
}
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
return 1;
}
public OnPlayerClickPlayer(playerid, clickedplayerid, source)
{
return 1;
}
Take the time to remove some of the new.pwn elements. Like the test command...
You may also be better off with just posting the objects in the code tags w/o putting it into a filterscript.