[HELP] My Tester Game mode (RealityC)
#1

Код HTML:
C:\Users\Desktop\gamemodes\RealityC.pwn(5172) : error 021: symbol already defined: "strtok"
C:\Users\Desktop\gamemodes\RealityC.pwn(5187) : error 047: array sizes do not match, or destination array is too small
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


2 Errors.
Reply
#2

Show us the codes,
Reply
#3

in your code you have define strtok twise
Reply
#4

Код HTML:
// Include
#include <a_samp>
#include <zcmd>
#include <sscanf>
#include <streamer>
#include <SII>
#include <dini>
#include <dudb>
#include <dutils>

// Pragmas
#pragma unused ret_memcpy
#pragma tabsize 0

// COLORS
#define COLOR_GREY 0xAFAFAFAA
#define COLOR_GREEN 0x33AA33AA
#define COLOR_YELLOW 0xFFFF00AA
#define COLOR_WHITE 0xFFFFFFAA
#define COLOR_LIGHTBLUE 0x33CCFFAA
#define COLOR_ORANGE 0xFF9900AA
#define COLOR_PURPLE 0xC2A2DAAA
#define COLOR_BLUE 0x0000FFFF

// DIALOG COLORS
#define COL_WHITE "{FFFFFF}"
#define COL_RED "{F81414}"
#define COL_GREEN "{00FF22}"
#define COL_LIGHTBLUE "{00CED1}"
#define COLOR_RED 0xFF0000FF

#define DO_RANGE 300

#define SERVER_USER_FILE "RealityC/users/%s.ini"
#define Save 1

#define DIALOG_LICENSE 3600
#define Save 1

// 24/7 DIALOG
#define DIALOG_247 1
#define DIALOG_2472 2

// Faction Duty
#define DIALOG_COPFBI

#define HACK_AWARD 10000 // The amount a player gets if he succesfully hacks a building
#define MAX_ARREST_FINE 20001 // The amount an officer can fine a player when the player gets arrested [ Maximum ] - 1
#define MINIMUM_ARREST_FINE 1999 // The amount an officer can fine a player when the player gets arrested [ Minimum ] + 1
#define MAX_DEFEND_AMOUNT 10001 // The amount a lawyer can remove a wanted star for [ Maximum ] - 1
#define MIN_DEFEND_AMOUNT 1999 // The amount a lawyer can remove a wanted star for [ Maximum ] + 1
#define MAX_ARREST_JAIL_TIME 21 // The amount an officer can put a player in jail for in minutes [ Maximum ] - 1
#define MIN_ARREST_JAIL_TIME 1 // The amount an officer can put a player in jail for in minutes [ Minimum ] + 1
#define MAX_CONTRACT_AMOUNT 1000001 // The amount a player can contract another player for [ Maximum ] - 1
#define MIN_CONTRACT_AMOUNT 9999 // The amount a player can contract another player for [ Minimum ] + 1

// HOUSES
#define MAX_HOUSES 100

// MYSQL Information
#define SQL_HOST " "
#define SQL_USER "2781_futurerp"
#define SQL_PASS " "
#define SQL_DB "2781_futurerp"

// COP/FBI Stuff
new WantedLevel[MAX_PLAYERS];
new IsCuffed[MAX_PLAYERS];
new IsTazed[MAX_PLAYERS];
new taz;
new time;


forward OnPlayerPayDay(playerid);
forward check(playerid);
forward stopphone(playerid);
forward startphone(playerid);
forward OnPlayerHunger(playerid);
forward OnPlayer30Mins(playerid);

enum gPInfo
{
	LOGGED,
 	REGGED,
 	PASS,
 	LEVEL,
	ADMINLEVEL,
	WIRED,
	JAILED,
	JOB,
	FACTION,
	CAR,
	PHONE,
	PHONEBOOK,
	MASK,
	CONDOM,
	GUNSKILL,
	JOBSKILL,
	CARLIC,
	FLYLIC,
	GUNLIC,
	MONEY,
	DEATH,
	COPRANK,
	FBIRANK,
	FIRERANK
};
new PInfo[MAX_PLAYERS][gPInfo];
new PLogged[MAX_PLAYERS];


enum gCop
{
	COPDUTY,
 	EQUIPMENT,
  	UNDERCOVER,
};
new Cop[MAX_PLAYERS][gCop];

enum gFBI
{
	FBIDUTY,
	EQUIPMENT,
	UNDERCOVER
};
new FBI[MAX_PLAYERS][gFBI];


enum gSuspect
{
	TICKET,
	CUFF,
	DETAIN,
	FRISK,
	LEOFRISK,
	SUSPECT,
	TAZE
};
new Suspect[MAX_PLAYERS][gSuspect];

enum HouseInfo
{
    Owner[24],
    Owned,
    Price,
    Float:XPos,
    Float:YPos,
    Float:ZPos,
    VirtualWorld,
    Text3D:HouseLabel
}
new HInfo[MAX_HOUSES][HouseInfo];

// Enterance Pickups
new Mechanic;
new Sheriff;
new EMS;
new DMV;
new city;
//new BankEnter;
// Interior Pickups
new SheriffDuty;
new FBIDuty;
new MechJob;
new DMVLicense;
//new Bank;

//==Private Vehs
new FCSD;
new FCSD1;
new FCSD2;
new FCSD3;
new FCSD4;
new FCSD5;
new FBI1;
new FBI2;
new FBI3;
new FBI4;
new FBI5;

// Houses
new HouseCount;//To check how many houses have we created.
new HouseEnter[MAX_HOUSES];//This will be where we will store the house entrance checkpoint
new HouseExit[MAX_HOUSES];//This will be where we will store the house exit checkpoint.
new PlayerInHouseID[MAX_PLAYERS];//To check what house id is the player in.

// Engine
new Engine[MAX_VEHICLES];

// Forwards
forward EngineTimer(playerid);
forward ProxDetector(Float:radi, playerid, string[],col1);
forward SendAdminMessage(color, string[]);
forward SendCopsMessage(color, string[]);
forward SendJobMessage(color, string[]);
forward SendAdminMessage(color, string[]);
forward SetPlayerJailed(playerid);
forward OnPlayerAcceptTicket(playerid);
forward OnPlayerAcceptTicket2(playerid);
forward SendRconAdminMessage(playerid, color, string[]);
forward tazertimer(playerid);
forward OnPlayerJailed(playerid);
forward NameValidator(playerid);
forward SendMSG();
forward OnPlayerExplosion(playerid);

new RandomMSG[][] =
{
    "SAN NEWS UPDATE: The weather is looking nice for us tonight, have a good night Fort Carson",
    "SAN NEWS UPDATE: Love Fort Carson? Email us at government@fortcarson.com (www.realityc.smfnew.com/)",
    "OOC: Found a hacker? Then /report to an administrator",
    "OOC: Want to create a job/faction or join one? Register at www.realityc.smfnew.com/ and APPLY!"
};

public NameValidator(playerid)
{
if(IsPlayerConnected(playerid))
{
		new pname[MAX_PLAYER_NAME],underline=0;
		GetPlayerName(playerid, pname, sizeof(pname));
		if(strfind(pname,"[",true) != (-1)) return 0;
		else if(strfind(pname,"]",true) != (-1)) return 0;
		else if(strfind(pname,"$",true) != (-1)) return 0;
		else if(strfind(pname,"(",true) != (-1)) return 0;
		else if(strfind(pname,")",true) != (-1)) return 0;
		else if(strfind(pname,"=",true) != (-1)) return 0;
		else if(strfind(pname,"@",true) != (-1)) return 0;
		else if(strfind(pname,"1",true) != (-1)) return 0;
		else if(strfind(pname,"2",true) != (-1)) return 0;
		else if(strfind(pname,"3",true) != (-1)) return 0;
		else if(strfind(pname,"4",true) != (-1)) return 0;
		else if(strfind(pname,"5",true) != (-1)) return 0;
		else if(strfind(pname,"6",true) != (-1)) return 0;
		else if(strfind(pname,"7",true) != (-1)) return 0;
		else if(strfind(pname,"8",true) != (-1)) return 0;
		else if(strfind(pname,"9",true) != (-1)) return 0;
		new maxname = strlen(pname);
		for(new i=0; i<maxname; i++)
  			{
     			if(pname[i] == '_') underline ++;
			}
				if(underline != 1) return 0;
   				pname[0] = toupper(pname[0]);
  				for(new x=1; x<maxname; x++)
    		{
     			if(pname[x] == '_') pname[x+1] = toupper(pname[x+1]);
      			else if(pname[x] != '_' && pname[x-1] != '_') pname[x] = tolower(pname[x]);
        	}
         		SetPlayerName(playerid, "New_Name");
          		SetPlayerName(playerid, pname);
           		return 1;
       		}
		return 0;
}

main()
{
	print("\n----------------------------------");
	print(" Blank Gamemode by your name here");
	print("----------------------------------\n");
}

