Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // This is a comment
- // uncomment the line below if you want to write a filterscript
- //#define FILTERSCRIPT
- #include <a_samp>
- #define COLOR_BRIGHTGREEN1 0x00FF0096 // grove turf
- #define COLOR_PURPLE1 0x80008096 // kilo tray & rollin heightz turf
- #define COLOR_YELLOW1 0xFFFF0096 // vagos turf
- #define COLOR_DARKPURPLE1 0x80008096 // idlewood turf
- #define COLOR_LIGHTGREEN1 0x00FF8096 // seville turf
- #define COLOR_LIGHTBLUE1 0x00FFFF96 // varrios turf
- #define COLOR_WHITE1 0xFFFFFF96 // mafia turf
- #define COLOR_DARKGREEN1 0x00800096 // temple turf
- #if defined FILTERSCRIPT
- public OnFilterScriptInit()
- {
- print("\n--------------------------------------");
- print(" Blank Filterscript by your name here");
- print("--------------------------------------\n");
- return 1;
- }
- public OnFilterScriptExit()
- {
- return 1;
- }
- #else
- main()
- {
- print("\n----------------------------------");
- print(" Blank Gamemode by your name here");
- print("----------------------------------\n");
- }
- #endif
- new grovestzone;
- new ballaszone;
- new lsvagoszone;
- new varrioszone;
- new mafiazone;
- new templezone;
- new idlewoodzone;
- new sevillezone;
- public OnGameModeInit()
- {
- // Don't use these lines if it's a filterscript
- SetGameModeText("Blank Script");
- grovestzone = GangZoneCreate(2662.660156,-1611.299804,2224.572265,-1837.556640);
- ballaszone = GangZoneCreate(2268.272705,-1479.102539,1815.999267,-1048.558837);
- lsvagoszone = GangZoneCreate(2289.378662,-1011.239379,2922.021972,-1587.612182);
- varrioszone = GangZoneCreate(1650.141357,-1866.233886,1980.616577,-2172.450927);
- mafiazone = GangZoneCreate(1016.098510,-1856.401489,630.193603,-1389.662109);
- templezone = GangZoneCreate(802.143005,-1155.721801,1395.130126,-851.716491);
- idlewoodzone = GangZoneCreate(2217.472656,-1579.085083,1920.980224,-1848.916259);
- sevillezone = GangZoneCreate(2862.953613,-1878.322387,2234.872558,-2140.493164);
- return 1;
- }
- public OnPlayerSpawn(playerid)
- {
- GangZoneShowForPlayer(playerid,grovestzone,COLOR_BRIGHTGREEN1);
- GangZoneShowForPlayer(playerid,ballaszone,COLOR_PURPLE1);
- GangZoneShowForPlayer(playerid,lsvagoszone,COLOR_YELLOW1);
- GangZoneShowForPlayer(playerid,mafiazone,COLOR_WHITE1);
- GangZoneShowForPlayer(playerid,varrioszone,COLOR_LIGHTBLUE1);
- GangZoneShowForPlayer(playerid,templezone,COLOR_DARKGREEN1);
- GangZoneShowForPlayer(playerid,idlewoodzone,COLOR_PURPLE1);
- GangZoneShowForPlayer(playerid,sevillezone,COLOR_LIGHTGREEN1);
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment