| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #include <a_samp>
- #undef MAX_PLAYERS
- #define MAX_PLAYERS 700
- public OnFilterScriptInit() {
- print("RemoveBuilding Filterscript Initiated");
- }
- public OnPlayerConnect(playerid)
- {
- //SF VIP Lounge Exterior
- RemoveBuildingForPlayer(playerid, 10662, -2453.6563, 514.5000, 24.4375, 0.25);
- RemoveBuildingForPlayer(playerid, 966, -2436.8516, 495.4531, 28.9531, 0.25);
- RemoveBuildingForPlayer(playerid, 967, -2438.7266, 495.0078, 29.1016, 0.25);
- RemoveBuildingForPlayer(playerid, 968, -2436.8125, 495.4688, 29.6797, 0.25);
- RemoveBuildingForPlayer(playerid, 10611, -2453.6563, 514.5000, 24.4375, 0.25);
- //SFPD Pole
- RemoveBuildingForPlayer(playerid, 1226, -1707.1094, 681.4453, 27.7422, 0.25);
- //SFPD Dumpsters
- RemoveBuildingForPlayer(playerid, 10248, -1680.9922, 683.2344, 19.0469, 0.25);
- RemoveBuildingForPlayer(playerid, 6253, 1305.4688, -1619.7422, 13.3984, 0.25); //Hedge in LS
- RemoveBuildingForPlayer(playerid, 6046, 1305.4688, -1619.7422, 13.3984, 0.25); //Hedge in LS
- //Farva's Garage
- RemoveBuildingForPlayer(playerid, 3260, -1431.0234, -968.3203, 200.8125, 0.25);
- RemoveBuildingForPlayer(playerid, 3260, -1437.0391, -968.3203, 200.8125, 0.25);
- RemoveBuildingForPlayer(playerid, 3260, -1437.9766, -967.2344, 200.8125, 0.25);
- RemoveBuildingForPlayer(playerid, 3260, -1435.0391, -968.3203, 200.8125, 0.25);
- RemoveBuildingForPlayer(playerid, 3260, -1433.0313, -968.3203, 200.8125, 0.25);
- RemoveBuildingForPlayer(playerid, 3260, -1427.0391, -968.3203, 200.8125, 0.25);
- RemoveBuildingForPlayer(playerid, 3260, -1429.0391, -968.3203, 200.8125, 0.25);
- RemoveBuildingForPlayer(playerid, 3260, -1425.0391, -968.3203, 200.8125, 0.25);
- RemoveBuildingForPlayer(playerid, 3260, -1424.0391, -967.2969, 200.8125, 0.25);
- RemoveBuildingForPlayer(playerid, 3260, -1437.9766, -965.2344, 200.8125, 0.25);
- RemoveBuildingForPlayer(playerid, 3260, -1437.9766, -963.2344, 200.8125, 0.25);
- RemoveBuildingForPlayer(playerid, 3260, -1431.0313, -962.1016, 200.8125, 0.25);
- RemoveBuildingForPlayer(playerid, 3260, -1433.0313, -962.1016, 200.8125, 0.25);
- RemoveBuildingForPlayer(playerid, 3260, -1435.0391, -962.1016, 200.8125, 0.25);
- RemoveBuildingForPlayer(playerid, 3260, -1437.0391, -962.1016, 200.8125, 0.25);
- RemoveBuildingForPlayer(playerid, 3260, -1427.0391, -962.1016, 200.8125, 0.25);
- RemoveBuildingForPlayer(playerid, 3260, -1429.0313, -962.1016, 200.8125, 0.25);
- RemoveBuildingForPlayer(playerid, 3260, -1425.0391, -962.1016, 200.8125, 0.25);
- RemoveBuildingForPlayer(playerid, 3260, -1423.0000, -962.2500, 200.8125, 0.25);
- RemoveBuildingForPlayer(playerid, 3260, -1423.2969, -965.4609, 200.8125, 0.25);
- return 1;
- }
|