public OnGameModeInit()
{
	DisableInteriorEnterExits();
 	SetGameModeText("RealityC RP");
  	UsePlayerPedAnims();
   	AddPlayerClass(0, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);
   	SetTimer("OnPlayerPayDay",3600000,true);
   	SetTimer("OnPlayerHunger",300000,true);
   	SetTimer("OnPlayerExplosion",60000,false);
   	SetTimer("OnPlayer30Mins",1800000,true);
   	
   	Create3DTextLabel("To vandelise this property do /vandel",0x008080FF,-218.8223,974.4408,19.4921,20.0,0);
   	Create3DTextLabel("To vandelise this property do /vandel",0x008080FF,-225.6331,1120.5687,19.7422,20.0,0);
   	//===================================================Houses================================================================
   	
    //=========================================================================================================================
	// FBI Exterior
	FBI1 = AddStaticVehicleEx(487,-271.16400146,1542.26501465,75.62437439,98.00000000,-1,-1,900); //Maverick
	FBI2 = AddStaticVehicleEx(490,-324.62380981,1515.84838867,75.67950439,0.00000000,-1,1,900); //FBI Rancher
	FBI3 = AddStaticVehicleEx(490,-330.87139893,1515.99987793,75.67950439,0.00000000,-1,-1,900); //FBI Rancher
	FBI4 = AddStaticVehicleEx(490,-336.64300537,1515.99963379,75.67950439,0.00000000,-1,-1,900); //FBI Rancher
	FBI5 = AddStaticVehicleEx(528,-296.26745605,1540.14404297,75.74749756,332.00000000,-1,-1,900); //FBI Truck
	CreateDynamicObject(987,-321.02114868,1507.31787109,73.98529053,0.00000000,0.00000000,2.00000000); //object(elecfence_bar)(1)
	CreateDynamicObject(987,-333.01943970,1506.96228027,73.98529053,0.00000000,0.00000000,1.99951172); //object(elecfence_bar)(3)
	CreateDynamicObject(987,-345.02020264,1506.50537109,73.98529053,0.00000000,0.00000000,1.99951172); //object(elecfence_bar)(4)
	CreateDynamicObject(987,-344.45803833,1518.33984375,73.98529053,0.00000000,0.00000000,267.99951172); //object(elecfence_bar)(5)
	CreateDynamicObject(987,-343.90206909,1530.08740234,73.98529053,0.00000000,0.00000000,267.99499512); //object(elecfence_bar)(6)
	CreateDynamicObject(987,-343.41696167,1542.09936523,73.98529053,0.00000000,0.00000000,267.99499512); //object(elecfence_bar)(7)
	CreateDynamicObject(987,-287.30459595,1516.21606445,73.98529053,0.00000000,0.00000000,225.99951172); //object(elecfence_bar)(8)
	CreateDynamicObject(987,-278.86941528,1524.40942383,73.98529053,0.00000000,0.00000000,223.99427795); //object(elecfence_bar)(9)
	CreateDynamicObject(987,-270.43484497,1532.60278320,73.98529053,0.00000000,0.00000000,223.98925781); //object(elecfence_bar)(10)
	CreateDynamicObject(987,-261.82855225,1540.97778320,73.98529053,0.00000000,0.00000000,223.98925781); //object(elecfence_bar)(11)
	CreateDynamicObject(987,-260.11090088,1542.79394531,73.98529053,0.00000000,0.00000000,223.98925781); //object(elecfence_bar)(12)
	CreateDynamicObject(987,-260.11035156,1542.79394531,73.98529053,0.00000000,0.00000000,133.98928833); //object(elecfence_bar)(13)
	CreateDynamicObject(987,-268.48095703,1551.40698242,73.98529053,0.00000000,0.00000000,133.98925781); //object(elecfence_bar)(14)
	CreateDynamicObject(987,-276.67919922,1560.20080566,73.98529053,0.00000000,0.00000000,133.98925781); //object(elecfence_bar)(15)
	CreateDynamicObject(987,-284.88711548,1569.34814453,73.98529053,0.00000000,0.00000000,133.98925781); //object(elecfence_bar)(16)
	CreateDynamicObject(987,-292.90390015,1577.97033691,73.98529053,0.00000000,0.00000000,225.98925781); //object(elecfence_bar)(17)
	CreateDynamicObject(11454,-299.41827393,1562.97888184,74.35937500,0.00000000,0.00000000,224.00000000); //object(des_nwmedcen)(1)
	CreateDynamicObject(10831,-329.15570068,1522.09899902,78.98614502,0.00000000,0.00000000,92.00000000); //object(drydock3_sfse)(1)
	CreateDynamicObject(987,-315.95605469,1551.94421387,73.98529053,0.00000000,0.00000000,219.98927307); //object(elecfence_bar)(18)
	CreateDynamicObject(7096,-311.39648438,1536.00390625,79.91964722,0.00000000,0.00000000,272.00000000); //object(vrockstairs)(1)
	CreateDynamicObject(1953,-328.10934448,1523.85498047,83.55979919,0.00000000,0.00000000,0.00000000); //object(turn_plater_r)(1)
	CreateDynamicObject(3928,-271.95349121,1542.41052246,74.35937500,0.00000000,0.00000000,44.00000000); //object(helipad)(1)
	CreateDynamicObject(3749,-302.54455566,1509.48962402,80.22114563,0.00000000,0.00000000,0.00000000); //object(clubgate01_lax)(1)

	// Hospital Interior
	CreateDynamicObject(18030,-2636.16000000,660.00000000,52.60000000,0.00000000,0.00000000,0.00000000); // hospital
	CreateDynamicObject(3851,-2643.20000000,649.60000000,52.24000000,0.00000000,0.00000000,0.00000000); // hospital glass wall 1
	CreateDynamicObject(3851,-2649.16000000,655.55000000,52.24000000,0.00000000,0.00000000,90.00000000); // hospital glass wall 2
	CreateDynamicObject(16500,-2653.02000000,655.55000000,52.23000000,90.00000000,0.00000000,270.00000000); // hospital wall dinning room 1
	CreateDynamicObject(16500,-2658.52000000,655.55000000,52.23000000,90.00000000,0.00000000,270.00000000); // hospital wall dinning room 2
	CreateDynamicObject(3851,-2659.31000000,655.55000000,54.74000000,0.00000000,0.00000000,90.00000000); // hospital dinning room door window
	CreateDynamicObject(1523,-2656.55000000,655.51600000,50.23000000,0.00000000,0.00000000,0.00000000); // hospital dinning room door
	CreateDynamicObject(1808,-2652.30000000,655.86000000,50.23000000,0.00000000,0.00000000,180.00000000); // hospital water cooler
	CreateDynamicObject(1649,-2619.61000000,655.52000000,52.00000000,0.00000000,0.00000000,270.00000000); // hospital window
	CreateDynamicObject(1500,-2641.98000000,646.12000000,50.22600000,0.00000000,0.00000000,0.00000000); // hospital main door
	CreateDynamicObject(2949,-2621.93000000,657.50000000,50.33000000,0.00000000,0.00000000,90.00000000); // hospital locked door
	CreateDynamicObject(1523,-2621.98000000,653.51000000,50.44200000,0.00000000,0.00000000,0.00000000); // hospital toilet door
	CreateDynamicObject(2528,-2623.02000000,653.00000000,50.45200000,0.00000000,0.00000000,90.00000000); // hospital toilet
	CreateDynamicObject(2517,-2622.02400000,651.06000000,50.44600000,0.00000000,0.00000000,90.00000000); // hospital shower
	CreateDynamicObject(2523,-2620.12600000,651.67000000,50.44800000,0.00000000,0.00000000,270.00000000); // hospital sink
	CreateDynamicObject(16500,-2659.04000000,664.89000000,52.23000000,0.00000000,0.00000000,90.00000000); // hospital wall 1
	CreateDynamicObject(16500,-2652.53000000,664.89000000,52.23000000,0.00000000,0.00000000,90.00000000); // hospital wall 2
	CreateDynamicObject(16500,-2646.03000000,664.89000000,52.23000000,0.00000000,0.00000000,90.00000000); // hospital wall 3
	CreateDynamicObject(16500,-2636.39000000,664.89000000,52.23000000,0.00000000,0.00000000,90.00000000); // hospital wall 4
	CreateDynamicObject(16500,-2629.90000000,664.89000000,52.23000000,0.00000000,0.00000000,90.00000000); // hospital wall 5
	CreateDynamicObject(16500,-2623.40000000,664.89000000,52.23000000,0.00000000,0.00000000,90.00000000); // hospital wall 6
	CreateDynamicObject(16500,-2637.42000000,655.55000000,52.23000000,90.00000000,0.00000000,270.00000000); // hospital surgery wall 1
	CreateDynamicObject(16500,-2633.42000000,655.55000000,52.23000000,90.00000000,0.00000000,270.00000000); // hospital surgery wall 2
	CreateDynamicObject(16500,-2631.48000000,653.20000000,50.24600000,90.00000000,0.00000000,180.00000000); // hospital surgery wall 3
	CreateDynamicObject(16500,-2631.48000000,647.68800000,52.48000000,90.00000000,0.00000000,180.00000000); // hospital surgery wall 4
	CreateDynamicObject(16500,-2631.48000000,652.19000000,56.23800000,0.00000000,0.00000000,180.00000000); // hospital surgery wall 5
	CreateDynamicObject(16500,-2639.23200000,652.70000000,52.23000000,0.00000000,0.00000000,0.00000000); // hospital surgery wall 6
	CreateDynamicObject(16500,-2639.23200000,652.70000000,56.23000000,0.00000000,0.00000000,0.00000000); // hospital surgery wall 7
	CreateDynamicObject(16500,-2639.23200000,647.70000000,52.23000000,0.00000000,0.00000000,0.00000000); // hospital surgery wall 8
	CreateDynamicObject(16500,-2639.23200000,647.70000000,56.23000000,0.00000000,0.00000000,0.00000000); // hospital surgery wall 9
	CreateDynamicObject(3851,-2631.48000000,649.74000000,54.74000000,0.00000000,0.00000000,0.00000000); // hospital surgery window
	CreateDynamicObject(16500,-2650.92000000,667.74200000,52.23000000,0.00000000,0.00000000,0.00000000); // hospital wall 1a
	CreateDynamicObject(16500,-2650.92000000,672.74200000,52.23000000,0.00000000,0.00000000,0.00000000); // hospital wall 1b
	CreateDynamicObject(16500,-2643.17600000,667.74200000,52.23000000,0.00000000,0.00000000,180.00000000); // hospital wall 2a
	CreateDynamicObject(16500,-2643.17600000,672.74200000,52.23000000,0.00000000,0.00000000,180.00000000); // hospital wall 2b
	CreateDynamicObject(16500,-2639.23200000,667.74200000,52.23000000,0.00000000,0.00000000,0.00000000); // hospital wall 3a
	CreateDynamicObject(16500,-2639.23200000,672.74200000,52.23000000,0.00000000,0.00000000,0.00000000); // hospital wall 3b
	CreateDynamicObject(16500,-2631.48000000,667.74200000,52.23000000,0.00000000,0.00000000,180.00000000); // hospital wall 4a
	CreateDynamicObject(16500,-2631.48000000,672.74200000,52.23000000,0.00000000,0.00000000,180.00000000); // hospital wall 4b
	CreateDynamicObject(3851,-2650.92000000,671.34000000,56.23000000,0.00000000,0.00000000,0.00000000); // hospital wall window 1
	CreateDynamicObject(3851,-2643.18000000,671.34000000,56.23000000,0.00000000,0.00000000,0.00000000); // hospital wall window 2
	CreateDynamicObject(3851,-2639.22000000,671.34000000,56.23000000,0.00000000,0.00000000,0.00000000); // hospital wall window 3
	CreateDynamicObject(3851,-2631.48000000,671.34000000,56.23000000,0.00000000,0.00000000,0.00000000); // hospital wall window 4
	CreateDynamicObject(1812,-2656.80000000,671.46000000,50.22000000,0.00000000,0.00000000,0.00000000); // hospital bed 1
	CreateDynamicObject(1812,-2652.60000000,671.46000000,50.22000000,0.00000000,0.00000000,0.00000000); // hospital bed 2
	CreateDynamicObject(1812,-2649.23000000,671.46000000,50.22000000,0.00000000,0.00000000,0.00000000); // hospital bed 3
	CreateDynamicObject(1812,-2644.60000000,671.46000000,50.22000000,0.00000000,0.00000000,0.00000000); // hospital bed 4
	CreateDynamicObject(1812,-2637.86000000,671.46000000,50.22000000,0.00000000,0.00000000,0.00000000); // hospital bed 5
	CreateDynamicObject(1812,-2632.80000000,671.46000000,50.22000000,0.00000000,0.00000000,0.00000000); // hospital bed 6
	CreateDynamicObject(1812,-2629.84000000,671.46000000,50.22000000,0.00000000,0.00000000,0.00000000); // hospital bed 7
	CreateDynamicObject(1812,-2625.62000000,671.46000000,50.22000000,0.00000000,0.00000000,0.00000000); // hospital bed 8
	CreateDynamicObject(2134,-2655.46000000,673.45000000,50.23000000,0.00000000,0.00000000,0.00000000); // hospital bed table1
	CreateDynamicObject(2134,-2653.96000000,673.45000000,50.23000000,0.00000000,0.00000000,0.00000000); // hospital bed table 2
	CreateDynamicObject(2134,-2647.90000000,673.45000000,50.23000000,0.00000000,0.00000000,0.00000000); // hospital bed table 3
	CreateDynamicObject(2134,-2645.93000000,673.45000000,50.23000000,0.00000000,0.00000000,0.00000000); // hospital bed table 4
	CreateDynamicObject(2134,-2636.50000000,673.45000000,50.23000000,0.00000000,0.00000000,0.00000000); // hospital bed table 5
	CreateDynamicObject(2134,-2634.17000000,673.45000000,50.23000000,0.00000000,0.00000000,0.00000000); // hospital bed table 6
	CreateDynamicObject(2134,-2628.50000000,673.45000000,50.23000000,0.00000000,0.00000000,0.00000000); // hospital bed table 7
	CreateDynamicObject(2134,-2626.97000000,673.45000000,50.23000000,0.00000000,0.00000000,0.00000000); // hospital bed table 8
	CreateDynamicObject(1726,-2634.34000000,656.20000000,50.22000000,0.00000000,0.00000000,180.00000000); // hospital couch 1
	CreateDynamicObject(1726,-2624.90000000,662.20000000,50.22000000,0.00000000,0.00000000,270.00000000); // hospital couch 2
	CreateDynamicObject(1726,-2657.50000000,660.10000000,50.22000000,0.00000000,0.00000000,90.00000000); // hospital couch 3
	CreateDynamicObject(1703,-2654.00000000,654.92000000,50.23000000,0.00000000,0.00000000,0.00000000); // hospital dinning couch 1
	CreateDynamicObject(1703,-2657.50000000,648.82000000,50.23000000,0.00000000,0.00000000,90.00000000); // hospital dinning couch 2
	CreateDynamicObject(1704,-2654.88000000,647.76000000,50.23000000,0.00000000,0.00000000,180.00000000); // hospital dinning chair
	CreateDynamicObject(2596,-2650.89400000,647.16000000,53.00000000,0.00000000,0.00000000,180.00000000); // hospital dinning tv
	CreateDynamicObject(1727,-2653.82000000,664.20000000,50.22000000,0.00000000,0.00000000,0.00000000); // hospital chair 1
	CreateDynamicObject(1727,-2629.59000000,664.20000000,50.22000000,0.00000000,0.00000000,0.00000000); // hospital chair 2
	CreateDynamicObject(3851,-2656.50000000,664.89500000,54.74000000,0.00000000,0.00000000,90.00000000); // hospital door windows 1
	CreateDynamicObject(3851,-2648.57000000,664.89500000,54.74000000,0.00000000,0.00000000,90.00000000); // hospital door windows 2
	CreateDynamicObject(3851,-2633.84000000,664.89500000,54.74000000,0.00000000,0.00000000,90.00000000); // hospital door windows 3
	CreateDynamicObject(3851,-2625.92000000,664.89500000,54.74000000,0.00000000,0.00000000,90.00000000); // hospital door windows 4
	CreateDynamicObject(1523,-2655.01000000,664.92400000,50.23000000,0.00000000,0.00000000,180.00000000); // hospital door 1
	CreateDynamicObject(1523,-2648.51000000,664.92400000,50.23000000,0.00000000,0.00000000,180.00000000); // hospital door 2
	CreateDynamicObject(1523,-2632.36000000,664.92400000,50.23000000,0.00000000,0.00000000,180.00000000); // hospital door 3
	CreateDynamicObject(1523,-2625.87000000,664.92400000,50.23000000,0.00000000,0.00000000,180.00000000); // hospital door 3
	CreateDynamicObject(1523,-2631.51000000,651.22600000,50.23000000,0.00000000,0.00000000,270.00000000); // hospital surgery door
	CreateDynamicObject(1997,-2635.36000000,652.50000000,50.23000000,0.00000000,0.00000000,0.00000000); // hospital surgery bed
	CreateDynamicObject(3383,-2635.35000000,647.90000000,50.23000000,0.00000000,0.00000000,0.00000000); // hospital surgery table
	CreateDynamicObject(3396,-2638.53000000,653.30000000,50.23000000,0.00000000,0.00000000,180.00000000); // hospital surgery computer
	CreateDynamicObject(1671,-2637.40000000,653.90000000,50.70000000,0.00000000,0.00000000,300.00000000); // hospital surgery chair
	CreateDynamicObject(3394,-2632.17000000,653.13000000,50.23000000,0.00000000,0.00000000,0.00000000); // hospital surgery table 2
	CreateDynamicObject(3388,-2635.36000000,654.94000000,50.23000000,0.00000000,0.00000000,90.00000000); // hospital surgery machine
	CreateDynamicObject(2146,-2629.40000000,647.80000000,50.72000000,0.00000000,0.00000000,270.00000000); // hospital roller table 1
	CreateDynamicObject(2146,-2630.80000000,653.20000000,50.72000000,0.00000000,0.00000000,0.00000000); // hospital roller table 2
	CreateDynamicObject(2146,-2625.50000000,648.20000000,50.72000000,0.00000000,0.00000000,135.00000000); // hospital roller table 3
	CreateDynamicObject(1369,-2625.00000000,652.80000000,50.84000000,0.00000000,0.00000000,270.00000000); // hospital wheel chair
	CreateDynamicObject(2266,-2635.36000000,656.14000000,52.74000000,0.00000000,0.00000000,180.00000000); // hospital picture 1
	CreateDynamicObject(2258,-2624.36200000,661.16000000,53.20000000,0.00000000,0.00000000,270.00000000); // hospital picture 2
	CreateDynamicObject(2276,-2657.55000000,661.15000000,52.80000000,0.00000000,0.00000000,90.00000000); // hospital picture 3
	CreateDynamicObject(2263,-2641.21000000,673.46000000,52.64000000,0.00000000,0.00000000,0.00000000); // hospital picture 4
	CreateDynamicObject(2011,-2645.43000000,664.20000000,50.23000000,0.00000000,0.00000000,0.00000000); // hospital palm 1
	CreateDynamicObject(2011,-2637.00000000,664.20000000,50.23000000,0.00000000,0.00000000,0.00000000); // hospital palm 2
	CreateDynamicObject(2684,-2639.24000000,664.50000000,52.00000000,0.00000000,0.00000000,0.00000000); // hospital paper
	CreateDynamicObject(2009,-2640.10000000,666.00000000,50.23000000,0.00000000,0.00000000,180.00000000); // hospital cpu
	CreateDynamicObject(1671,-2641.07000000,666.30000000,50.70000000,0.00000000,0.00000000,0.00000000); // hospital cabinet chair
	CreateDynamicObject(2608,-2642.85000000,666.32000000,51.68000000,0.00000000,0.00000000,90.00000000); // hospital docs
	CreateDynamicObject(2024,-2655.86000000,650.35000000,50.23000000,0.00000000,0.00000000,270.00000000); // hospital dinning table
	CreateDynamicObject(2826,-2655.60000000,649.80000000,50.76400000,0.00000000,0.00000000,0.00000000); // hospital magazines
	CreateDynamicObject(2251,-2657.70000000,647.40000000,51.08000000,0.00000000,0.00000000,180.00000000); // hospital dinning room flower
	CreateDynamicObject(2010,-2657.50000000,664.20000000,50.23000000,0.00000000,0.00000000,0.00000000); // hospital flower 1
	CreateDynamicObject(2010,-2625.04000000,664.20000000,50.23000000,0.00000000,0.00000000,0.00000000); // hospital flower 2
	CreateDynamicObject(2670,-2620.90000000,652.80000000,50.54000000,0.00000000,0.00000000,0.00000000); // hospital toilet trash
	CreateDynamicObject(16500,-2643.19000000,652.70000000,56.23000000,0.00000000,0.00000000,180.00000000); // hospital dinning wall 1b
	CreateDynamicObject(16500,-2643.19000000,647.70000000,56.23000000,0.00000000,0.00000000,180.00000000); // hospital dinning wall 2b
	CreateDynamicObject(1432,-2645.20000000,649.20000000,50.34000000,0.00000000,0.00000000,180.00000000); // hospital dinning table 1
	CreateDynamicObject(1432,-2649.00000000,649.20000000,50.34000000,0.00000000,0.00000000,180.00000000); // hospital dinning table 2
	CreateDynamicObject(1432,-2645.20000000,653.50000000,50.34000000,0.00000000,0.00000000,0.00000000); // hospital dinning table 3
	CreateDynamicObject(1432,-2649.00000000,653.50000000,50.34000000,0.00000000,0.00000000,0.00000000); // hospital dinning table 4
	CreateDynamicObject(2267,-2658.02000000,649.85000000,53.20000000,0.00000000,0.00000000,90.00000000); // hospital dinning picture
	CreateDynamicObject(2834,-2641.71000000,646.90000000,50.23000000,0.00000000,0.00000000,0.00000000); // hospital carpet
	CreateDynamicObject(2007,-2641.21000000,673.42000000,50.23000000,0.00000000,0.00000000,0.00000000); // hospital wardrobe
	CreateDynamicObject(2887,-2635.36000000,652.08000000,55.60000000,264.00000000,0.00000000,0.00000000); // hospital surgery lamp

	// Objects
	CreateDynamicObject(997,-230.52232361,970.91229248,18.39153290,0.00000000,0.00000000,90.00000000); //
	CreateDynamicObject(1215,-230.30549622,971.00488281,18.85333252,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(997,-230.10562134,971.00506592,18.39153290,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(1215,-226.72000122,971.00482178,18.85333252,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(997,-226.53060913,971.00488281,18.39153290,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(1215,-223.14999390,971.00488281,18.85333252,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(997,-222.95529175,971.00488281,18.39153290,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(1215,-219.57504272,971.00488281,18.85333252,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(997,-219.38021851,971.00488281,18.39153290,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(1215,-215.99977112,971.00518799,18.85333252,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(997,-215.80529785,971.00463867,18.39153290,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(1215,-212.39929199,971.00463867,18.85333252,0.00000000,3.00000000,0.00000000); //
	CreateDynamicObject(997,-212.22988892,971.00463867,18.34153366,0.00000000,5.25000000,0.00000000); //
	CreateDynamicObject(1215,-208.80142212,971.00463867,18.52833748,0.00000000,5.25000000,0.00000000); //
	CreateDynamicObject(997,-208.63238525,971.00463867,17.99153900,0.00000000,5.24597168,0.00000000); //
	CreateDynamicObject(1215,-205.20092773,971.00463867,18.17834282,0.00000000,5.24597168,0.00000000); //
	CreateDynamicObject(997,-230.49241638,980.13165283,18.54153061,0.00000000,0.00000000,90.00000000); //
	CreateDynamicObject(1215,-230.49241638,983.58270264,19.02832985,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(997,-230.49241638,983.85583496,18.54153061,0.00000000,0.00000000,90.00000000); //
	CreateDynamicObject(997,-230.49241638,987.55572510,18.54153061,0.00000000,0.00000000,90.00000000); //
	CreateDynamicObject(1215,-230.49241638,987.30688477,19.02832985,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(1215,-230.49241638,991.00683594,19.02832985,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(997,-230.49241638,991.25561523,18.54153061,0.00000000,0.00000000,90.00000000); //
	CreateDynamicObject(1215,-230.49241638,994.73059082,19.02832985,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(997,-230.49241638,995.00457764,18.54153061,0.00000000,0.00000000,90.00000000); //
	CreateDynamicObject(1215,-230.49241638,998.42956543,19.02832985,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(997,-230.49241638,998.68029785,18.54153061,0.00000000,0.00000000,90.00000000); //
	CreateDynamicObject(14468,-225.35441589,1007.96948242,20.03533745,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(14468,-227.75360107,1007.97009277,20.03533745,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(14468,-229.84123230,1006.26031494,20.03533745,0.00000000,0.00000000,88.00000000); //
	CreateDynamicObject(14468,-227.80455017,1008.00097656,20.03533745,0.00000000,0.00000000,177.99499512); //
	CreateDynamicObject(14468,-230.04869080,1004.09802246,20.03533745,0.00000000,0.00000000,267.98950195); //
	CreateDynamicObject(14468,-230.01901245,1006.42248535,20.03533745,0.00000000,0.00000000,267.98400879); //
	CreateDynamicObject(3515,-226.09362793,1004.51385498,18.87023544,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(870,-228.41375732,1003.57873535,19.39193153,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(870,-228.42825317,1006.07885742,19.39193153,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(870,-226.52847290,1006.12750244,19.39193153,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(870,-224.87890625,1006.17016602,19.39193153,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(870,-224.81375122,1003.67053223,19.39193153,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(870,-225.81311035,1003.64379883,19.39193153,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(870,-227.43698120,1003.60064697,19.39193153,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(870,-224.97001648,1004.91558838,19.39193153,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(870,-224.68380737,1006.76605225,19.39193153,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(14468,-206.35108948,991.66357422,19.80649567,0.00000000,0.00000000,270.00000000); //
	CreateDynamicObject(14468,-206.41314697,994.16247559,19.80649567,0.00000000,0.00000000,270.00000000); //
	CreateDynamicObject(14468,-206.46313477,996.16162109,19.80649567,0.00000000,0.00000000,270.00000000); //
	CreateDynamicObject(14468,-206.45477295,998.46093750,19.80649567,0.00000000,0.00000000,270.00000000); //
	CreateDynamicObject(14468,-206.44525146,1000.96093750,19.80649567,0.00000000,0.00000000,270.00000000); //
	CreateDynamicObject(14468,-206.43548584,1003.46093750,19.80649567,0.00000000,0.00000000,270.00000000); //
	CreateDynamicObject(14468,-206.42572021,1005.96093750,19.80649567,0.00000000,0.00000000,270.00000000); //
	CreateDynamicObject(14468,-207.49481201,1007.39001465,19.80649567,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(14468,-209.49414062,1007.40380859,19.80649567,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(14468,-212.24414062,1007.42279053,19.80649567,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(14468,-212.24414062,1007.42187500,19.80649567,0.00000000,0.00000000,180.00000000); //
	CreateDynamicObject(869,-212.08506775,1005.83489990,19.67544556,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(869,-212.11007690,1004.08447266,19.67544556,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(869,-209.23480225,1004.04241943,19.67544556,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(869,-209.21295166,1005.54199219,19.67544556,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(1568,-215.27540588,975.29034424,18.48299980,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(1568,-215.27381897,983.15447998,18.49771309,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(2921,-215.42218018,982.08764648,21.64323616,0.00000000,0.00000000,180.00000000); //
	CreateDynamicObject(651,-206.26707458,984.32965088,18.82550430,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(1215,-223.41857910,1002.21978760,19.69602776,0.00000000,0.00000000,0.00000000); //
	CreateDynamicObject(1215,-214.11418152,1002.23645020,19.77549744,0.00000000,0.00000000,0.00000000); //

	//RealityC Spawn
	AddStaticVehicleEx(562,-286.82714844,1217.22180176,19.47573662,176.00000000,-1,-1,900); //Elegy
	AddStaticVehicleEx(562,-282.32183838,1217.09594727,19.47573662,175.99548340,-1,-1,900); //Elegy
	AddStaticVehicleEx(562,-278.29345703,1217.26074219,19.47573662,175.99548340,-1,-1,900); //Elegy
	AddStaticVehicleEx(562,-274.13229370,1217.21398926,19.47573662,175.99548340,-1,-1,900); //Elegy
	CreateDynamicObject(10832,-144.00708008,1112.13928223,20.54976273,0.00000000,0.00000000,272.00000000); //object(gatehouse2_sfse)(1)
	CreateDynamicObject(5136,-285.20281982,1225.03027344,19.71201515,0.00000000,0.00000000,172.00000000); //object(snpedshprk1_las2)(1)
	CreateDynamicObject(3361,-294.71173096,1202.68347168,20.76605988,0.00000000,0.00000000,260.00000000); //object(cxref_woodstair)(1)

	//RealityC Mechanic
	AddStaticVehicleEx(525,-137.93904114,1129.13159180,19.73998833,88.00000000,-1,-1,1500); //Tow Truck
	AddStaticVehicleEx(525,-137.99240112,1124.38085938,19.73998833,87.99499512,-1,-1,1500); //Tow Truck
	AddStaticVehicleEx(525,-137.87319946,1133.63439941,19.73998833,87.99499512,-1,-1,1500); //Tow Truck
	CreateDynamicObject(10832,-144.00708008,1112.13928223,20.54976273,0.00000000,0.00000000,272.00000000); //object(gatehouse2_sfse)(1)

	//RealityC EMS
	AddStaticVehicleEx(407,-296.14990234,1028.03344727,19.96375084,267.99499512,-1,-1,900); //Firetruck
	AddStaticVehicleEx(407,-296.71795654,1037.04821777,19.96375084,267.99499512,-1,-1,900); //Firetruck
	AddStaticVehicleEx(416,-295.36746216,1049.73449707,19.88562202,267.99499512,-1,-1,900); //Ambulance
	AddStaticVehicleEx(416,-295.58346558,1044.98901367,19.88562202,267.99499512,-1,-1,900); //Ambulance
	AddStaticVehicleEx(407,-296.25936890,1020.27960205,19.96375084,267.99499512,-1,-1,900); //Firetruck
	AddStaticVehicleEx(490,-335.66473389,1056.70166016,20.05929565,86.00000000,1,3,900); //FBI Rancher
	CreateDynamicObject(10832,-144.00708008,1112.13928223,20.54976273,0.00000000,0.00000000,272.00000000); //object(gatehouse2_sfse)(1)
	CreateDynamicObject(5136,-285.20281982,1225.03027344,19.71201515,0.00000000,0.00000000,172.00000000); //object(snpedshprk1_las2)(1)
	CreateDynamicObject(3361,-294.71173096,1202.68347168,20.76605988,0.00000000,0.00000000,260.00000000); //object(cxref_woodstair)(1)
	CreateDynamicObject(11008,-312.43643188,1024.34301758,24.86499977,0.00000000,0.00000000,0.00000000); //object(firehouse_sfs)(1)

	//RealityC DMV
	AddStaticVehicleEx(405,-100.77054596,1154.07910156,19.74218750,90.00000000,-1,-1,900); //Sentinel
	AddStaticVehicleEx(405,-100.61211395,1146.72497559,19.74218750,90.00000000,-1,-1,900); //Sentinel
	AddStaticVehicleEx(405,-100.31561279,1143.64697266,19.74218750,90.00000000,-1,-1,900); //Sentinel
	AddStaticVehicleEx(405,-100.34126282,1140.11157227,19.74218750,90.00000000,-1,-1,900); //Sentinel
	CreateDynamicObject(16399,-84.81685638,1138.44506836,18.49997139,0.00000000,0.00000000,272.00000000); //object(desn2_peckfac2)(1)

	//RealityC - Server Cars
	AddStaticVehicleEx(562,-136.54849243,1218.84106445,19.47573662,0.00000000,-1,-1,900); //Elegy
	AddStaticVehicleEx(562,-151.35415649,1218.70776367,19.47573662,0.00000000,-1,-1,900); //Elegy
	AddStaticVehicleEx(587,-177.33471680,1225.52038574,19.55218697,272.00000000,1,1,900); //Euros
	AddStaticVehicleEx(587,-177.31787109,1222.51953125,19.55218697,271.99951172,1,1,900); //Euros
	AddStaticVehicleEx(587,-177.30126953,1219.51953125,19.55218697,271.99951172,1,1,900); //Euros
	AddStaticVehicleEx(587,-177.28332520,1216.26953125,19.55218697,271.99951172,1,1,900); //Euros
	AddStaticVehicleEx(587,-171.86779785,1232.04907227,19.55218697,185.99951172,1,1,900); //Euros
	AddStaticVehicleEx(555,-148.13687134,1175.91479492,19.53036308,0.00000000,-1,-1,900); //Windsor
	AddStaticVehicleEx(555,-143.82350159,1176.05456543,19.53036308,0.00000000,-1,-1,900); //Windsor
	AddStaticVehicleEx(555,-138.02513123,1175.98181152,19.53036308,0.00000000,-1,-1,900); //Windsor
	AddStaticVehicleEx(555,-152.41362000,1176.01977539,19.53036308,0.00000000,-1,-1,900); //Windsor
	AddStaticVehicleEx(555,-156.72630310,1175.87902832,19.53036308,0.00000000,-1,-1,900); //Windsor

	//RealityC Sheriff
	FCSD = AddStaticVehicleEx(598,-211.38708496,999.20855713,19.44312286,92.00000000,-1,-1,900); //Police Car (LVPD)
 	FCSD1 = AddStaticVehicleEx(598,-211.51458740,995.45172119,19.44312286,91.99951172,-1,-1,900); //Police Car (LVPD)
  	FCSD2 = AddStaticVehicleEx(598,-211.62527466,991.19512939,19.44312286,91.99951172,-1,-1,900); //Police Car (LVPD)
   	FCSD3 = AddStaticVehicleEx(598,-211.07685852,987.82977295,19.44312286,91.99951172,-1,-1,900); //Police Car (LVPD)
   	FCSD4 = AddStaticVehicleEx(599,-225.77322388,991.98236084,19.92541313,272.00000000,-1,-1,900); //Police Ranger
    FCSD5 = AddStaticVehicleEx(599,-226.25411987,997.01397705,19.92541313,271.99951172,-1,-1,900); //Police Ranger
    //==============================================================================================
    // Enterance Pickups
    Mechanic = CreatePickup(1318, 1, -145.1174,1116.1191,19.7500, -1);
    Sheriff = CreatePickup(1318, 1, -217.7564,979.0526,19.5034, -1);
    EMS = CreatePickup(1318, 1, -299.96633911133, 1011.7711181641, 19.59375, -1);
    DMV = CreatePickup(1318, 1, -97.4949,1149.7720,19.7422, -1);
    city = CreatePickup(1318, 1, -207.3870,1119.3350,20.4297, -1);
                            // Interior Pickups
    SheriffDuty = CreatePickup(1247, 1, 254.7737,76.4674,1003.6406, -1);
    FBIDuty = CreatePickup(1247, 1, -316.0088,1510.4666,75.5625, -1);
    MechJob = CreatePickup(1318, 1, 358.2392,168.5199,1008.3828, -1);
    DMVLicense = CreatePickup(1318, 1, -2033.0248,-116.9591,1035.1719, -1);
    // Arrest Pickup
	CreatePickup(1247, 1, 269.6075,82.7591,1001.0391, -1);
	//==============================================================================================
	SetTimer("GateCheck", 7000, true);
	return 1;
}
Reply
#5

Код HTML:
public OnGameModeExit()
{
	return 1;
}

public OnPlayerRequestClass(playerid, classid)
{
	SetPlayerPos(playerid, 1958.3783, 1343.1572, 15.3746);
	SetPlayerCameraPos(playerid, 1958.3783, 1343.1572, 15.3746);
	SetPlayerCameraLookAt(playerid, 1958.3783, 1343.1572, 15.3746);
	return 1;
}

public OnPlayerConnect(playerid)
{
	// Regular
    SetPVarInt(playerid,"LastID",-1);
    // Map Icons
    SetPlayerMapIcon(playerid, 1, -217.7419, 979.1485, 19.5035, 30, 1 ); // SHERIFF
    SetPlayerMapIcon(playerid, 2, -306.3210, 1055.0046, 19.7344, 20, 1); // EMS
 	//==============================================================================================
  	if(IsPlayerInRangeOfPoint(playerid,30,-2033.3695,-117.1875,1035.1719))
   	{
    	SendClientMessage(playerid, COLOR_GREY,"Please do /buylicense to purchase a license");
   	}
    //==============================================================================================
	PLogged[playerid] = 0;
    new name[MAX_PLAYER_NAME], file[256];
    GetPlayerName(playerid, name, sizeof(name));
    format(file, sizeof(file), SERVER_USER_FILE, name);
    if (!dini_Exists(file))
    {
        ShowPlayerDialog(playerid, 1, DIALOG_STYLE_INPUT, "RealityC Roleplay", "Welcome to RealityC Roleplay, you currently do not have an account, please register.", "Register", "Leave");
    }
    if(fexist(file))
    {
        ShowPlayerDialog(playerid, 2, DIALOG_STYLE_INPUT, "RealityC Roleplay", "Welcome to RealityC Roleplay, this account is in our database so please login", "Login", "Leave");
    }
 	return 1;
}


public OnPlayerDisconnect(playerid, reason)
{
    
    new name[MAX_PLAYER_NAME], file[256];
    GetPlayerName(playerid, name, sizeof(name));
    format(file, sizeof(file), SERVER_USER_FILE, name);
    if(PLogged[playerid] == 1)
    {
	    dini_IntSet(file,"Level",PInfo[playerid][LEVEL]);
	    dini_IntSet(file,"Admin Level",PInfo[playerid][ADMINLEVEL]);
	    dini_IntSet(file,"Wired",PInfo[playerid][WIRED]);
	    dini_IntSet(file,"Jailed",PInfo[playerid][JAILED]);
	    dini_IntSet(file,"Job",PInfo[playerid][JOB]);
	    dini_IntSet(file,"Faction",PInfo[playerid][FACTION]);
	    dini_IntSet(file,"Car",PInfo[playerid][CAR]);
	    dini_IntSet(file,"Phone",PInfo[playerid][PHONE]);
	    dini_IntSet(file,"Phonebook",PInfo[playerid][PHONEBOOK]);
	    dini_IntSet(file,"Mask",PInfo[playerid][MASK]);
	    dini_IntSet(file,"Condom",PInfo[playerid][CONDOM]);
	    dini_IntSet(file,"Gun Skill",PInfo[playerid][GUNSKILL]);
	    dini_IntSet(file,"Job Skill",PInfo[playerid][JOBSKILL]);
	    dini_IntSet(file,"CarLic",PInfo[playerid][CARLIC]);
	    dini_IntSet(file,"FlyLic",PInfo[playerid][FLYLIC]);
	    dini_IntSet(file,"GunLic",PInfo[playerid][GUNLIC]);
	    dini_IntSet(file,"Money",GetPlayerMoney(playerid));
	    dini_IntSet(file,"CopRank",PInfo[playerid][COPRANK]);
	    dini_IntSet(file,"FBIRank",PInfo[playerid][FBIRANK]);
	    dini_IntSet(file,"FireRank",PInfo[playerid][FIRERANK]);
    }
    PLogged[playerid] = 0;
	return 1;
}

public OnPlayerSpawn(playerid)
{
    SetPlayerPos(playerid, -293.8833,1214.4150,30.9316);
	SendClientMessage(playerid, COLOR_GREY,"Check out our site at www.realityc.smfnew.com/");
	PInfo[playerid][DEATH] = 0;
	if(PInfo[playerid][DEATH] == 1)
	{
	    SetPlayerPos(playerid, -320.2311,1049.3833,20.3403);
		SendClientMessage(playerid, COLOR_GREY,"You have fully recovered from your accident.");
	}
	return 1;
}

public OnPlayerDeath(playerid, killerid, reason)
{
	PInfo[playerid][DEATH] = 1;
	SendClientMessageToAll(COLOR_RED,"SAN NEWS: A citizen of Fort Carson has died, please go to the funeral to share your love to our former citizen");
	SendClientMessage(playerid, COLOR_GREY,"You have died, you must wait 5 minutes or less for the paramedics");
	SetTimer("OnPlayerDeath1",300000,true);
	return 1;
}

forward OnPlayerDeath1(playerid);
public OnPlayerDeath1(playerid)
{
	SetPlayerHealth(playerid, 100);
	SetPlayerPos(playerid, -320.2311,1049.3833,20.3403);
	return 1;
}

public OnVehicleSpawn(vehicleid)
{
	return 1;
}

public OnVehicleDeath(vehicleid, killerid)
{
	return 1;
}

public OnPlayerText(playerid, text[])
{
	return 1;
}

/*==============================================================================
        =============================ADMIN COMMANDS!====================================
================================================================================*/

COMMAND:explosion(playerid, params)
{
	if(PInfo[playerid][ADMINLEVEL] >= 3)
	{
	    SetTimer("OnPlayerExplosion",30000,false);
		SendClientMessage(playerid, COLOR_GREY,"Your explosion will start in 30 seconds, please be around the explosion so it is visible");
	}
	return 1;
}
		

COMMAND:setadminlevel(playerid,params[])
{
    if(PInfo[playerid][ADMINLEVEL] >= 1337)
    {
		new adminlevel,id,file[256],n[MAX_PLAYER_NAME];//creating the new variabls
		new tmp[256], tmp2[256], Index,str[50];// creating the new variables
		tmp = strtok(params,Index), tmp2 = strtok(params,Index),id = strval(tmp),adminlevel = strval(tmp2);// setting them to strtok so we can use them as parameters of our command
		GetPlayerName(id,n,MAX_PLAYER_NAME);//getting the players name
		format(file,sizeof(file),"RealityC/Users/%s.txt",n);//formatting the file
		if(!strlen(params)) return SendClientMessage(playerid,COLOR_GREY,"USAGE: /setlevel <ID> <Level>");// if the string is empty
		if(!IsPlayerConnected(id))return SendClientMessage(playerid,COLOR_GREY,"You have entered an incorrect ID"); //if the id is not connected
		PInfo[id][ADMINLEVEL] = adminlevel;//sets the level of the player
		dini_IntSet(file, "Admin Level",adminlevel);//saves the new level to the file
		format(str,sizeof(str),"You have set %s's level to %d",n,adminlevel);//creates the string
		SendClientMessage(playerid,COLOR_LIGHTBLUE,str);
	}
	return 1;
}

COMMAND:setfaction(playerid,params[])
{
	if(PInfo[playerid][ADMINLEVEL] >= 5)
	{
		new faction,id,file[256],n[MAX_PLAYER_NAME];//creating the new variabls
		new tmp[256], tmp2[256], Index,str[50];// creating the new variables
		tmp = strtok(params,Index), tmp2 = strtok(params,Index),id = strval(tmp),faction = strval(tmp2);// setting them to strtok so we can use them as parameters of our command
		GetPlayerName(id,n,MAX_PLAYER_NAME);//getting the players name
		format(file,sizeof(file),"RealityC/Users/%s.txt",n);//formatting the file
		if(!strlen(params)) return SendClientMessage(playerid,COLOR_GREY,"USAGE: /setfaction <ID> <Level>");// if the string is empty
		if(!IsPlayerConnected(id))return SendClientMessage(playerid,COLOR_GREY,"You have entered an incorrect ID"); //if the id is not connected
		PInfo[id][FACTION] = faction;//sets the level of the player
		dini_IntSet(file, "Faction",faction);//saves the new level to the file
		format(str,sizeof(str),"You have set %s's faction to %d",n,faction);//creates the string
		SendClientMessage(playerid,COLOR_LIGHTBLUE,str);
	}
	return 1;
}

COMMAND:setcoprank(playerid,params[])
{
    if(PInfo[playerid][COPRANK] == 6 && PInfo[playerid][FACTION] == 1 || PInfo[playerid][ADMINLEVEL] >= 5)
    {
		new facrank,id,file[256],n[MAX_PLAYER_NAME];//creating the new variabls
		new tmp[256], tmp2[256], Index,str[50];// creating the new variables
		tmp = strtok(params,Index), tmp2 = strtok(params,Index),id = strval(tmp),facrank = strval(tmp2);// setting them to strtok so we can use them as parameters of our command
		GetPlayerName(id,n,MAX_PLAYER_NAME);//getting the players name
		format(file,sizeof(file),"RealityC/Users/%s.txt",n);//formatting the file
		if(!strlen(params)) return SendClientMessage(playerid,COLOR_GREY,"USAGE: /setcoprank <ID> <Level>");// if the string is empty
		if(!IsPlayerConnected(id))return SendClientMessage(playerid,COLOR_GREY,"You have entered an incorrect ID"); //if the id is not connected
		PInfo[id][COPRANK] = facrank;//sets the level of the player
		dini_IntSet(file, "CopRank",facrank);//saves the new level to the file
		format(str,sizeof(str),"You have set %s's faction rank to %d",n,facrank);//creates the string
		SendClientMessage(playerid,COLOR_LIGHTBLUE,str);
	}
	return 1;
}

COMMAND:setfirerank(playerid,params[])
{
    if(PInfo[playerid][FIRERANK] == 6 && PInfo[playerid][FACTION] == 3 || PInfo[playerid][ADMINLEVEL] >= 5)
    {
		new facrank,id,file[256],n[MAX_PLAYER_NAME];//creating the new variabls
		new tmp[256], tmp2[256], Index,str[50];// creating the new variables
		tmp = strtok(params,Index), tmp2 = strtok(params,Index),id = strval(tmp),facrank = strval(tmp2);// setting them to strtok so we can use them as parameters of our command
		GetPlayerName(id,n,MAX_PLAYER_NAME);//getting the players name
		format(file,sizeof(file),"RealityC/Users/%s.txt",n);//formatting the file
		if(!strlen(params)) return SendClientMessage(playerid,COLOR_GREY,"USAGE: /setcoprank <ID> <Level>");// if the string is empty
		if(!IsPlayerConnected(id))return SendClientMessage(playerid,COLOR_GREY,"You have entered an incorrect ID"); //if the id is not connected
		PInfo[id][FBIRANK] = facrank;//sets the level of the player
		dini_IntSet(file, "FireRank",facrank);//saves the new level to the file
		format(str,sizeof(str),"You have set %s's faction rank to %d",n,facrank);//creates the string
		SendClientMessage(playerid,COLOR_LIGHTBLUE,str);
	}
	return 1;
}

COMMAND:setfbirank(playerid,params[])
{
    if(PInfo[playerid][FBIRANK] == 6 && PInfo[playerid][FACTION] == 2 || PInfo[playerid][ADMINLEVEL] >= 5)
    {
		new facrank,id,file[256],n[MAX_PLAYER_NAME];//creating the new variabls
		new tmp[256], tmp2[256], Index,str[50];// creating the new variables
		tmp = strtok(params,Index), tmp2 = strtok(params,Index),id = strval(tmp),facrank = strval(tmp2);// setting them to strtok so we can use them as parameters of our command
		GetPlayerName(id,n,MAX_PLAYER_NAME);//getting the players name
		format(file,sizeof(file),"RealityC/Users/%s.txt",n);//formatting the file
		if(!strlen(params)) return SendClientMessage(playerid,COLOR_GREY,"USAGE: /setcoprank <ID> <Level>");// if the string is empty
		if(!IsPlayerConnected(id))return SendClientMessage(playerid,COLOR_GREY,"You have entered an incorrect ID"); //if the id is not connected
		PInfo[id][FBIRANK] = facrank;//sets the level of the player
		dini_IntSet(file, "FBIRank",facrank);//saves the new level to the file
		format(str,sizeof(str),"You have set %s's faction rank to %d",n,facrank);//creates the string
		SendClientMessage(playerid,COLOR_LIGHTBLUE,str);
	}
	return 1;
}

COMMAND:kick(playerid,params[])
{
	if(PInfo[playerid][ADMINLEVEL] >= 2)
	{
		new id,n[MAX_PLAYER_NAME],on[MAX_PLAYER_NAME];
		new tmp[256], Index, str[49];
		tmp = strtok(params,Index), id = strval(tmp);
		GetPlayerName(id,on,sizeof(on));
		GetPlayerName(playerid,n,sizeof(n));
		if(PInfo[playerid][LEVEL] >= 2) return SendClientMessage(playerid,COLOR_ORANGE,"You need to be level 2 to use this command!");
		if(!strlen(params)) return SendClientMessage(playerid,COLOR_GREY,"USAGE: /kick <ID> ");
		if(!IsPlayerConnected(id)) return SendClientMessage(playerid,COLOR_GREY,"Invalid ID");
		format(str,sizeof(str),"%s has kicked %s",n,on);
		SendClientMessageToAll(COLOR_LIGHTBLUE,str);
		Kick(id);
	}
	return 1;
}
COMMAND:ban(playerid,params[])
{
    if(PInfo[playerid][ADMINLEVEL] >= 4)
	{
		new id, n[MAX_PLAYER_NAME],on[MAX_PLAYER_NAME];
		new tmp[256], Index, str[49];
		tmp = strtok(params,Index), id = strval(tmp);
		GetPlayerName(id,on,sizeof(on));
		GetPlayerName(playerid,n,sizeof(n));
		if(PInfo[playerid][LEVEL] >= 4) return SendClientMessage(playerid,COLOR_ORANGE,"You need to be level 4 to use this command!");
		if(!strlen(params)) return SendClientMessage(playerid,COLOR_GREY,"USAGE: /ban <ID> ");
		if(!IsPlayerConnected(id)) return SendClientMessage(playerid,COLOR_GREY,"Invalid ID");
		format(str,sizeof(str),"%s has banned %s",n,on);
		SendClientMessageToAll(COLOR_ORANGE,str);
		Ban(id);
	}
	return 1;
}

COMMAND:freeze(playerid,params[])
{
    if(PInfo[playerid][ADMINLEVEL] >= 2)
	{
		new id,n[MAX_PLAYER_NAME],on[MAX_PLAYER_NAME];
		new tmp[256], Index, str[49];
		tmp = strtok(params,Index), id = strval(tmp);
		GetPlayerName(id,on,sizeof(on));
		GetPlayerName(playerid,n,sizeof(n));
		if(PInfo[playerid][LEVEL] >= 2) return SendClientMessage(playerid,COLOR_ORANGE,"You need to be level 2 to use this command!");
		if(!strlen(params)) return SendClientMessage(playerid,COLOR_GREY,"USAGE: /freeze <ID> ");
		if(!IsPlayerConnected(id)) return SendClientMessage(playerid,COLOR_GREY,"Invalid ID");
		format(str,sizeof(str),"%s has frozen %s",n,on);
		SendClientMessageToAll(COLOR_LIGHTBLUE,str);
		TogglePlayerControllable(playerid, 0);
	}
	return 1;
}

COMMAND:unfreeze(playerid,params[])
{
    if(PInfo[playerid][ADMINLEVEL] >= 1)
	{
		new id,n[MAX_PLAYER_NAME],on[MAX_PLAYER_NAME];
		new tmp[256], Index, str[49];
		tmp = strtok(params,Index), id = strval(tmp);
		GetPlayerName(id,on,sizeof(on));
		GetPlayerName(playerid,n,sizeof(n));
		if(PInfo[playerid][LEVEL] >= 3) return SendClientMessage(playerid,COLOR_ORANGE,"You need to be level 3 to use this command!");
		if(!strlen(params)) return SendClientMessage(playerid,COLOR_GREY,"USAGE: /freeze <ID> ");
		if(!IsPlayerConnected(id)) return SendClientMessage(playerid,COLOR_GREY,"Invalid ID");
		format(str,sizeof(str),"%s has frozen %s",n,on);
		SendClientMessageToAll(COLOR_LIGHTBLUE,str);
		TogglePlayerControllable(playerid, 1);
	}
	return 1;
}

COMMAND:admins(playerid, params)
{
	new fAdmins[64];
	if(PInfo[playerid][ADMINLEVEL] == 1) { fAdmins = "Donator"; }
	else if(PInfo[playerid][ADMINLEVEL] == 2) { fAdmins = "Basic Moderator"; }
	else if(PInfo[playerid][ADMINLEVEL] == 3) { fAdmins = "Head Moderator"; }
	else if(PInfo[playerid][ADMINLEVEL] == 4) { fAdmins = "Basic Administrator"; }
	else if(PInfo[playerid][ADMINLEVEL] == 5) { fAdmins = "Head Administrator"; }
	else if(PInfo[playerid][ADMINLEVEL] == 1337) { fAdmins = "Server Scripters"; }
	else if(PInfo[playerid][ADMINLEVEL] == 1338) { fAdmins = "Server Owner"; }

	new string[256];
	new id, n[MAX_PLAYER_NAME],on[MAX_PLAYER_NAME];
	GetPlayerName(id,on,sizeof(on));
	GetPlayerName(playerid,n,sizeof(n));

	SendClientMessage(playerid, COLOR_YELLOW,"______-=RealityC Roleplay Administration Team=-_______");
	format(string, sizeof(string), "%s %s %d", fAdmins ,PlayerName2(playerid));
	format(string, sizeof(string), "%s %s %d", fAdmins ,PlayerName2(playerid));
	format(string, sizeof(string), "%s %s %d", fAdmins ,PlayerName2(playerid));
	format(string, sizeof(string), "%s %s %d", fAdmins ,PlayerName2(playerid));
	format(string, sizeof(string), "%s %s %d", fAdmins ,PlayerName2(playerid));
	format(string, sizeof(string), "%s %s %d", fAdmins ,PlayerName2(playerid));
	format(string, sizeof(string), "%s %s %d", fAdmins ,PlayerName2(playerid));
	format(string, sizeof(string), "%s %s %d", fAdmins ,PlayerName2(playerid));
	format(string, sizeof(string), "%s %s %d", fAdmins ,PlayerName2(playerid));
	format(string, sizeof(string), "%s %s %d", fAdmins ,PlayerName2(playerid));
	SendClientMessage(playerid, COLOR_RED,string);
	SendClientMessage(playerid, COLOR_GREY,"_______________________________________");
	return 1;
}

COMMAND:achat(playerid, params[])
{
	if(PInfo[playerid][ADMINLEVEL] == 0) return SendClientMessage(playerid, COLOR_RED,"ERROR: You are not an administrator");
	{
	    new fAdmins[64];
	    if(PInfo[playerid][ADMINLEVEL] == 1) { fAdmins = "Donator"; }
		else if(PInfo[playerid][ADMINLEVEL] == 2) { fAdmins = "Basic Moderator"; }
		else if(PInfo[playerid][ADMINLEVEL] == 3) { fAdmins = "Head Moderator"; }
		else if(PInfo[playerid][ADMINLEVEL] == 4) { fAdmins = "Basic Administrator"; }
		else if(PInfo[playerid][ADMINLEVEL] == 5) { fAdmins = "Head Administrator"; }
		else if(PInfo[playerid][ADMINLEVEL] == 1337) { fAdmins = "Server Scripters"; }
		else if(PInfo[playerid][ADMINLEVEL] == 1338) { fAdmins = "Server Owner"; }

		new sendername[MAX_PLAYER_NAME];
		new string[256];
		GetPlayerName(playerid, sendername, sizeof(sendername));
		format(string, sizeof(string), "ADMIN CHAT: %s %s: %s", fAdmins, sendername, params[0]);
		SendAdminMessage(0xCCCCCC00, string);
	}
	return 1;
}

COMMAND:ah(playerid, params)
{
	if(PInfo[playerid][ADMINLEVEL] >= 1) return SendClientMessage(playerid, COLOR_RED,"ERROR: You need to be administrator level 1 to view this command");
	{
        SendClientMessage(playerid, COLOR_RED,"Administrator Help");
        SendClientMessage(playerid, COLOR_RED,"List of admin commands: /level1, /level2, /level3, /level4, /level5, /level1337");
	}
	return 1;
}

COMMAND:level1(playerid, params)
{
	if(PInfo[playerid][ADMINLEVEL] >= 1) return SendClientMessage(playerid, COLOR_RED,"ERROR: You need to be administrator level 1 to view this command");
	{
		SendClientMessage(playerid, COLOR_GREY,"/goto, /gethere");
		return 1;
	}
}

COMMAND:level2(playerid, params)
{
	if(PInfo[playerid][ADMINLEVEL] >= 1) return SendClientMessage(playerid, COLOR_RED,"ERROR: You need to be administrator level 1 to view this command");
	{
		SendClientMessage(playerid, COLOR_GREY,"/goto, /gethere, /kick");
		return 1;
	}
}

COMMAND:level3(playerid, params)
{
	if(PInfo[playerid][ADMINLEVEL] >= 3) return SendClientMessage(playerid, COLOR_RED,"ERROR: You need to be administrator level 1 to view this command");
	{
		SendClientMessage(playerid, COLOR_GREY,"/goto, /gethere, /kick, /weapcheck, ");
		SendClientMessage(playerid, COLOR_GREY,"Not lots of comands are functional yet, sorry.");
		return 1;
	}
}

COMMAND:level4(playerid, params)
{
if(PInfo[playerid][ADMINLEVEL] >= 3) return SendClientMessage(playerid, COLOR_RED,"ERROR: You need to be administrator level 1 to view this command");
{
SendClientMessage(playerid, COLOR_GREY,"/goto, /gethere, /kick, /ban");
return 1;
}
}

COMMAND:level5(playerid, params)
{
if(PInfo[playerid][ADMINLEVEL] >= 3) return SendClientMessage(playerid, COLOR_RED,"ERROR: You need to be administrator level 1 to view this command");
{
SendClientMessage(playerid, COLOR_GREY,"/goto, /gethere, /kick, /ban, /setleader");
return 1;
}
}

//================================================FACTION/JOB Radio===========================================
COMMAND:911(playerid, params[])
{
	if(PInfo[playerid][FACTION] == 1 || PInfo[playerid][FACTION] == 2)
	{
		new PlayerName[MAX_PLAYER_NAME];
		new string[256];
		GetPlayerName(playerid, PlayerName, sizeof(PlayerName));
		format(string, sizeof(string), "[911] %s: %s, over.", PlayerName, params[0]);
		SendCopsMessage(0xCCCCCC00, string);
		}
		return 1;
}

COMMAND:411(playerid, params[])
{
	if(PInfo[playerid][JOB] == 0) return SendClientMessage(playerid, COLOR_RED,"ERROR: You are not part of the Mechanic job");
	{
		new sendername[MAX_PLAYER_NAME];
		new string[256];
		GetPlayerName(playerid, sendername, sizeof(sendername));
		format(string, sizeof(string), "Channel 911: %s %s", sendername, params[0]);
		SendJobMessage(0xCCCCCC00, string);
		}
		return 1;
}
//==================================================MECHANIC STUFF==================================================
COMMAND:fix(playerid, params)
{
	SetVehicleHealth(playerid, 100);
	SendClientMessage(playerid, COLOR_BLUE,"You have fixed the engine without any problems.");
	return 1;
}
//====================================================COP/FBI========================================================================
COMMAND:duty(playerid, params[])
{
	if(PInfo[playerid][FACTION] == 1)
	{
		SetPlayerColor(playerid, COLOR_BLUE);
		SetPlayerSkin(playerid, 280);
		GivePlayerWeapon(playerid, 24, 500);
		SendClientMessage(playerid, COLOR_RED,"You have taken your badge and nitestick out of your locker");
	}
	else if(PInfo[playerid][FACTION] == 2)
	{
	    SetPlayerColor(playerid, COLOR_BLUE);
		SetPlayerSkin(playerid, 280);
		GivePlayerWeapon(playerid, 24, 500);
		SendClientMessage(playerid, COLOR_RED,"You have taken your badge and nitestick out of your locker");
	}
	else if(PInfo[playerid][FACTION] == 3)
	{
	    SetPlayerColor(playerid, COLOR_BLUE);
		SetPlayerSkin(playerid, 277);
		GivePlayerWeapon(playerid, 24, 500);
		SendClientMessage(playerid, COLOR_RED,"You have taken your badge and nitestick out of your locker");
	}
 return 1;
}
//==============================================================================================================================
//=================================================LAW ENFORCEMENT COMMANDS=====================================================
COMMAND:arrest(playerid, params[])
{
	new id,
	PlayerName[MAX_PLAYER_NAME],
	WantedName[MAX_PLAYER_NAME],
	fine,
	string[128],
	string2[128],
	string3[128];
	if(sscanf(params,"udd", id, fine, time)) return SendClientMessage(playerid, 0xFF0000AA, "[Error] Usage: /arrest [Playerid] [Fine] [Time]");
	if(id == INVALID_PLAYER_ID) return SendClientMessage(playerid, 0xFF0000AA, "[Error]: That player doesn't exist!");
	if(PInfo[playerid][FACTION] == 0) return SendClientMessage(playerid, 0xFF0000AA, "[Error]: You are not a police officer");
	if(IsCuffed[id] == 0) return SendClientMessage(playerid, 0xFF0000AA, "[Error]: That player is not cuffed!");
	if(WantedLevel[id] == 0) return SendClientMessage(playerid, 0xFF0000AA, "[Error]: That player is not wanted!");
	if(!IsPlayerInRangeOfPoint(playerid, 20.0, 1528.2760,-1677.7377,5.8906)) return SendClientMessage(playerid, 0xFF0000AA, "[Error]: You are not at the arrest point!");
	if(!IsPlayerInRangeOfPoint(id, 20.0, 1528.2760,-1677.7377,5.8906)) return SendClientMessage(playerid, 0xFF0000AA, "[Error]: That player is not at the arrest point!");
	if(fine >= MAX_ARREST_FINE) return SendClientMessage(playerid, 0xFF0000AA, "[Error]: That fine is too high!");
	if(fine <= MINIMUM_ARREST_FINE) return SendClientMessage(playerid, 0xFF0000AA, "[Error] That fine is too low!");
	if(time >= MAX_ARREST_JAIL_TIME) return SendClientMessage(playerid, 0xFF0000AA, "[Error]: That time is too long!");
	if(time <= MIN_ARREST_JAIL_TIME) return SendClientMessage(playerid, 0xFF0000AA, "[Error]: That time is too short!");
	if(PInfo[playerid][FACTION] == 1 || PInfo[playerid][FACTION] == 2)
	{
		if(IsPlayerInRangeOfPoint(playerid, 20.0, 269.6075,82.7591,1001.0391) && IsPlayerInRangeOfPoint(id, 20.0, 269.6075,82.7591,1001.0391) && IsCuffed[id] == 1 && WantedLevel[id] >= 0)
		{
		GetPlayerName(playerid, PlayerName, sizeof(PlayerName));
		GetPlayerName(playerid, WantedName, sizeof(WantedName));
		SetPlayerJailed(id);
		format(string, sizeof(string), "[Radio]: All units: %s has arrested %s for %d minutes and recieved $%d", PlayerName, WantedName,time, fine);
		SendCopsMessage(0xCCCCCC00, string);
		format(string2, sizeof(string2), "[Government]: You have been arrested by %s for %d minutes and lost $%d", PlayerName, time, fine);
		SendClientMessage(id, 0xFF0000AA, string2);
		format(string3, sizeof(string3), "[Succes]: You have arrested %s for %d minutes and gained $%d", WantedName, time, fine);
		SendClientMessage(playerid, 0xFF0000AA, string3);
		GivePlayerMoney(playerid, fine);
		GivePlayerMoney(id, -fine);
		}
	}
return 1;
}

COMMAND:tazer(playerid, params[])
{
	new id;
	new Float:X,Float:Y,Float:Z;
	if(sscanf(params,"u", id)) return SendClientMessage(playerid, 0xFF0000AA, "[Error]: Usage: /tazer [Playerid]");
	if(id == INVALID_PLAYER_ID) return SendClientMessage(playerid, 0xFF0000AA, "[Error]: That player doesn't exist!");
	if(IsCuffed[id] == 1) return SendClientMessage(playerid, 0xFF0000AA, "[Error]: That player is already cuffed!");
	if(PInfo[playerid][FACTION] == 0)
	{
		SendClientMessage(playerid, 0xFF0000AA, "[Error]: You are not a police officer!");
	}
	if(PInfo[playerid][FACTION] == 1 || PInfo[playerid][FACTION] == 2)
	{
		GetPlayerPos(id, X, Y, Z);
 		if(IsPlayerInRangeOfPoint(playerid, 20.0, X, Y, Z))
		{
			TogglePlayerControllable(id, false);
			IsTazed[id] = 1;
			GameTextForPlayer(id, "~r~ tazed!", 4000, 4);
			taz = SetTimerEx("tazertimer", 7000, false, "u", id);
			SendClientMessage(playerid, 0xFF0000AA, "[Succes] You have tazed the player");
			SendClientMessage(id, 0xFF0000AA, "[Government] You have been tazed by an officer");
			}
		}
	return 1;
}

COMMAND:cuff(playerid, params[])
{
	new id,
 	PlayerName[MAX_PLAYER_NAME],
  	WantedName[MAX_PLAYER_NAME],
   	string[128];
	if(sscanf(params,"u", id)) return SendClientMessage(playerid, 0xFF0000AA, "[Error]: Usage: /cuff [Playerid]");
	if(id == INVALID_PLAYER_ID) return SendClientMessage(playerid, 0xFF0000AA, "[Error]: That player doesn't exist!");
	if(PInfo[playerid][FACTION] == 0) return SendClientMessage(playerid, 0xFF0000AA, "[Error]: You are not a police officer!");
	if(IsCuffed[id] == 1) return SendClientMessage(playerid, 0xFF0000AA, "[Error]: That player is already cuffed!");
	if(IsTazed[id] == 0) return SendClientMessage(playerid, 0xFF0000AA, "[Error]: You need to taze this player first!");
	if(PInfo[playerid][FACTION] == 1 || PInfo[playerid][FACTION] == 1 && IsCuffed[id] == 0 || IsTazed[id] == 1)
	{
	IsCuffed[id] = 1;
	IsTazed[id] = 0;
	TogglePlayerControllable(id, false);
	GetPlayerName(playerid, PlayerName, sizeof(PlayerName));
	GetPlayerName(id, WantedName, sizeof(WantedName));
	format(string, sizeof(string), "[Government]: You have been cuffed by officer %s", PlayerName);
	SendClientMessage(id, 0xFF0000AA, string);
	format(string, sizeof(string), "[Succes]: You have cuffed %s", WantedName);
	SendClientMessage(playerid, 0xFF0000AA, string);
	KillTimer(taz);
	Suspect[playerid][CUFF] = 1;
	}
	return 1;
}

COMMAND:uncuff(playerid, params[])
{
	new id,
	PlayerName[MAX_PLAYER_NAME],
	WantedName[MAX_PLAYER_NAME],
	string[128];
	if(sscanf(params,"u", id)) return SendClientMessage(playerid, 0xFF0000AA, "[Error]: Usage: /uncuff [Playerid]");
	if(id == INVALID_PLAYER_ID) return SendClientMessage(playerid, 0xFF0000AA, "[Error]: That player doesn't exist!");
	if(PInfo[playerid][FACTION] == 0) return SendClientMessage(playerid, 0xFF0000AA, "[Error]: You are not a police officer!");
	if(IsCuffed[id] == 0) return SendClientMessage(playerid, 0xFF0000AA, "[Error]: That player is not cuffed");
	else
	{
		IsCuffed[id] = 0;
		IsTazed[id] = 0;
		TogglePlayerControllable(id, true);
		GetPlayerName(playerid, PlayerName, sizeof(PlayerName));
		GetPlayerName(id, WantedName, sizeof(WantedName));
		format(string, sizeof(string), "[Government]: You have been uncuffed by officer %s", PlayerName);
		SendClientMessage(id, 0xFF0000AA, string);
		format(string, sizeof(string), "[Succes]: You have uncuffed %s", WantedName);
		SendClientMessage(playerid, 0xFF0000AA, string);
		Suspect[playerid][CUFF] = 0;
		}
		return 1;
}

COMMAND:su(playerid, params[])
{
	new id;
	new reason[128];
	if(sscanf(params,"uz", id, reason)) return SendClientMessage(playerid, 0xFF0000AA, "[Error]: Usage: /su [Playerid] [Reason]");
	if(id == INVALID_PLAYER_ID) return SendClientMessage(playerid, 0xFF0000AA, "[Error]: That player doesn't exist!");
	if(PInfo[playerid][FACTION] == 0) return SendClientMessage(playerid, 0xFF0000AA, "[Error]: You are not a police officer!");
	if(GetPlayerWantedLevel(id) == 6) return SendClientMessage(playerid, 0xFF0000AA, "[Error]: That player is already most wanted!");
	if(PInfo[playerid][FACTION] == 1 || PInfo[playerid][FACTION] == 2)
	{
		new PlayerName[MAX_PLAYER_NAME];
		new WantedName[MAX_PLAYER_NAME];
		GetPlayerName(playerid, PlayerName, sizeof(PlayerName));
		GetPlayerName(id, WantedName, sizeof(WantedName));
		format(reason, sizeof (reason), "[Government]: %s has su'd %s for %s", PlayerName, WantedName, reason);
		SendClientMessageToAll(0xFF0000AA, reason);
		SetPlayerWantedLevel(id, GetPlayerWantedLevel(playerid) + 1);
		WantedLevel[id] = GetPlayerWantedLevel(playerid);
		Suspect[playerid][SUSPECT] = 1;
		}
		return 1;
}


COMMAND:m(playerid, params[])
{
	if(Cop[playerid][COPDUTY] == 1 || FBI[playerid][FBIDUTY] == 1 || PInfo[playerid][FACTION] == 3)
	{
	new sendername[MAX_PLAYER_NAME];
	new string[512];
	GetPlayerName(playerid, sendername, sizeof(sendername));
	if(isnull(params)) return SendClientMessage(playerid, 0xFFFF00AA, "Use /m ");
	format(string, sizeof(string), "MEGAPHONE: %s< %s", sendername, params[0]);
	ProxDetector(40.0, playerid, string, COLOR_YELLOW);
	}
	return 1;
}
    ////////////////////////////////////////////////BASIC ROLEPLAYING COMANDS/////////////////////////////////////

COMMAND:enter(playerid, params)
{
	if(IsPlayerInRangeOfPoint(playerid,30,-145.1174,1116.1191,19.7500)) // MECHANIC
	{
		SetPlayerPos(playerid, 663.836242,-575.605407,16.343263);
		SetPlayerInterior(playerid, 0);
	}
	else if(IsPlayerInRangeOfPoint(playerid,3, -217.7564,979.0526,19.5034)) // Sheriff's Department
	{
		SetPlayerPos(playerid, 246.783996,63.900199,1003.640625);
		SetPlayerInterior(playerid, 6);
	}
	else if(IsPlayerInRangeOfPoint(playerid,30,-299.96633911133, 1011.7711181641, 19.59375)) // EMS
	{
		SetPlayerPos(playerid, -2641.0, 650.0, 75.4); //
		SetPlayerInterior(playerid, 0); // UNKNOWN!
	}
	else if(IsPlayerInRangeOfPoint(playerid,30, -97.4949,1149.7720,19.7422)) // DMV
	{
		SetPlayerPos(playerid, -2029.798339,-106.675910,1035.171875);
		SetPlayerInterior(playerid, 3);
	}
	else if(IsPlayerInRangeOfPoint(playerid,30, -207.3870,1119.3350,20.4297)) // Court
	{
		SetPlayerPos(playerid, 384.808624,173.804992,1008.382812);
		SetPlayerInterior(playerid, 3);
	}
	return 1;
}

COMMAND:buylicense(playerid, params)
{
    if(IsPlayerInRangeOfPoint(playerid,1,-2033.3695,-117.1875,1035.1719)) SendClientMessage(playerid, COLOR_GREY,"Do /buycarlic, /buyflylic or /buygunlic, you must be in DMV to purchase");
    return 1;
}

COMMAND:buyflylic(playerid, params)
{
    if(IsPlayerInRangeOfPoint(playerid,1,-2033.3695,-117.1875,1035.1719))
        {
            SendClientMessage(playerid, COLOR_GREY,"You bought a plane license");
            PInfo[playerid][FLYLIC] = 1;
            GivePlayerMoney(playerid, -7000);
        }
    return 1;
}

COMMAND:buygunlic(playerid, params)
{
    if(IsPlayerInRangeOfPoint(playerid,1,-2033.3695,-117.1875,1035.1719))
        {
            SendClientMessage(playerid, COLOR_GREY,"You bought a gun license");
            PInfo[playerid][GUNLIC] = 1;
            GivePlayerMoney(playerid, -10000);
        }
    return 1;
}

COMMAND:buycarlic(playerid, params)
{
    if(IsPlayerInRangeOfPoint(playerid,1,-2033.3695,-117.1875,1035.1719))
        {
            SendClientMessage(playerid, COLOR_GREY,"You bought a gun license");
            PInfo[playerid][CARLIC] = 1;
            GivePlayerMoney(playerid, -3000);
        }
    return 1;
}

COMMAND:exit(playerid, params)
{
	if(IsPlayerInRangeOfPoint(playerid,30,663.836242,-575.605407,16.343263)) // MECHANIC
        {
	        SetPlayerPos(playerid, -145.1174,1116.1191,19.7500);
	        SetPlayerInterior(playerid, 0);
        }
        else if(IsPlayerInRangeOfPoint(playerid,3,246.783996,63.900199,1003.640625)) // Sheriff's Department
        {
	        SetPlayerPos(playerid, -217.7564,979.0526,19.5034);
	        SetPlayerInterior(playerid, 0);
        }
        else if(IsPlayerInRangeOfPoint(playerid,30,-2641.0, 650.0, 50.4)) // EMS
		{
  			SetPlayerPos(playerid, -299.96633911133, 1011.7711181641, 19.59375 );
  			SetPlayerInterior(playerid, 0);
        }
        else if(IsPlayerInRangeOfPoint(playerid,30,-2029.6281,-106.6850,1035.1719)) // DMV
        {
	        SetPlayerPos(playerid, -97.4949,1149.7720,19.7422);
	        SetPlayerInterior(playerid, 0);
        }
        else if(IsPlayerInRangeOfPoint(playerid,30,384.808624,173.804992,1008.382812)) // City Hall
        {
	        SetPlayerPos(playerid, -207.3870,1119.3350,20.4297);
	        SetPlayerInterior(playerid, 0);
        }
        return 1;
}

COMMAND:stats(playerid, params)
{
 new fJob[24];
	if(PInfo[playerid][JOB] == 1) { fJob = "Mechanic"; }

	new fAction[64];
	if(PInfo[playerid][FACTION] == 1) { fAction = "Sheriff's Department"; }
	else if(PInfo[playerid][FACTION] == 2) { fAction = "Federal Bureau of Investigation"; }
	else if(PInfo[playerid][FACTION] == 3) { fAction = "Fire Department"; }

	new fAcRank[126];
	if(PInfo[playerid][COPRANK] == 1) { fAcRank = "Trainee"; }
	else if(PInfo[playerid][COPRANK] == 2) { fAcRank = "Cadet"; }
	else if(PInfo[playerid][COPRANK] == 3) { fAcRank = "Trainee"; }
	else if(PInfo[playerid][COPRANK] == 4) { fAcRank = "Deputy"; }
	else if(PInfo[playerid][COPRANK] == 5) { fAcRank = "Corporal"; }
	else if(PInfo[playerid][COPRANK] == 6) { fAcRank = "Sergeant"; }
	else if(PInfo[playerid][COPRANK] == 7) { fAcRank = "Undersheriff"; }
	else if(PInfo[playerid][COPRANK] == 8) { fAcRank = "Chief"; }
	
	new fBRank[126];
	if(PInfo[playerid][FBIRANK] == 1) { fAcRank = "Trainee"; }
	else if(PInfo[playerid][FBIRANK] == 2) { fBRank = "Cadet"; }
	else if(PInfo[playerid][FBIRANK] == 3) { fBRank = "Member"; }
	else if(PInfo[playerid][FBIRANK] == 4) { fBRank = "Division Helper"; }
	else if(PInfo[playerid][FBIRANK] == 5) { fBRank = "Sub-Commander"; }
	else if(PInfo[playerid][FBIRANK] == 6) { fBRank = "Commander"; }
	else if(PInfo[playerid][FBIRANK] == 7) { fBRank = "Sub-Director"; }
	else if(PInfo[playerid][FBIRANK] == 8) { fBRank = "Director"; }
	
	new firecRank[126];
	if(PInfo[playerid][FIRERANK] == 1) { firecRank = "Trainee"; }
	else if(PInfo[playerid][FIRERANK] == 2) { firecRank = "Cadet"; }
	else if(PInfo[playerid][FIRERANK] == 3) { firecRank = "Trainee"; }
	else if(PInfo[playerid][FIRERANK] == 4) { firecRank = "Member"; }
	else if(PInfo[playerid][FIRERANK] == 5) { firecRank = "Head EMS"; }
	else if(PInfo[playerid][FIRERANK] == 6) { firecRank = "Sub-Commander"; }
	else if(PInfo[playerid][FIRERANK] == 7) { firecRank = "Division Commander"; }
	else if(PInfo[playerid][FIRERANK] == 8) { firecRank = "Leader"; }

	new fLevel[24];
	if(PInfo[playerid][LEVEL] == 0) { fLevel = "None"; }
	else if(PInfo[playerid][LEVEL] == 1) { fLevel = "1"; }

	new fALevel[24];
	if(PInfo[playerid][ADMINLEVEL] == 1) { fALevel = "1"; }
	else if(PInfo[playerid][ADMINLEVEL] == 2) { fALevel = "2"; }
	else if(PInfo[playerid][ADMINLEVEL] == 3) { fALevel = "3"; }
	else if(PInfo[playerid][ADMINLEVEL] == 4) { fALevel = "4"; }
	else if(PInfo[playerid][ADMINLEVEL] == 5) { fALevel = "5"; }
	else if(PInfo[playerid][ADMINLEVEL] == 1337) { fALevel = "1337"; }
	else if(PInfo[playerid][ADMINLEVEL] == 1338) { fALevel = "1338"; }

	new fDuty[24];
	if(Cop[playerid][COPDUTY] == 0) { fDuty = "No"; }
	else if(Cop[playerid][COPDUTY] == 1) { fDuty = "Yes"; }
	else if(FBI[playerid][FBIDUTY] == 0) { fDuty = "No"; }
	else if(FBI[playerid][FBIDUTY] == 1) { fDuty = "Yes"; }

	new pName[MAX_PLAYER_NAME], string[128];
	GetPlayerName(playerid, pName, sizeof pName);

	SendClientMessage(playerid, COLOR_GREY,"______-=Information on Account=-_______");
	format(string, sizeof(string), "| Name: %s | Level [%s] | Admin Level [%s] | Money [%s] |", pName, fLevel, fALevel, GetPlayerMoney(playerid));
	SendClientMessage(playerid, COLOR_GREY,string);
	format(string, sizeof(string), "| Job [%s] | Law Job [%s] | Duty [%s] | Rank [%s%s%s] |", fJob, fAction, fDuty, fAcRank, firecRank, fBRank);
	SendClientMessage(playerid, COLOR_GREY,string);
	SendClientMessage(playerid, COLOR_GREY,"_______________________________________");
	return 1;
}

COMMAND:licenses(playerid, params)
{
    new pName[MAX_PLAYER_NAME], string[128]; GetPlayerName(playerid, pName, sizeof pName);
    new text1[20];
    new text2[20];
    new text3[20];
    new text4[20];
    new text5[20];
    new text6[20];
    if(PInfo[playerid][CARLIC] == 1) { text1 = "Passed"; } else { text4 = "Not Passed"; }
    if(PInfo[playerid][GUNLIC] == 1) { text2 = "Passed"; } else { text5 = "Not Passed"; }
    if(PInfo[playerid][FLYLIC] == 1) { text3 = "Passed"; } else { text6 = "Not Passed"; }
    SendClientMessage(playerid, COLOR_GREY,"______-=Information Licenses=-_______");
    format(string, sizeof(string), "Name : %s", pName);
    SendClientMessage(playerid, COLOR_GREY,string);
    format(string, sizeof(string), "Drivers License : %s", text1);
    SendClientMessage(playerid, COLOR_GREY,string);
    format(string, sizeof(string), "Gun License : %s", text2);
    SendClientMessage(playerid, COLOR_GREY,string);
    format(string, sizeof(string), "Flying License : %s", text3);
    SendClientMessage(playerid, COLOR_GREY,string);
    SendClientMessage(playerid, COLOR_GREY,"_______________________________________");
    return 1;
}

COMMAND:help(playerid, params)
{
	SendClientMessage(playerid, COLOR_WHITE,":: GENERAL :: /login, /register, /b, /o(oc), /report");
	SendClientMessage(playerid, COLOR_WHITE,":: BANK :: /pay, /deposit, /withdraw, /paycheck");
	SendClientMessage(playerid, COLOR_WHITE,":: REGULAR :: /stats, /licenses, /n(ewbie)");
	SendClientMessage(playerid, COLOR_WHITE,":: HELP :: /cellphonehelp, /insurancehelp, /licensehelp");
	SendClientMessage(playerid, COLOR_WHITE,"If you have a suggestion please post on the forums, or talk to the server owner. Thank you!");
	if(Cop[playerid][COPDUTY] == 1 || FBI[playerid][FBIDUTY] == 1) SendClientMessage(playerid, COLOR_YELLOW,":: COP :: /taze, /untaze, /duty, /offduty, /cuff, /uncuff, /911 (Department), /arrest");
	if(Cop[playerid][COPDUTY] == 1 || FBI[playerid][FBIDUTY] == 1) SendClientMessage(playerid, COLOR_YELLOW,":: FBI :: /taze, /untaze, /fbiduty, /offduty, /cuff, /uncuff, /911 (Department), /arrest");
	else if(PInfo[playerid][JOB] == 1) SendClientMessage(playerid, COLOR_GREY,":: MECHANIC :: /repair");
	return 1;
}

COMMAND:me(playerid, params[])
{
    new sendername[MAX_PLAYER_NAME];
    new string[128];
    GetPlayerName(playerid, sendername, sizeof(sendername));
    if(isnull(params)) return SendClientMessage(playerid, 0xFFFF00AA, "Use /me to do an action.");
    format(string, sizeof(string), "%s %s", sendername, params);
    ProxDetector(10.0, playerid, string, COLOR_PURPLE);
    return 1;
}

COMMAND:do(playerid, params[])
{
    new sendername[MAX_PLAYER_NAME];
    new string[256];
    GetPlayerName(playerid, sendername, sizeof(sendername));
    if(isnull(params)) return SendClientMessage(playerid, 0xFFFF00AA, "Use /do to do an action.");
    format(string, sizeof(string), "%s ((%s))", params, sendername);
    ProxDetector(10.0, playerid, string,COLOR_PURPLE);
    return 1;
}

COMMAND:b(playerid, params[])
    {
    new sendername[MAX_PLAYER_NAME];
    new string[128];
    GetPlayerName(playerid, sendername, sizeof(sendername));
    if(isnull(params)) return SendClientMessage(playerid, COLOR_WHITE, "Use /b (local OOC)");
    format(string, sizeof(string), "(( %s %s ))", sendername, params);
    ProxDetector(20.0, playerid, string, COLOR_WHITE);
    return 1;
}

COMMAND:n(playerid, params[])
    {
    new sendername[MAX_PLAYER_NAME];
    new string[128];
    GetPlayerName(playerid, sendername, sizeof(sendername));
    if(isnull(params)) return SendClientMessage(playerid, COLOR_WHITE, "Use /n (question)");
    format(string, sizeof(string), "%s: %s", sendername, params);
    ProxDetector(9999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999.0, playerid, string, COLOR_RED);
    return 1;
}

COMMAND:o(playerid, params[])
{
    new sendername[MAX_PLAYER_NAME];
    new string[256];
    GetPlayerName(playerid, sendername, sizeof(sendername));
    if(isnull(params)) return SendClientMessage(playerid, COLOR_WHITE, "Use /o (Global OOC)");
    format(string, sizeof(string), "OOC: %s (( %s ))", sendername, params);
    ProxDetector(9999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999.0, playerid, string, COLOR_WHITE);
    return 1;
}

COMMAND:ooc(playerid, params)
{
	return cmd_ooc(playerid, params);
}
Reply
#6

Код HTML:
    //==================================Vehicle Commands=========================================================
COMMAND:engine(playerid, params[])
{
    #pragma unused params
    new vehicleid = GetPlayerVehicleID(playerid);
    if(Engine[vehicleid] == 0)
    {
        SendClientMessage(playerid, COLOR_GREEN, "Engine Starting...");
        SetTimerEx("EngineTimer", 2000, 0, "i", playerid);
    }
    else if(Engine[vehicleid] == 1)
    {
        Engine[vehicleid] = 0;
        SendClientMessage(playerid, COLOR_RED, "Engine Stopped...");
        SendClientMessage(playerid, COLOR_YELLOW, "To exit the vehicle press (F Key) Or (Enter)");
        SendClientMessage(playerid, COLOR_YELLOW, "Press (Shift) or Type (/engine) to start the vehicles engine");
    }
    return 1;
}
//=================================================MECHANIC JOB=================================================
COMMAND:joinmech(playerid, params[])
{
	if(IsPlayerInRangeOfPoint(playerid,30,358.2392,168.5199,1008.3828)) // MECHANIC
 	{
  		SendClientMessage(playerid, COLOR_GREY,"Congratulations on your job, please do /jobhelp for commands");
   		PInfo[playerid][JOB] = 1;
   	}
    return 1;
}
//==========================================Business system=====================================================
COMMAND:bizzhelp(playerid, params)
{
	SendClientMessage(playerid, COLOR_GREY,"--------|Business Prices|-------");
	SendClientMessage(playerid, COLOR_GREY,"24/7 - 15,0000 | Ads - 40,000");
	SendClientMessage(playerid, COLOR_GREY,"Purchases go on forums.");
	return 1;
 }
//==========================================House Help=====================================================
COMMAND:househelp(playerid, params)
{
    SendClientMessage(playerid, COLOR_GREY,"--------|House Prices|-------");
    SendClientMessage(playerid, COLOR_GREY,"Caravan - 7,500, Average - 15,000");
    SendClientMessage(playerid, COLOR_GREY,"To buy a house you have to post on forums with the location");
    return 1;
}
//=======================================PHONE SYSTEM========================================================
COMMAND:cellphonehelp(playerid,params)
{
	SendClientMessage(playerid, COLOR_GREY,"/sms [id], /turnoffphone, /r");
	SendClientMessage(playerid, COLOR_GREY,"/SMS - Phone Texting");
	SendClientMessage(playerid, COLOR_GREY,"/turnoffphone - Turns off phone");
	SendClientMessage(playerid, COLOR_GREY,"/r- Incoming Texts");
return 1;
}

COMMAND:turnoffphone(playerid,params[])
{
    #pragma unused params
    if(GetPVarInt(playerid,"NoPM") == 1)
    {
        SetPVarInt(playerid,"NoPM", 0);
        SendClientMessage(playerid, 0xFFFF00FF, "Phone's on!");
    }
    else
    {
        SetPVarInt(playerid,"NoPM", 1);
        SendClientMessage(playerid, 0xFFFF00FF, "Phone's off!");
    }
    return 1;
}

COMMAND:sms(playerid,params[])
{
    if(PInfo[playerid][PHONE] == 0) return SendClientMessage(playerid, COLOR_RED,"You do not own a cellphone");
    new id,string[256],pName[MAX_PLAYER_NAME],pName2[MAX_PLAYER_NAME];
    id = strval(params);
    if(strlen(params) == 0) return SendClientMessage(playerid,0xF2A337FF,"USAGE: /sms [id][text]");
    if(GetPVarInt(id,"NoPM") == 1) return SendClientMessage(playerid,0xFF0000FF,"That player isnt recieving pm's");
    GetPlayerName(playerid,pName,sizeof(pName));
    GetPlayerName(id,pName2,sizeof(pName2));
    format(string,sizeof(string),"SMS from %s: %s",pName,params);
    SendClientMessage(id,0xFFFF00FF,string);
    format(string,sizeof(string),"SMS sent to %s: %s",pName2,params);
    SendClientMessage(playerid,0xF2A337FF,string);
    SetPVarInt(id,"LastID",playerid);
    return 1;
}

COMMAND:r(playerid,params[])
{
	new string[256],pName[MAX_PLAYER_NAME],pName2[MAX_PLAYER_NAME];
	if(strlen(params) == 0) return SendClientMessage(playerid,0xF2A337FF,"USAGE: /r [text]");
	if(GetPVarInt(playerid,"LastID") == -1) return SendClientMessage(playerid,0xFF0000FF,"No recent messages!");
	if(GetPVarInt(GetPVarInt(playerid,"LastID"),"NoPM") == 1) return SendClientMessage(playerid,0xFF0000FF,"That player isnt recieving pm's");
	GetPlayerName(playerid,pName,sizeof(pName));
	GetPlayerName(GetPVarInt(playerid,"LastID"),pName2,sizeof(pName2));
	format(string,sizeof(string),"PM from %s: %s",pName,params);
	SendClientMessage(GetPVarInt(playerid,"LastID"),0xFFFF00FF,string);
	format(string,sizeof(string),"PM sent to %s: %s",pName2,params);
	SendClientMessage(playerid,0xF2A337FF,string);
	SetPVarInt(GetPVarInt(playerid,"LastID"),"LastID",playerid);
 	return 1;
}
//=================================================HOUSE SYSTEM========================================================
COMMAND:createhouse(playerid,params[])
{
    if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid,-1,"You aren't an admin!");//Check if the player is currently rcon logged in.
    new HousePrice,id = HouseCount;//Creating the house price for the selected value in the command, and the last house id created.
    if(sscanf(params,"i",HousePrice)) return SendClientMessage(playerid,-1,"USAGE: /createhouse <price>");//Checking if the player uses the correct syntax. The parameter "i" in sscanf means integer, also could be used as "d".
    new Float:x,Float:y,Float:z;//Creating the floats, to store the player's position.
    GetPlayerPos(playerid,x,y,z);//Getting the player's position and storing it
    HInfo[id][Price] = HousePrice;//Setting the house price to the selected one.
    HInfo[id][Owned] = 0;//Setting the house id owned = 0
    HInfo[id][XPos] = x;//Storing the XPos value to the player's x.
    HInfo[id][YPos] = y;//Storing the YPos value to the player's y.
    HInfo[id][ZPos] = z;//Storing the ZPos value to the player's z.
    HInfo[id][VirtualWorld] = GetPlayerVirtualWorld(playerid);
    format(HInfo[id][Owner],24,"Nonusablenameforthishouse");//Formating the "Owner" house id value to "Nonusablenameforthishouse".
    SendClientMessage(playerid,-1,"House created");
    HouseEnter[id]  = CreateDynamicCP(x,y,z,1.5,GetPlayerVirtualWorld(playerid));//Creating the checkpoint and storing it in the HouseEnter value.
    HouseExit[id] = CreateDynamicCP(443.9237,509.4609,1001.4195,1.5,GetPlayerVirtualWorld(playerid));//Creating the house exit checkpoint and storing it in the HouseExit value.
        new file[40],labelstring[100];//Creating the "file", and the labelstring var.
    format(file,sizeof(file),"RealityC/houses/%i.ini",id);//Formating the var to the selected house directory.
    INI_Open(file);//Opening the file with SII.
    INI_WriteInt("Price",HousePrice);//Writing in the place "Price" the inputted "Price" value.
    INI_WriteInt("Owned",0);//Setting to "Owned" = 0 in the ini file.
    INI_WriteInt("VirtualWorld",GetPlayerVirtualWorld(playerid));//Writing "VirtualWorld" = GetPlayerVirtualWorld(..);
    INI_WriteFloat("XPos",x);//Writing the players pos for the check point position.
    INI_WriteFloat("YPos",y);//Self explanatory.
    INI_WriteFloat("ZPos",z);//Self explanatory.
    INI_WriteString("Owner","Nonusablenameforthishouse");//Writing a string in "Owned" to "Nonusablenameforthishouse"
    INI_Save();//Saving file with SII.
    INI_Close();//Closing the file with SII.
    format(labelstring,sizeof(labelstring),"Owned: No \nPrice: %i",HousePrice);
    HInfo[id][HouseLabel] = Create3DTextLabel(labelstring,0xFF0000FF,x,y,z,25.0,GetPlayerVirtualWorld(playerid));
    HouseCount++;
    return 1;
}

COMMAND:buyhouse(playerid,params[])
{
    for(new i = 0; i < MAX_HOUSES;i++)//Loop threw all houses.
    {
        if(!IsPlayerInRangeOfPoint(playerid,8.0,HInfo[i][XPos],HInfo[i][YPos],HInfo[i][ZPos])) continue;//Check if the player is near a house checkpoint
        if(GetPlayerMoney(playerid) < HInfo[i][Price]) return SendClientMessage(playerid,-1,"You don't have enough money");//Checking the players money, to see if he has enough to buy the house.
        if(HInfo[i][Owned] == 1) return SendClientMessage(playerid,-1,"This house is already owned");//Checking if the house is already owned.
        HInfo[i][Owned] = 1;//Setting the house owned var to 1.
        new file[60],pName[24],string[100];//Creating the necessary vars.
        GetPlayerName(playerid,pName,sizeof(pName));//Retrieving the player's name.
        format(HInfo[i][Owner],24,"%s",pName);//Setting the House Owner's var
        format(file,sizeof(file),"RealityC/houses/%i.ini",i);//Formating the house file
        INI_Open(file);//Opening the house file
        INI_WriteInt("Owned",1);//Setting in the ini file "Owned" to 1
        INI_WriteString("Owner",pName);//Setting the "Owner" to the player's name.
        INI_Save();//Saving the ini
        INI_Close();//Closing the ini
        format(string,sizeof(string),"Owned: Yes \nPrice: %i \nOwner: %s",HInfo[i][Price],pName);//Formating the string, so we can update the label of the house
        Update3DTextLabelText(HInfo[i][HouseLabel],0xFF0000FF,string);//Updating the label with a red color
        return 1;
    }
    SendClientMessage(playerid,-1,"You aren't near a house!");
    return 1;
}

COMMAND:sellhouse(playerid,params[])
{
    for(new i = 0; i < MAX_HOUSES;i++)//Loop threw all houses.
    {
        if(!IsPlayerInRangeOfPoint(playerid,8.0,HInfo[i][XPos],HInfo[i][YPos],HInfo[i][ZPos])) continue;//Check if the player is near a house checkpoint
        if(HInfo[i][Owned] == 0) return SendClientMessage(playerid,-1,"This house isn't owned");//Checking if the house is already owned.
        new pName[24];
        GetPlayerName(playerid,pName,sizeof(pName));//Retrieving the player's name.
        if(HInfo[i][Owned] == 1 && strcmp(pName,HInfo[i][Owner]) != 0) return SendClientMessage(playerid,-1,"You aren't the owner of this house!");//Checking if the house is owned but the owners name is different
        HInfo[i][Owned] = 0;//Setting the house owned var to 1.
        new file[60],string[100];//Creating the necessary vars.
        format(HInfo[i][Owner],24,"Nonusablenameforthishouse");//Setting the House Owner's var
        format(file,sizeof(file),"RealityC/houses/%i.ini",i);//Formating the house file
        INI_Open(file);//Opening the house file
        INI_WriteInt("Owned",0);//Setting in the ini file "Owned" to 0
        INI_WriteString("Owner","Nonusablenameforthishouse");//Setting the "Owner" to the "Nonusablenameforthishouse".
        INI_Save();//Saving the ini
        INI_Close();//Closing the ini
        format(string,sizeof(string),"Owned: No \nPrice: %i \nOwner: None",HInfo[i][Price],pName);//Formating the string, so we can update the label of the house
        Update3DTextLabelText(HInfo[i][HouseLabel],0xFF0000FF,string);//Updating the label with a red color
        return 1;
    }
    SendClientMessage(playerid,-1,"You aren't near a house!");
    return 1;
}
//============================================OOC PLAYER CMDS================================================

public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
    if(vehicleid == FCSD)//Checking if the vehicleid matches the FireCat one.
{
    new pName[MAX_PLAYER_NAME];//Where we will store the players name in a 24 size.
    GetPlayerName(playerid,pName,sizeof(pName));//Getting the players name and storing it in pName.
    if(PInfo[playerid][FACTION] == 1)//String compare between the users name and the selected name.
    {
        //If the 2 names are the same...
        SendClientMessage(playerid,-1,"You have entered, Police Car");
    }
    else//Else if the 2 names don't match....
    {
        RemovePlayerFromVehicle(playerid);//Lets remove him from the vehicle
        SendClientMessage(playerid,-1,"This car belongs to FCSD - Cops have been notified");
    }
}
if(vehicleid == FCSD1)//Checking if the vehicleid matches the FireCat one.
{
    new pName[MAX_PLAYER_NAME];//Where we will store the players name in a 24 size.
    GetPlayerName(playerid,pName,sizeof(pName));//Getting the players name and storing it in pName.
    if(PInfo[playerid][FACTION] == 1)//String compare between the users name and the selected name.
    {
        //If the 2 names are the same...
        SendClientMessage(playerid,-1,"You have entered, Police Car");
    }
    else//Else if the 2 names don't match....
    {
        RemovePlayerFromVehicle(playerid);//Lets remove him from the vehicle
        SendClientMessage(playerid,-1,"This car belongs to FCSD - Cops have been notified");
    }
}
if(vehicleid == FCSD2)//Checking if the vehicleid matches the FireCat one.
{
    new pName[MAX_PLAYER_NAME];//Where we will store the players name in a 24 size.
    GetPlayerName(playerid,pName,sizeof(pName));//Getting the players name and storing it in pName.
    if(PInfo[playerid][FACTION] == 1)//String compare between the users name and the selected name.
    {
        //If the 2 names are the same...
        SendClientMessage(playerid,-1,"You have entered, Police Car");
    }
    else//Else if the 2 names don't match....
    {
        RemovePlayerFromVehicle(playerid);//Lets remove him from the vehicle
        SendClientMessage(playerid,-1,"This car belongs to FCSD - Cops have been notified");
    }
}
if(vehicleid == FCSD3)//Checking if the vehicleid matches the FireCat one.
{
    new pName[MAX_PLAYER_NAME];//Where we will store the players name in a 24 size.
    GetPlayerName(playerid,pName,sizeof(pName));//Getting the players name and storing it in pName.
    if(PInfo[playerid][FACTION] == 1)//String compare between the users name and the selected name.
    {
        //If the 2 names are the same...
        SendClientMessage(playerid,-1,"You have entered, Police Car");
    }
    else//Else if the 2 names don't match....
    {
        RemovePlayerFromVehicle(playerid);//Lets remove him from the vehicle
        SendClientMessage(playerid,-1,"This car belongs to FCSD - Cops have been notified");
    }
}
if(vehicleid == FCSD4)//Checking if the vehicleid matches the FireCat one.
{
    new pName[MAX_PLAYER_NAME];//Where we will store the players name in a 24 size.
    GetPlayerName(playerid,pName,sizeof(pName));//Getting the players name and storing it in pName.
    if(PInfo[playerid][FACTION] == 1)//String compare between the users name and the selected name.
    {
        //If the 2 names are the same...
        SendClientMessage(playerid,-1,"You have entered, Police Car");
    }
    else//Else if the 2 names don't match....
    {
        RemovePlayerFromVehicle(playerid);//Lets remove him from the vehicle
        SendClientMessage(playerid,-1,"This car belongs to FCSD - Cops have been notified");
    }
}
if(vehicleid == FCSD5)//Checking if the vehicleid matches the FireCat one.
{
    new pName[MAX_PLAYER_NAME];//Where we will store the players name in a 24 size.
    GetPlayerName(playerid,pName,sizeof(pName));//Getting the players name and storing it in pName.
    if(PInfo[playerid][FACTION] == 1)//String compare between the users name and the selected name.
    {
        //If the 2 names are the same...
        SendClientMessage(playerid,-1,"You have entered, Police Car");
    }
    else//Else if the 2 names don't match....
    {
        RemovePlayerFromVehicle(playerid);//Lets remove him from the vehicle
        SendClientMessage(playerid,-1,"This car belongs to FCSD - Cops have been notified");
    }
}
if(vehicleid == FBI1)//Checking if the vehicleid matches the FireCat one.
{
    new pName[MAX_PLAYER_NAME];//Where we will store the players name in a 24 size.
    GetPlayerName(playerid,pName,sizeof(pName));//Getting the players name and storing it in pName.
    if(PInfo[playerid][FACTION] == 2)//String compare between the users name and the selected name.
    {
        //If the 2 names are the same...
        SendClientMessage(playerid,-1,"You have entered, FBI");
    }
    else//Else if the 2 names don't match....
    {
        RemovePlayerFromVehicle(playerid);//Lets remove him from the vehicle
        SendClientMessage(playerid,-1,"This car belongs to FBI - Cops have been notified");
    }
}

if(vehicleid == FBI2)//Checking if the vehicleid matches the FireCat one.
{
    new pName[MAX_PLAYER_NAME];//Where we will store the players name in a 24 size.
    GetPlayerName(playerid,pName,sizeof(pName));//Getting the players name and storing it in pName.
    if(PInfo[playerid][FACTION] == 2)//String compare between the users name and the selected name.
    {
        //If the 2 names are the same...
        SendClientMessage(playerid,-1,"You have entered, FBI");
    }
    else//Else if the 2 names don't match....
    {
        RemovePlayerFromVehicle(playerid);//Lets remove him from the vehicle
        SendClientMessage(playerid,-1,"This car belongs to FBI - Cops have been notified");
    }
}

if(vehicleid == FBI3)//Checking if the vehicleid matches the FireCat one.
{
    new pName[MAX_PLAYER_NAME];//Where we will store the players name in a 24 size.
    GetPlayerName(playerid,pName,sizeof(pName));//Getting the players name and storing it in pName.
    if(PInfo[playerid][FACTION] == 2)//String compare between the users name and the selected name.
    {
        //If the 2 names are the same...
        SendClientMessage(playerid,-1,"You have entered, FBI");
    }
    else//Else if the 2 names don't match....
    {
        RemovePlayerFromVehicle(playerid);//Lets remove him from the vehicle
        SendClientMessage(playerid,-1,"This car belongs to FBI - Cops have been notified");
    }
}

if(vehicleid == FBI4)//Checking if the vehicleid matches the FireCat one.
{
    new pName[MAX_PLAYER_NAME];//Where we will store the players name in a 24 size.
    GetPlayerName(playerid,pName,sizeof(pName));//Getting the players name and storing it in pName.
    if(PInfo[playerid][FACTION] == 2)//String compare between the users name and the selected name.
    {
        //If the 2 names are the same...
        SendClientMessage(playerid,-1,"You have entered, FBI");
    }
    else//Else if the 2 names don't match....
    {
        RemovePlayerFromVehicle(playerid);//Lets remove him from the vehicle
        SendClientMessage(playerid,-1,"This car belongs to FBI - Cops have been notified");
    }
}

if(vehicleid == FBI5)//Checking if the vehicleid matches the FireCat one.
{
    new pName[MAX_PLAYER_NAME];//Where we will store the players name in a 24 size.
    GetPlayerName(playerid,pName,sizeof(pName));//Getting the players name and storing it in pName.
    if(PInfo[playerid][FACTION] == 2)//String compare between the users name and the selected name.
    {
        //If the 2 names are the same...
        SendClientMessage(playerid,-1,"You have entered, FBI");
    }
    else//Else if the 2 names don't match....
    {
        RemovePlayerFromVehicle(playerid);//Lets remove him from the vehicle
        SendClientMessage(playerid,-1,"This car belongs to FBI - Cops have been notified");
    }
}
	return 1;
}

public OnPlayerExitVehicle(playerid, vehicleid)
{
	return 1;
}

public OnPlayerStateChange(playerid, newstate, oldstate)
{
	if(newstate == PLAYER_STATE_DRIVER)
	{
		new vehicleid = GetPlayerVehicleID(playerid);
		if(Engine[vehicleid] == 0)
		{
			TogglePlayerControllable(playerid, 0);
			SendClientMessage(playerid, COLOR_YELLOW, "Press (Shift) or Type (/engine) to start the vehicles engine");
			}
				else if(Engine[vehicleid] == 1)
				{
					TogglePlayerControllable(playerid, 1);
					SendClientMessage(playerid, COLOR_GREEN, "Engine Running...");
			}
}
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)
{
	if(pickupid == DMV)
	{
	SendClientMessage(playerid, COLOR_RED,"DMV, building type /enter");
	return 1;
}

if (pickupid == MechJob)
{
	GameTextForPlayer(playerid,"Do /joinmech to be a Mechanic!",2000,5);
	PlayerPlaySound(playerid, 1052, 0.0, 0.0, 0.0);
	return 1;
}

if (pickupid == Mechanic)
{
	SendClientMessage(playerid, COLOR_RED,"Mechanic, building type /enter");
	PlayerPlaySound(playerid, 1052, 0.0, 0.0, 0.0);
	return 1;
}

if (pickupid == Sheriff)
{
	SendClientMessage(playerid, COLOR_RED,"Sheriff, building type /enter");
	PlayerPlaySound(playerid, 1052, 0.0, 0.0, 0.0);
	return 1;
}

if (pickupid == SheriffDuty)
{
	SendClientMessage(playerid, COLOR_RED,"You are at the duty point, do /duty");
	PlayerPlaySound(playerid, 1052, 0.0, 0.0, 0.0);
	return 1;
}

if (pickupid == FBIDuty)
{
	SendClientMessage(playerid, COLOR_RED,"You are at the duty point, do /fbiduty");
	PlayerPlaySound(playerid, 1052, 0.0, 0.0, 0.0);
	return 1;
}

if (pickupid == EMS)
{
	SendClientMessage(playerid, COLOR_RED,"EMS, building type /enter");
	PlayerPlaySound(playerid, 1052, 0.0, 0.0, 0.0);
	return 1;
}

if (pickupid == DMV)
{
	SendClientMessage(playerid, COLOR_RED,"DMV, building type /enter");
	PlayerPlaySound(playerid, 1052, 0.0, 0.0, 0.0);
	return 1;
}

if (pickupid == DMVLicense)
{
	SendClientMessage(playerid, COLOR_RED,"Type in /buylicense to recieve your license!");
	PlayerPlaySound(playerid, 1052, 0.0, 0.0, 0.0);
	return 1;
}

if (pickupid == city)
{
	SendClientMessage(playerid, COLOR_RED,"City Hall, building type /enter");
	PlayerPlaySound(playerid, 1052, 0.0, 0.0, 0.0);
	return 1;
 	}
 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)
{
	new vehicleid = GetPlayerVehicleID(playerid);
        if(IsPlayerInAnyVehicle(playerid))
        {
            if(Engine[vehicleid] == 0)
            {
            	if(newkeys & KEY_SECONDARY_ATTACK)
             	{
           		RemovePlayerFromVehicle(playerid);
            	TogglePlayerControllable(playerid, 1);
            	}
            	else if(newkeys & KEY_JUMP)
            	{
            	SendClientMessage(playerid, COLOR_GREEN, "Engine Starting...");
             	SetTimerEx("EngineTimer", 2000, 0, "i", playerid);
             	}
           	}
        }
 	return 1;
}

public OnRconLoginAttempt(ip[], password[], success)
{
	return 1;
}

public OnPlayerUpdate(playerid)
{
	return 1;
}

public OnPlayer30Mins(playerid)
{
    if(PInfo[playerid][JOB] >= 1 || PInfo[playerid][FACTION] >= 1)
	{
	    SendClientMessage(playerid, COLOR_GREY,"________JOB PAYDAY_____________");
	    SendClientMessage(playerid, COLOR_GREY,"For your hardwork you have recieved money!");
	    SendClientMessage(playerid, COLOR_GREY,"You have recieved 50 Dollars for your hardwork");
	    SendClientMessage(playerid, COLOR_GREY,"(Each 30 minutes you will recieve 50 dollars))");
	    GivePlayerMoney(playerid, 50);
	}
	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[])
{

if (dialogid == 1)
    {
        new name[MAX_PLAYER_NAME], file[256], string[128];
        GetPlayerName(playerid, name, sizeof(name));
        format(file, sizeof(file), SERVER_USER_FILE, name);
        if(!response) return Kick(playerid);
        if (!strlen(inputtext)) return
		ShowPlayerDialog(playerid, 1, DIALOG_STYLE_INPUT, "Registration", "Please insert your password for your account", "Register", "Leave");
        dini_Create(file);
        dini_IntSet(file, "Password", udb_hash(inputtext));
	    dini_IntSet(file,"Level",PInfo[playerid][LEVEL] = 0);
	    dini_IntSet(file,"Admin Level",PInfo[playerid][ADMINLEVEL] = 0);
	    dini_IntSet(file,"Wired",PInfo[playerid][WIRED] = 0);
	    dini_IntSet(file,"Jailed",PInfo[playerid][JAILED] = 0);
	    dini_IntSet(file,"Job",PInfo[playerid][JOB] = 0);
	    dini_IntSet(file,"Faction",PInfo[playerid][FACTION] = 0);
	    dini_IntSet(file,"Car",PInfo[playerid][CAR] = 0);
	    dini_IntSet(file,"Phone",PInfo[playerid][PHONE] = 0);
	    dini_IntSet(file,"Phonebook",PInfo[playerid][PHONEBOOK] = 0);
	    dini_IntSet(file,"Mask",PInfo[playerid][MASK] = 0);
	    dini_IntSet(file,"Condom",PInfo[playerid][CONDOM] = 0);
	    dini_IntSet(file,"Gun Skill",PInfo[playerid][GUNSKILL] = 0);
	    dini_IntSet(file,"Job Skill",PInfo[playerid][JOBSKILL] = 0);
	    dini_IntSet(file,"CarLic",PInfo[playerid][CARLIC] = 0);
	    dini_IntSet(file,"FlyLic",PInfo[playerid][FLYLIC] = 0);
	    dini_IntSet(file,"GunLic",PInfo[playerid][GUNLIC] = 0);
     	dini_IntSet(file,"Money",GetPlayerMoney(playerid = 0));
	    dini_IntSet(file,"CopRank",PInfo[playerid][COPRANK] = 0);
	    dini_IntSet(file,"FBIRank",PInfo[playerid][FBIRANK] = 0);
	    dini_IntSet(file,"FireRank",PInfo[playerid][FIRERANK] = 0);
        format(string, 128, "[SYSTEM]: You succesfully registered the nickname %s with password %s, you have been auto logged in.", name, inputtext);
        SendClientMessage(playerid, COLOR_YELLOW, string);
        PLogged[playerid] = 1;
    	}
 if (dialogid == 2)
    {
        new name[MAX_PLAYER_NAME], file[256];
        GetPlayerName(playerid, name, sizeof(name));
        format(file, sizeof(file), SERVER_USER_FILE, name);
        if(!response) return Kick(playerid);
        if (!strlen(inputtext)) return ShowPlayerDialog(playerid, 2, DIALOG_STYLE_INPUT, "RealityC Roleplay", "Your account is already registered, please login", "Login", "Leave");
        new tmp;
        tmp = dini_Int(file, "Password");
        if(udb_hash(inputtext) != tmp) {
            SendClientMessage(playerid, COLOR_RED, "You have inserted an incorrect password");
            ShowPlayerDialog(playerid, 2, DIALOG_STYLE_INPUT, "RealityC Roleplay", "Your account is already registered, please login", "Login", "Leave");
        }
        else
        {
            PLogged[playerid] = 1;
            PInfo[playerid][LEVEL] = dini_Int(file, "Level");
            PInfo[playerid][ADMINLEVEL] = dini_Int(file, "Admin Level");
            PInfo[playerid][WIRED] = dini_Int(file, "Wired");
            PInfo[playerid][JAILED] = dini_Int(file, "Jailed");
            PInfo[playerid][JOB] = dini_Int(file, "Job");
			PInfo[playerid][FACTION] = dini_Int(file, "Faction");
            PInfo[playerid][CAR] = dini_Int(file, "Car");
            PInfo[playerid][PHONE] = dini_Int(file, "Phone");
            PInfo[playerid][PHONEBOOK] = dini_Int(file, "Phonebook");
            PInfo[playerid][MASK] = dini_Int(file, "Mask");
            PInfo[playerid][CONDOM] = dini_Int(file, "Condom");
            PInfo[playerid][GUNSKILL] = dini_Int(file, "Gun Skill");
            PInfo[playerid][JOBSKILL] = dini_Int(file, "Job Skill");
            PInfo[playerid][CARLIC] = dini_Int(file, "CarLic");
            PInfo[playerid][FLYLIC] = dini_Int(file, "FlyLic");
            PInfo[playerid][GUNLIC] = dini_Int(file, "GunLic");
            GetPlayerMoney(playerid = dini_Int(file, "Money"));
            PInfo[playerid][COPRANK] = dini_Int(file, "CopRank");
            PInfo[playerid][FBIRANK] = dini_Int(file, "FBIRank");
            PInfo[playerid][FIRERANK] = dini_Int(file, "FireRank");
            SendClientMessage(playerid,COLOR_RED, "[SYSTEM]: Successfully logged in!");
        }
    }
        return 1;
}
    
public OnPlayerClickPlayer(playerid, clickedplayerid, source)
{
	return 1;
}
Reply
#7

Код HTML:
//===========================================================================================================
stock NewProx(playerid, color, string[], Float:radi)
{
	new Float:pposx, Float:pposy, Float:pposz;
	new Float:oldpposx, Float:oldpposy, Float:oldpposz;
	new Float:temppposx, Float:temppposy, Float:temppposz;

	GetPlayerPos(playerid, oldpposx, oldpposy, oldpposz);

	for(new i = 0; i < MAX_PLAYERS; i++)
	{
		if(IsPlayerConnected(i) && (GetPlayerVirtualWorld(playerid) == GetPlayerVirtualWorld(i)))
	{
	GetPlayerPos(i, pposx, pposy, pposz);
	temppposx = (oldpposx -pposx);
	temppposy = (oldpposy -pposy);
	temppposz = (oldpposz -pposz);
	if (((temppposx < radi) && (temppposx > -radi)) && ((temppposy < radi) && (temppposy > -radi)) && ((temppposz < radi) && (temppposz > -radi)))
	{
		SendClientMessage(i, color, string);
		}
	}
}
return 1;
}

stock RemoveUnderScore(playerid)
{
	new namewithoutunderscorename[MAX_PLAYER_NAME];
	GetPlayerName(playerid,namewithoutunderscorename,sizeof(namewithoutunderscorename));
	for(new i = 0; i < MAX_PLAYER_NAME; i++)
	{
		if(namewithoutunderscorename[i] == '_') namewithoutunderscorename[i] = ' ';
	}
	return namewithoutunderscorename;
}

    /////////////////////////////////////////////////////////////////////////////////////////////////////////////////

public OnPlayerPayDay(playerid)
{
	SendClientMessageToAll(COLOR_GREY,"_______[Payday]_______");
	SendClientMessageToAll(COLOR_GREY,"Sub-Total: 5600       ");
	SendClientMessageToAll(COLOR_GREY,"Taxes: -256           ");
	SendClientMessageToAll(COLOR_GREY,"Total: 5344           ");
	SendClientMessageToAll(COLOR_GREY,"______________________");
	GivePlayerMoney(playerid, 5344);
	return 1;
}
//============================================Forward Public's===============================================================
public EngineTimer(playerid)
{
	new rand = random(2);
 	if(rand == 0)
  	{
   		SendClientMessage(playerid, COLOR_GREEN, "Engine Started...");
     	SendClientMessage(playerid, COLOR_YELLOW, "To turn off the vehicle, Type (/engine)");
      	new vehicleid = GetPlayerVehicleID(playerid);
       	Engine[vehicleid] = 1;
       	TogglePlayerControllable(playerid, 1);
   	}
    if(rand == 1)
    {
    	SendClientMessage(playerid, COLOR_GREEN, "Engine Failed...");
     	SendClientMessage(playerid, COLOR_YELLOW, "Try Again");
    }
}

public ProxDetector(Float:radi, playerid, string[],col1)
{
	if(IsPlayerConnected(playerid))
	{
		new Float:posx, Float:posy, Float:posz;
		new Float:oldposx, Float:oldposy, Float:oldposz;
		new Float:tempposx, Float:tempposy, Float:tempposz;
		GetPlayerPos(playerid, oldposx, oldposy, oldposz);
		for(new i = 0; i < MAX_PLAYERS; i++)
		{
		if(IsPlayerConnected(i) && (GetPlayerVirtualWorld(playerid) == GetPlayerVirtualWorld(i)))
		{
		GetPlayerPos(i, posx, posy, posz);
		tempposx = (oldposx -posx);
		tempposy = (oldposy -posy);
		tempposz = (oldposz -posz);
		if (((tempposx < radi/16) && (tempposx > -radi/16)) && ((tempposy < radi/16) && (tempposy > -radi/16)) && ((tempposz < radi/16) && (tempposz > -radi/16)))
		{
		SendClientMessage(i, col1, string);
		}
		}
		else
		{
		SendClientMessage(i, col1, string);
		}
	}
}
return 1;
}

public SendCopsMessage(color, string[])
{
	for(new players=0; players<MAX_PLAYERS; players++)
	{
		if(PInfo[players][FACTION] == 1)
	{
	SendClientMessage(players,color,string);
	}
}
return 1;
}

public SendJobMessage(color, string[])
{
	for(new players=0; players<MAX_PLAYERS; players++)
	{
		if(PInfo[players][JOB] == 1)
	{
	SendClientMessage(players,color,string);
	}
}
return 1;
}

public SendAdminMessage(color, string[])
{
	for(new players=0; players<MAX_PLAYERS; players++)
	{
		if(PInfo[players][ADMINLEVEL] >= 1)
	{
	SendClientMessage(players,color,string);
	}
}
return 1;
}

public SetPlayerJailed(playerid)
{
	SetPlayerPos(playerid, 264.0470,77.4918,1001.0391);
	SetPlayerInterior(playerid, 6);
	SetTimerEx("OnPlayerJailed", time * 60000, false, "u", playerid);
	TogglePlayerControllable(playerid, true);
	IsTazed[playerid] = 0;
	WantedLevel[playerid] = 0;
	IsCuffed[playerid] = 0;
	SetPlayerWantedLevel(playerid, 0);
	return 1;
}

public OnPlayerHunger(playerid)
{
    new Float:health;
    GetPlayerHealth(playerid,health);
    if (health < 100.0)
    {
        SetPlayerHealth(playerid, 99.0);
    }
    else if (health < 99.0)
    {
        SetPlayerHealth(playerid, 98.0);
    }
    else if (health < 98.0)
    {
        SetPlayerHealth(playerid, 97.0);
    }
    else if (health < 97.0)
    {
        SetPlayerHealth(playerid, 96.0);
    }
    else if (health < 96.0)
    {
        SetPlayerHealth(playerid, 95.0);
    }
    else if (health < 95.0)
    {
        SetPlayerHealth(playerid, 94.0);
    }
    else if (health < 94.0)
    {
        SetPlayerHealth(playerid, 93.0);
    }
    else if (health < 93.0)
    {
        SetPlayerHealth(playerid, 92.0);
    }
    else if (health < 92.0)
    {
        SetPlayerHealth(playerid, 91.0);
    }
    else if (health < 91.0)
    {
        SetPlayerHealth(playerid, 90.0);
    }
    else if (health < 90.0)
    {
        SetPlayerHealth(playerid, 85.0);
    }
    else if (health < 85.0)
    {
        SetPlayerHealth(playerid, 80.0);
    }
    else if (health < 80.0)
    {
        SetPlayerHealth(playerid, 75.0);
    }
    else if (health < 75.0)
    {
        SetPlayerHealth(playerid, 70.0);
    }
    else if (health < 70.0)
    {
        SetPlayerHealth(playerid, 65.0);
    }
    else if (health < 65.0)
    {
        SetPlayerHealth(playerid, 60.0);
    }
    else if (health < 60.0)
    {
        SetPlayerHealth(playerid, 55.0);
    }
    else if (health < 55.0)
    {
        SetPlayerHealth(playerid, 50.0);
    }
    else if (health < 50.0)
    {
        SendClientMessage(playerid, COLOR_RED,"You notice you are getting very hungry, you better eat soon!");
        SetPlayerHealth(playerid, 40.0);
    }
    else if (health < 50.0)
    {
        SetPlayerHealth(playerid, 40.0);
    }
    else if (health < 40.0)
    {
        SetPlayerHealth(playerid, 30.0);
    }
    else if (health < 30.0)
    {
        SetPlayerHealth(playerid, 20.0);
    }
    else if (health < 20.0)
    {
        SetPlayerHealth(playerid, 10.0);
    }
    else if (health < 10.0)
    {
        SendClientMessage(playerid, COLOR_RED,"You are soo hungry that you are going to die soon!");
        SetPlayerHealth(playerid, 9.0);
    }
    else if (health < 9.0)
    {
        SetPlayerHealth(playerid, 8.0);
    }
    else if (health < 8.0)
    {
        SetPlayerHealth(playerid, 7.0);
    }
    else if (health < 7.0)
    {
        SetPlayerHealth(playerid, 6.0);
    }
    else if (health < 6.0)
    {
        SetPlayerHealth(playerid, 6.0);
    }
    else if (health < 5.0)
    {
        SetPlayerHealth(playerid, 6.0);
    }
    else if (health < 4.0)
    {
        SetPlayerHealth(playerid, 6.0);
    }
    else if (health < 3.0)
    {
        SetPlayerHealth(playerid, 6.0);
    }
    else if (health < 2.0)
    {
        SetPlayerHealth(playerid, 6.0);
    }
    else if (health < 1.0)
    {
        SetPlayerHealth(playerid, 0.0);
        OnPlayerDeath1(playerid);
    }
    return 1;
}

// House system
public OnPlayerEnterDynamicCP(playerid,checkpointid)
{
    for(new i = 0; i < MAX_HOUSES;i++)//Looping threw all houses.
    {
        if(checkpointid == HouseEnter[i])//Checking if the checkpoint id corresponds to one of the house interiors
        {
            new pName[24];//Creating the new var for the players name
            GetPlayerName(playerid,pName,24);//Storing the players name
            if(HInfo[i][Owned] == 1 && strcmp(HInfo[i][Owner],pName) == 0)//String comparing between the players name and the house owners name, to check if they match.
            {
                SetPVarInt(playerid,"PlayersInteriorHouse",GetPlayerInterior(playerid));//Storing, so later we can reset it back
                SetPVarInt(playerid,"PlayerVirtualWorldHouse",GetPlayerVirtualWorld(playerid));//Storing, so later we can reset it back
                SetPlayerInterior(playerid,12);//Setting the players interior.
                SetPlayerPos(playerid,446.7281,507.0475,1001.4195);//Setting the players position.
                SetPlayerVirtualWorld(playerid,HInfo[i][VirtualWorld]);//Preventing players from different houses, finding each other.
                PlayerInHouseID[playerid] = i;
            }
            if(HInfo[i][Owned] == 1 && strcmp(HInfo[i][Owner],pName) != 0)//Checking if the house is owned but the house owner and the players name don't match.
            {
                SendClientMessage(playerid,-1,"You don't own this house");
            }
            if(HInfo[i][Owned] == 0)//Simply checking if the house isn't owned.
            {
                SendClientMessage(playerid,-1,"/buy to buy this lovely house");
            }
        }
        if(checkpointid == HouseExit[i])//Checking if the checkpointid is an House exit
        {
            SetPlayerPos(playerid,HInfo[i][XPos]+3,HInfo[i][YPos],HInfo[i][ZPos]);//Setting the players position to checkpoint position +3
            SetPlayerInterior(playerid,GetPVarInt(playerid,"PlayersInteriorHouse"));//Setting the players interior to the one we stored
            SetPlayerVirtualWorld(playerid,GetPVarInt(playerid,"PlayerVirtualWorldHouse"));//Setting the players virtual world to the one we stored.
        }
    }
    return 1;
}

stock LoadHouses()//Creating the stock function
{
    new file[60],houseowner[24];//creating the "file" var. And also creating the "houseowner" var so we can store it, when we are reading the house owner ini line.
    for(new i = 0; i < MAX_HOUSES;i++)//Looping threw every house
    {
        format(file,sizeof(file),"RealityC/houses/%i.ini",i);//Opening the house file with the current selected number with "i".
        if(INI_Exist(file)) break;//Checking if the ini house file exist, if not to stop there.
        INI_Open(file);//Opening the house ini
        HInfo[i][Price] = INI_ReadInt("Price");//Reading the price.
        HInfo[i][Owned] = INI_ReadInt("Owned");//Reading if it's owned.
        HInfo[i][XPos] = INI_ReadInt("XPos");//Reading the X float position.
        HInfo[i][YPos] = INI_ReadInt("YPos");//Reading the Y float position.
        HInfo[i][ZPos] = INI_ReadInt("ZPos");//Reading the Z float position.
        HInfo[i][VirtualWorld] = INI_ReadInt("VirtualWorld");//Reading the virtual world.
        INI_ReadString(houseowner,"Owner");//Reading the house owner.
        format(HInfo[i][Owner],24,"%s",houseowner);//Formating the "Owner" house id value to the red one.
        HouseEnter[i]  = CreateDynamicCP(HInfo[i][XPos],HInfo[i][YPos],HInfo[i][ZPos],1.5,HInfo[i][VirtualWorld]);//Creating the checkpoint and storing it in the HouseEnter value.
        HouseExit[i] = CreateDynamicCP(443.9237,509.4609,1001.4195,1.5,HInfo[i][VirtualWorld]);//Creating the house exit checkpoint and storing it in the HouseExit value.
        new labelstring[100];//Creating the labelstring var.
        switch(HInfo[i][Owned])//Using the "switch" method to check if the house is owned
        {
            case 0:{format(labelstring,sizeof(labelstring),"Owned: No \nPrice: %i",HInfo[i][Price]);}//If it isnt...
            case 1:{format(labelstring,sizeof(labelstring),"Owned: Yes \nPrice: %i \nOwner: %s",HInfo[i][Owner]);}//If it is...
        }
        HInfo[i][HouseLabel] = Create3DTextLabel(labelstring,0xFF0000FF,HInfo[i][XPos],HInfo[i][YPos],HInfo[i][ZPos],25.0,HInfo[i][VirtualWorld]);//Creating the label with the formatted string.
        HouseCount++;//+ counting the HouseCount var.
        INI_Close();//Closing the SII file.
    }
    return 1;
}

stock PlayerName2(playerid)
{
	new name[MAX_PLAYER_NAME];
  	GetPlayerName(playerid, name, sizeof(name));
  	return name;
}


// Random Messages
public SendMSG()
{
    new randMSG = random(sizeof(RandomMSG));
    SendClientMessageToAll(COLOR_BLUE, RandomMSG[randMSG]); // Replace the "COLOR" with your defined color.
}
// Create Explosion
public OnPlayerExplosion(playerid)
{
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
Reply
#8

Код HTML:
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
        CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
	CreateExplosion(-180.5244,1063.2865,19.7422, 2, 15.0);
	CreateExplosion(-185.3837,1063.4523,19.7422, 1, 15.0);
	CreateExplosion(-184.6534,1057.5887,19.7422, 3, 15.0);
	CreateExplosion(-184.5921,1051.8149,19.7422, 4, 15.0);
	CreateExplosion(-200.5767,1122.4541,19.7422, 2, 15.0);
	CreateExplosion(-175.7749,1056.9453,24.2403, 1, 15.0);
	CreateExplosion(-169.2111,1055.4216,24.2403, 3, 15.0);
	CreateExplosion(-169.9743,1062.8048,24.2403, 4, 15.0);
    SendClientMessageToAll(COLOR_RED,"SAN NEWS UPDATE: There has been a fire report at the 24/7 store, citizens please stay away!");
}

strtok(const string[], &index)
{
    new length = strlen(string);
    while ((index < length) && (string[index] <= ' '))
    {
        index++;
    }

    new offset = index;
    new result[20];
    while ((index < length) && (string[index] > ' ') && ((index - offset) < (sizeof(result) - 1)))
    {
        result[index - offset] = string[index];
        index++;
    }
    result[index - offset] = EOS;
    return result;
}
Reply
#9

sorry .. so many i post .. because the script is to long ..
(sorry for my bad English )
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)