Доступ к готовым решениям

Переход в группу "Пользователь"

300.00
Одноразовый платёж
Быстрый переход в группу "Пользователи", без надобности написания постов и ожидания.

Покупка дает возможность:
Быть полноправным участником форума
Нормальное копирование кода
Создавать темы
Скачивать файлы
Доступ к архиву Pawno-Info

Мануал Counter-Strike 1.6 (de_dust2) | by Leo

JIEON_COJIORS

Изучающий
Пользователь
Регистрация
27 Авг 2015
Сообщения
357
Лучшие ответы
0
Репутация
188
Сливаю вам систему, которую продавал!


PHP:
#include <a_samp>
#include <foreach>
#include <streamer>

new RumTeam[MAX_PLAYERS char];

new Text:ChooseTeam[6];
new Text:RumInfo[7];
new RumPlayers,
    TeamKills[2],
    TeamPlayers[2],
    RumTimer;

public OnPlayerDisconnect(playerid, reason)
{
	if(RumTeam{playerid} > 0)
	{
	   	RumPlayers--;
		TeamPlayers[RumTeam{playerid}-1]--;
	}
	return 1;
}

public OnPlayerClickTextDraw(playerid, Text:clickedid)
{
    if(clickedid == Text:INVALID_TEXT_DRAW)
    {
		if(GetPVarInt(playerid,"ChooseTeam"))
		{
			DeletePVar(playerid,"ChooseTeam");
		    for(new i; i < 7; i++) TextDrawHideForPlayer(playerid, RumInfo[i]);
		    for(new i; i < 6; i++) TextDrawHideForPlayer(playerid, ChooseTeam[i]);
		}
	}
	if(clickedid == ChooseTeam[2]) //Терорист
	{
		if(TeamPlayers[0] >= 5) return SendClientMessage(playerid, 0xFF0000FF, "Это команда полна!");
		DeletePVar(playerid,"ChooseTeam");
		TeamPlayers[0]++;
		RumTeam{playerid} = 1;
		DeletePVar(playerid,"CamPos");
	    for(new i; i < 6; i++) TextDrawHideForPlayer(playerid, ChooseTeam[i]);
	    CancelSelectTextDraw(playerid);
	    RumPlayers++;
		SpawnPlayer(playerid);
	}
	if(clickedid == ChooseTeam[3]) //CT
	{
	    if(TeamPlayers[1] >= 5) return SendClientMessage(playerid, 0xFF0000FF, "Это команда полна!");
	    DeletePVar(playerid,"ChooseTeam");
	    TeamPlayers[1]++;
	    RumTeam{playerid} = 2;
	    DeletePVar(playerid,"CamPos");
	    for(new i; i < 6; i++) TextDrawHideForPlayer(playerid, ChooseTeam[i]);
	    CancelSelectTextDraw(playerid);
	    RumPlayers++;
	    SpawnPlayer(playerid);
	}
	return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
	new idx;
	new cmd[256];

	cmd = strtok(cmdtext, idx);
	
	if(strcmp(cmd,"/exitrum",true) == 0)
	{
		if(RumTeam{playerid} == 0) return SendClientMessage(playerid, 0xFF0000FF, "Вы не находитесь в комнате!");
	    RumPlayers--;
		TeamPlayers[RumTeam{playerid}-1]--;
		RumTeam{playerid} = 0;
		ResetPlayerWeapons(playerid);
		for(new i; i < 7; i++) TextDrawHideForPlayer(playerid, RumInfo[i]);
		SpawnPlayer(playerid);
		SendClientMessage(playerid, 0xFF0000FF, "{dc143c}Вы вышли из игроков комнаты!");
	}
	if(strcmp(cmd,"/gameclub",true) == 0)
	{
		if(RumTeam{playerid} > 0) return SendClientMessage(playerid, 0xFF0000FF, "Вы уже находитесь в игре, используйте /exitrum, чтобы выйти!");
		if(RumPlayers >= 10) return SendClientMessage(playerid, 0xFF0000FF, "Игровая комната заполнена!");

		SetPlayerVirtualWorld(playerid, 30);
		SetPlayerPos(playerid,577.6287,3664.3755,98.0277);

		SetPlayerCameraPos(playerid,CAMPOSRUM[random(2)][0],CAMPOSRUM[random(2)][1],CAMPOSRUM[random(2)][2]);
		SetPlayerCameraLookAt(playerid,CAMPOSRUM[random(2)][3],CAMPOSRUM[random(2)][4],CAMPOSRUM[random(2)][5]);

		SetPVarInt(playerid,"CamPos",3);
	    for(new i; i < 7; i++) TextDrawShowForPlayer(playerid, RumInfo[i]);
	    for(new i; i < 6; i++) TextDrawShowForPlayer(playerid, ChooseTeam[i]);

		SelectTextDraw(playerid, 0x22222290);
		SetPVarInt(playerid,"ChooseTeam",true);

		SendClientMessage(playerid, 0xFF0000FF, "{dc143c}Используйте /exitrum, чтобы выйти из игры!");
	}
	return 0;
}

public OnPlayerSpawn(playerid)
{
	if(RumTeam{playerid} > 0)
	{
	    SetPlayerHealth(playerid, 100);
	    switch(RumTeam{playerid})
	    {
	        case 1:
	        {
	            SetPlayerSkin(playerid,144);
        		SetPlayerPos(playerid, GCPOSTEAM1[random(2)][0],GCPOSTEAM1[random(2)][1],GCPOSTEAM1[random(2)][2]);
				SetPlayerFacingAngle(playerid, GCPOSTEAM1[random(2)][3]);
	        }
	        case 2:
	        {
	            SetPlayerSkin(playerid,285);
				SetPlayerPos(playerid, GCPOSTEAM2[random(2)][0],GCPOSTEAM2[random(2)][1],GCPOSTEAM2[random(2)][2]);
				SetPlayerFacingAngle(playerid, GCPOSTEAM2[random(2)][3]);
	        }
		}
	    TogglePlayerControllable(playerid, false);
		SetTimerEx("@PlayerToggle", (GetPlayerPing(playerid)>100?(3500):(2000)), false, "d", playerid);

		GivePlayerWeapon(playerid, 24, 100);
		GivePlayerWeapon(playerid, 31, 200);
		SetPlayerVirtualWorld(playerid, 30);
	}
	return 1;
}
@PlayerToggle(playerid);
@PlayerToggle(playerid)
{
	TogglePlayerControllable(playerid, true);
	ClearAnimations(playerid);
	return 1;
}
public OnPlayerDeath(playerid, killerid, reason)
{
	if(killerid != INVALID_PLAYER_ID && RumTeam{killerid} != 0 && RumTeam{playerid} != 0 && RumTeam{killerid} != RumTeam{playerid})
	{
		TeamKills[RumTeam{playerid}-1]++;
	}
   	return 1;
}

forward GrandTimer();
public GrandTimer()
{
	if(RumTimer > 0)
	{
        RumTimer--;
        UpdateRum();
		if(RumTimer <= 0)
		{
		    RumTimer = 600;
		    foreach(new i : Player)
		    {
				if(RumTeam{i} > 0)
    			{
					SpawnPlayer(i);
     				if(TeamKills[0] > TeamKills[1]) GameTextForPlayer(i, "~r~TERRORISTS WIN", 1000, 4);
		        	if(TeamKills[1] > TeamKills[0]) GameTextForPlayer(i, "~b~COUNTER-TERRORIST WIN", 1000, 4);
		        	if(TeamKills[1] == TeamKills[0]) GameTextForPlayer(i, "The round ended in a~g~ draw", 1000, 4);
				}
		    }
	    	TeamKills[0] = 0;
		    TeamKills[1] = 0;
		    UpdateRum();
		}
	}
    foreach(new i : Player)
	{
		if(GetPVarInt(i,"CamPos") > 0)
		{
		    SetPVarInt(i,"CamPos",GetPVarInt(i,"CamPos") - 1);
		    if(GetPVarInt(i,"CamPos") <= 0)
		    {
				SetPlayerCameraPos(i,CAMPOSRUM[random(2)][0],CAMPOSRUM[random(2)][1],CAMPOSRUM[random(2)][2]);
				SetPlayerCameraLookAt(i,CAMPOSRUM[random(2)][3],CAMPOSRUM[random(2)][4],CAMPOSRUM[random(2)][5]);

				SetPVarInt(i,"CamPos",3);
			}
		}
	}
	return SetTimer("GrandTimer", 1000, false);
}
stock UpdateRum()
{
	new str[24];
	format(str,sizeof(str),"C-terrorists(%d)",TeamPlayers[1]);
	TextDrawSetString(RumInfo[3], str);
	format(str,sizeof(str),"terrorists(%d)",TeamPlayers[0]);
	TextDrawSetString(RumInfo[4], str);
	valstr(str,TeamKills[0]);
	TextDrawSetString(RumInfo[6], str);
	valstr(str,TeamKills[1]);
	TextDrawSetString(RumInfo[5], str);
	Convert(RumTimer, str);
	TextDrawSetString(RumInfo[1], str);
}


stock Convert(seconds, stringTo[], size = sizeof(stringTo))
{
	stringTo[0] = 0x0;
	new result[4];
	result[0] = floatround(seconds / (3600 * 24));
	result[1] = floatround(seconds / 3600);
	result[2] = floatround((seconds / 60) - (result[1] * 60));
	result[3] = floatround(seconds - ((result[1] * 3600) + (result[2] * 60)));
	switch(result[0])
	{
		case 0:
		{
			switch(result[1])
			{
				case 0: format(stringTo,size,"%02d:%02d",result[2],result[3]);
				default: format(stringTo,size,"%d:%02d:%02d",result[1],result[2],result[3]);
			}
		}
	}
	return stringTo;
}

public OnGameModeInit()
{

    RumTimer = 600;
	SetTimer("GrandTimer", 1000, false);

	RumInfo[0] = TextDrawCreate(190.000000, 401.012481, "LD_SPAC:white");
	TextDrawLetterSize(RumInfo[0], 0.000000, 0.000000);
	TextDrawTextSize(RumInfo[0], 254.000000, -13.759994);
	TextDrawAlignment(RumInfo[0], 1);
	TextDrawColor(RumInfo[0], 572662527);
	TextDrawSetShadow(RumInfo[0], 0);
	TextDrawSetOutline(RumInfo[0], 0);
	TextDrawBackgroundColor(RumInfo[0], 255);
	TextDrawFont(RumInfo[0], 4);
	TextDrawSetProportional(RumInfo[0], 0);
	TextDrawSetShadow(RumInfo[0], 0);

	RumInfo[1] = TextDrawCreate(315.999969, 385.662506, "09:19");
	TextDrawLetterSize(RumInfo[1], 0.331499, 1.626250);
	TextDrawAlignment(RumInfo[1], 2);
	TextDrawColor(RumInfo[1], -1);
	TextDrawSetShadow(RumInfo[1], 0);
	TextDrawSetOutline(RumInfo[1], 0);
	TextDrawBackgroundColor(RumInfo[1], 255);
	TextDrawFont(RumInfo[1], 2);
	TextDrawSetProportional(RumInfo[1], 1);
	TextDrawSetShadow(RumInfo[1], 0);

	RumInfo[2] = TextDrawCreate(295.399993, 399.862518, "LD_SPAC:white");
	TextDrawLetterSize(RumInfo[2], 0.000000, 0.000000);
	TextDrawTextSize(RumInfo[2], 41.000000, 0.549999);
	TextDrawAlignment(RumInfo[2], 1);
	TextDrawColor(RumInfo[2], 0x1A4972FF);
	TextDrawSetShadow(RumInfo[2], 0);
	TextDrawSetOutline(RumInfo[2], 0);
	TextDrawBackgroundColor(RumInfo[2], 255);
	TextDrawFont(RumInfo[2], 4);
	TextDrawSetProportional(RumInfo[2], 0);
	TextDrawSetShadow(RumInfo[2], 0);

	RumInfo[3] = TextDrawCreate(225.500000, 389.062500, "c-terrorists(5)");
	TextDrawLetterSize(RumInfo[3], 0.194000, 1.079375);
	TextDrawAlignment(RumInfo[3], 1);
	TextDrawColor(RumInfo[3], -1);
	TextDrawSetShadow(RumInfo[3], 0);
	TextDrawSetOutline(RumInfo[3], 0);
	TextDrawBackgroundColor(RumInfo[3], 255);
	TextDrawFont(RumInfo[3], 2);
	TextDrawSetProportional(RumInfo[3], 1);
	TextDrawSetShadow(RumInfo[3], 0);

	RumInfo[4] = TextDrawCreate(347.500000, 389.062500, "terrorists(5)");
	TextDrawLetterSize(RumInfo[4], 0.194000, 1.079375);
	TextDrawAlignment(RumInfo[4], 1);
	TextDrawColor(RumInfo[4], -1);
	TextDrawSetShadow(RumInfo[4], 0);
	TextDrawSetOutline(RumInfo[4], 0);
	TextDrawBackgroundColor(RumInfo[4], 255);
	TextDrawFont(RumInfo[4], 2);
	TextDrawSetProportional(RumInfo[4], 1);
	TextDrawSetShadow(RumInfo[4], 0);

	RumInfo[5] = TextDrawCreate(204.000000, 389.062500, "40");
	TextDrawLetterSize(RumInfo[5], 0.347499, 1.110000);
	TextDrawTextSize(RumInfo[5], 0.000000, 24.000000);
	TextDrawAlignment(RumInfo[5], 2);
	TextDrawColor(RumInfo[5], -1);
	TextDrawUseBox(RumInfo[5], 1);
	TextDrawBoxColor(RumInfo[5], 0x1A4972FF);
	TextDrawSetShadow(RumInfo[5], 0);
	TextDrawSetOutline(RumInfo[5], 0);
	TextDrawBackgroundColor(RumInfo[5], 255);
	TextDrawFont(RumInfo[5], 2);
	TextDrawSetProportional(RumInfo[5], 1);
	TextDrawSetShadow(RumInfo[5], 0);

	RumInfo[6] = TextDrawCreate(430.000000, 389.062500, "40");
	TextDrawLetterSize(RumInfo[6], 0.347499, 1.110000);
	TextDrawTextSize(RumInfo[6], 0.000000, 24.000000);
	TextDrawAlignment(RumInfo[6], 2);
	TextDrawColor(RumInfo[6], -1);
	TextDrawUseBox(RumInfo[6], 1);
	TextDrawBoxColor(RumInfo[6], 0x1A4972FF);
	TextDrawSetShadow(RumInfo[6], 0);
	TextDrawSetOutline(RumInfo[6], 0);
	TextDrawBackgroundColor(RumInfo[6], 255);
	TextDrawFont(RumInfo[6], 2);
	TextDrawSetProportional(RumInfo[6], 1);
	TextDrawSetShadow(RumInfo[6], 0);

	ChooseTeam[0] = TextDrawCreate(320.300018, 141.000000, "CHOOSE YOUR TEAM");
	TextDrawLetterSize(ChooseTeam[0], 0.254000, 0.943750);
	TextDrawTextSize(ChooseTeam[0], 0.000000, 179.000000);
	TextDrawAlignment(ChooseTeam[0], 2);
	TextDrawColor(ChooseTeam[0], -1);
	TextDrawUseBox(ChooseTeam[0], 1);
	TextDrawBoxColor(ChooseTeam[0], 0x1A4972FF);
	TextDrawSetShadow(ChooseTeam[0], 0);
	TextDrawSetOutline(ChooseTeam[0], 0);
	TextDrawBackgroundColor(ChooseTeam[0], 255);
	TextDrawFont(ChooseTeam[0], 2);
	TextDrawSetProportional(ChooseTeam[0], 1);
	TextDrawSetShadow(ChooseTeam[0], 0);

	ChooseTeam[1] = TextDrawCreate(229.000000, 151.062500, "LD_SPAC:white");
	TextDrawLetterSize(ChooseTeam[1], 0.000000, 0.000000);
	TextDrawTextSize(ChooseTeam[1], 183.000000, 124.000000);
	TextDrawAlignment(ChooseTeam[1], 1);
	TextDrawColor(ChooseTeam[1], 0x1A4972FF);
	TextDrawSetShadow(ChooseTeam[1], 0);
	TextDrawSetOutline(ChooseTeam[1], 0);
	TextDrawBackgroundColor(ChooseTeam[1], 255);
	TextDrawFont(ChooseTeam[1], 4);
	TextDrawSetProportional(ChooseTeam[1], 0);
	TextDrawSetShadow(ChooseTeam[1], 0);

	ChooseTeam[2] = TextDrawCreate(231.000000, 151.500000, "");
	TextDrawLetterSize(ChooseTeam[2], 0.000000, 0.000000);
	TextDrawTextSize(ChooseTeam[2], 89.000000, 109.000000);
	TextDrawAlignment(ChooseTeam[2], 1);
	TextDrawColor(ChooseTeam[2], -1);
	TextDrawSetShadow(ChooseTeam[2], 0);
	TextDrawSetOutline(ChooseTeam[2], 0);
	TextDrawBackgroundColor(ChooseTeam[2], 572662527);
	TextDrawFont(ChooseTeam[2], 5);
	TextDrawSetProportional(ChooseTeam[2], 0);
	TextDrawSetShadow(ChooseTeam[2], 0);
	TextDrawSetSelectable(ChooseTeam[2], true);
	TextDrawSetPreviewModel(ChooseTeam[2], 144);
	TextDrawSetPreviewRot(ChooseTeam[2], 0.000000, 0.000000, 0.000000, 1.000000);

	ChooseTeam[3] = TextDrawCreate(321.000000, 151.500000, "");
	TextDrawLetterSize(ChooseTeam[3], 0.000000, 0.000000);
	TextDrawTextSize(ChooseTeam[3], 89.000000, 109.000000);
	TextDrawAlignment(ChooseTeam[3], 1);
	TextDrawColor(ChooseTeam[3], -1);
	TextDrawSetShadow(ChooseTeam[3], 0);
	TextDrawSetOutline(ChooseTeam[3], 0);
	TextDrawBackgroundColor(ChooseTeam[3], 572662527);
	TextDrawFont(ChooseTeam[3], 5);
	TextDrawSetProportional(ChooseTeam[3], 0);
	TextDrawSetShadow(ChooseTeam[3], 0);
	TextDrawSetSelectable(ChooseTeam[3], true);
	TextDrawSetPreviewModel(ChooseTeam[3], 285);
	TextDrawSetPreviewRot(ChooseTeam[3], 0.000000, 0.000000, 0.000000, 1.000000);

	ChooseTeam[4] = TextDrawCreate(275.500000, 262.187500, "terrorists");
	TextDrawLetterSize(ChooseTeam[4], 0.217500, 0.917499);
	TextDrawTextSize(ChooseTeam[4], 0.000000, 85.000000);
	TextDrawAlignment(ChooseTeam[4], 2);
	TextDrawColor(ChooseTeam[4], -1);
	TextDrawUseBox(ChooseTeam[4], 1);
	TextDrawBoxColor(ChooseTeam[4], 572662527);
	TextDrawSetShadow(ChooseTeam[4], 0);
	TextDrawSetOutline(ChooseTeam[4], 0);
	TextDrawBackgroundColor(ChooseTeam[4], 255);
	TextDrawFont(ChooseTeam[4], 2);
	TextDrawSetProportional(ChooseTeam[4], 1);
	TextDrawSetShadow(ChooseTeam[4], 0);

	ChooseTeam[5] = TextDrawCreate(365.500000, 262.187500, "c-terrorists");
	TextDrawLetterSize(ChooseTeam[5], 0.217500, 0.917499);
	TextDrawTextSize(ChooseTeam[5], 0.000000, 85.000000);
	TextDrawAlignment(ChooseTeam[5], 2);
	TextDrawColor(ChooseTeam[5], -1);
	TextDrawUseBox(ChooseTeam[5], 1);
	TextDrawBoxColor(ChooseTeam[5], 572662527);
	TextDrawSetShadow(ChooseTeam[5], 0);
	TextDrawSetOutline(ChooseTeam[5], 0);
	TextDrawBackgroundColor(ChooseTeam[5], 255);
	TextDrawFont(ChooseTeam[5], 2);
	TextDrawSetProportional(ChooseTeam[5], 1);
	TextDrawSetShadow(ChooseTeam[5], 0);
	
	CreateDynamicObject(19544, 577.13898, 3666.90063, 99.22770,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(19544, 553.08484, 3705.62378, 99.22768,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(19544, 613.64008, 3705.53149, 88.55770,   20.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(19544, 613.17578, 3705.50635, 94.82642,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(19544, 600.48743, 3656.82300, 84.13010,   20.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(19544, 600.48370, 3717.39771, 94.80640,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(19544, 599.04846, 3646.69873, 90.70836,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3798, 595.47467, 3699.09082, 95.13010,   0.00000, 20.00000, 0.00000, 30);
	CreateDynamicObject(3798, 590.54590, 3696.92017, 98.52236,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(11427, 583.93939, 3675.78760, 105.59780,   0.00000, 0.00000, 180.00000, 30);
	CreateDynamicObject(11444, 580.87189, 3686.81104, 98.54480,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(19455, 593.01770, 3698.01050, 97.69390,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(19455, 597.76801, 3693.25952, 97.69390,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(19455, 593.01770, 3698.01050, 94.21270,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(19455, 597.76801, 3693.25952, 94.20610,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3095, 593.20557, 3693.43774, 98.02551,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3095, 593.20563, 3692.93774, 98.02590,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3095, 584.22559, 3692.95776, 98.02590,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3095, 584.20563, 3693.43774, 98.02550,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(19455, 589.39771, 3698.01099, 97.69390,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(19455, 594.43073, 3683.69922, 97.69390,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(19455, 596.10071, 3688.51270, 94.63390,   90.00000, 90.00000, 0.00000, 30);
	CreateDynamicObject(14411, 586.84375, 3695.89478, 96.01570,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(14411, 586.84381, 3693.73486, 96.01540,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(3798, 580.62567, 3692.78979, 99.15190,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3798, 596.68420, 3689.59204, 98.52236,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3798, 596.68420, 3691.57202, 98.52240,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3798, 596.68420, 3689.59204, 100.52240,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(2988, 579.59052, 3707.05908, 99.21840,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(2988, 579.59052, 3698.67456, 99.21840,   0.00000, 0.00000, 180.00000, 30);
	CreateDynamicObject(19455, 594.43073, 3683.69922, 94.20539,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(19455, 580.84857, 3691.87402, 97.43390,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(19455, 594.43073, 3674.07910, 97.69390,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(19455, 594.43073, 3674.07910, 94.20540,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(19455, 594.43073, 3674.07910, 90.72560,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(19455, 594.43073, 3683.69922, 90.73150,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(11440, 618.58502, 3691.24048, 94.33840,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(11440, 613.42725, 3684.78760, 94.33840,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(19544, 673.75598, 3705.55103, 84.14590,   20.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(3798, 608.38641, 3711.78638, 94.81960,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3798, 608.38641, 3711.78638, 96.77957,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3798, 608.38641, 3709.84644, 94.81960,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3798, 608.38641, 3709.84644, 96.77960,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(621, 605.30457, 3711.83618, 85.49930,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(621, 584.81335, 3682.51270, 89.92590,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(11456, 624.27051, 3723.45435, 98.23210,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(11456, 624.25049, 3723.43433, 101.12340,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(19544, 670.39740, 3715.09009, 95.30300,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(14409, 641.34479, 3705.55664, 92.09870,   0.00000, 0.00000, 180.00000, 30);
	CreateDynamicObject(19455, 648.18115, 3707.66040, 94.57137,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(19455, 648.18115, 3707.66040, 91.09998,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(19455, 643.30511, 3711.54395, 93.50700,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(19455, 639.36511, 3711.54395, 93.50700,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(621, 580.02979, 3695.98608, 89.92590,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(8620, 651.88721, 3703.03540, 114.21860,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(19455, 657.78119, 3707.66040, 94.57140,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(19455, 657.78119, 3707.66040, 91.10000,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(19455, 648.18121, 3698.56128, 93.89050,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(19455, 650.36121, 3698.56177, 93.89050,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(19455, 650.36121, 3698.56177, 90.40640,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(2988, 654.78918, 3706.79639, 91.03890,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(2988, 654.80182, 3698.61108, 91.05882,   0.00000, 0.00000, 180.00000, 30);
	CreateDynamicObject(3798, 650.87518, 3706.65210, 92.07881,   0.00000, 20.00000, 0.00000, 30);
	CreateDynamicObject(3798, 651.31769, 3706.66138, 93.27690,   0.00000, 20.00000, 0.00000, 30);
	CreateDynamicObject(8643, 577.18890, 3717.78784, 98.12300,   0.00000, 0.00000, 180.00000, 30);
	CreateDynamicObject(8643, 559.68622, 3697.81738, 98.12300,   0.00000, 0.00000, 180.00000, 30);
	CreateDynamicObject(8643, 564.61743, 3681.84033, 98.12300,   0.00000, 0.00000, 180.00000, 30);
	CreateDynamicObject(8643, 594.32617, 3722.74463, 98.12300,   0.00000, 0.00000, 180.00000, 30);
	CreateDynamicObject(8643, 633.23071, 3722.17114, 98.12300,   0.00000, 0.00000, 180.00000, 30);
	CreateDynamicObject(8643, 649.04102, 3730.27148, 98.64270,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(8643, 629.38263, 3727.66382, 98.12300,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(8643, 619.34259, 3727.66382, 98.12300,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(8643, 614.98138, 3687.99878, 84.74840,   0.00000, 90.00000, 180.00000, 30);
	CreateDynamicObject(3798, 648.62634, 3709.83569, 95.23351,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(19544, 664.74933, 3690.83057, 94.82642,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(19455, 599.15509, 3669.33447, 97.69390,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(19455, 608.71509, 3669.33447, 97.69390,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(8643, 573.05530, 3652.50757, 98.12300,   0.00000, 0.00000, 180.00000, 30);
	CreateDynamicObject(8643, 564.67542, 3662.10986, 98.12300,   0.00000, 0.00000, 180.00000, 30);
	CreateDynamicObject(8643, 574.46008, 3659.98413, 92.38287,   0.00000, 0.00000, 180.00000, 30);
	CreateDynamicObject(19455, 595.93622, 3669.31982, 91.23350,   90.00000, 90.00000, 0.00000, 30);
	CreateDynamicObject(3798, 594.96265, 3669.86230, 91.58252,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3798, 595.49298, 3670.38159, 90.19299,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3798, 595.49298, 3672.34155, 90.19300,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(621, 594.88843, 3687.56372, 85.49930,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3798, 595.41272, 3668.25488, 91.58252,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3798, 595.41272, 3668.25488, 89.71841,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(8643, 626.92462, 3687.97803, 84.74840,   0.00000, 90.00000, 180.00000, 30);
	CreateDynamicObject(8643, 623.61572, 3691.88794, 84.74840,   0.00000, 90.00000, 90.00000, 30);
	CreateDynamicObject(8643, 615.25385, 3691.18652, 84.74840,   0.00000, 90.00000, 270.00000, 30);
	CreateDynamicObject(8643, 611.34137, 3687.99829, 84.74840,   0.00000, 90.00000, 180.00000, 30);
	CreateDynamicObject(621, 633.86078, 3698.24805, 85.49930,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(11440, 625.73572, 3684.70264, 94.33840,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(9339, 605.96667, 3685.24707, 91.60370,   90.00000, 90.00000, -180.00000, 30);
	CreateDynamicObject(8643, 615.22882, 3674.51855, 84.74840,   0.00000, 90.00000, 270.00000, 30);
	CreateDynamicObject(9339, 605.95459, 3681.05200, 91.60370,   90.00000, 90.00000, -180.00000, 30);
	CreateDynamicObject(8643, 615.20758, 3666.22949, 76.25652,   0.00000, 90.00000, 270.00000, 30);
	CreateDynamicObject(14411, 619.68042, 3664.41553, 95.37540,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(19455, 617.77094, 3671.17773, 97.69390,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(19455, 612.99512, 3669.33472, 97.69390,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(3798, 605.87201, 3668.27588, 98.52294,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3798, 605.87201, 3668.27588, 100.36332,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3798, 607.81201, 3668.27588, 98.52290,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3798, 607.81201, 3668.27588, 100.36330,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(621, 585.18951, 3662.75708, 89.92590,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(11444, 580.86859, 3666.69165, 98.54480,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(3095, 613.33044, 3666.79297, 98.02590,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3095, 621.28369, 3665.37573, 96.45358,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3095, 604.36389, 3664.76929, 98.02590,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3095, 595.39551, 3664.81958, 98.02590,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3095, 589.84741, 3683.97192, 98.02590,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3095, 589.98920, 3674.96509, 98.02590,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3095, 589.90912, 3666.92847, 98.02550,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3095, 580.96619, 3666.30933, 98.02550,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3095, 581.03485, 3677.36792, 98.02590,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3095, 580.84534, 3684.36621, 98.02590,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(11427, 594.90942, 3661.93408, 105.59780,   0.00000, 0.00000, 270.00000, 30);
	CreateDynamicObject(19455, 621.12323, 3662.55200, 94.62770,   30.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(3095, 621.28369, 3656.39746, 96.45360,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(19455, 605.24573, 3667.65820, 93.40249,   90.00000, 90.00000, 90.00000, 30);
	CreateDynamicObject(19455, 605.24573, 3664.17822, 93.40250,   90.00000, 90.00000, 90.00000, 30);
	CreateDynamicObject(19455, 605.24573, 3660.69141, 93.40250,   90.00000, 90.00000, 90.00000, 30);
	CreateDynamicObject(19455, 605.24573, 3657.20337, 93.40250,   90.00000, 90.00000, 90.00000, 30);
	CreateDynamicObject(19455, 605.24573, 3653.72925, 93.40250,   90.00000, 90.00000, 90.00000, 30);
	CreateDynamicObject(19455, 603.45538, 3664.58228, 96.04970,   0.00000, 90.00000, 0.00000, 30);
	CreateDynamicObject(19455, 599.97540, 3664.58228, 96.04970,   0.00000, 90.00000, 0.00000, 30);
	CreateDynamicObject(19455, 596.49542, 3664.58228, 96.04970,   0.00000, 90.00000, 0.00000, 30);
	CreateDynamicObject(19455, 621.11578, 3666.44458, 94.62770,   30.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(985, 604.02393, 3662.76636, 97.53800,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(985, 611.85559, 3662.76636, 97.53800,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(985, 613.83142, 3662.76636, 97.53800,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(985, 617.74908, 3658.84155, 97.53800,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(985, 580.64807, 3691.78906, 99.97100,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(985, 579.63599, 3695.70215, 99.97100,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(19455, 604.98090, 3662.75806, 100.27042,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(19455, 612.97119, 3662.75806, 100.27040,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(19455, 617.70422, 3657.98999, 100.29038,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(19455, 617.70422, 3657.98999, 96.83402,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(19455, 617.70477, 3656.75000, 100.29040,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(19455, 617.70477, 3656.75000, 96.83400,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(985, 617.74908, 3655.90161, 97.54406,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(2988, 654.45978, 3679.87622, 94.72040,   0.00000, 0.00000, 180.00000, 30);
	CreateDynamicObject(2988, 654.63397, 3689.05200, 94.40510,   0.00000, 0.00000, -25.74000, 30);
	CreateDynamicObject(19544, 664.70117, 3676.06665, 94.82642,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(19544, 632.06964, 3658.85718, 97.00670,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(19455, 649.90613, 3689.00928, 96.41440,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(11440, 641.86035, 3723.60229, 94.33840,   0.00000, 0.00000, -180.00000, 30);
	CreateDynamicObject(10631, 635.11047, 3668.26440, 98.74278,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(8643, 623.58746, 3679.20435, 84.74840,   0.00000, 90.00000, 90.00000, 30);
	CreateDynamicObject(10631, 643.35529, 3669.77637, 98.74280,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(19455, 649.90613, 3689.00928, 99.87950,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(19455, 654.76123, 3702.86963, 95.59713,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(19455, 654.76123, 3702.86963, 92.14883,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(11444, 649.13507, 3686.65576, 98.54480,   0.00000, 0.00000, 270.00000, 30);
	CreateDynamicObject(8643, 664.73352, 3708.86035, 98.64270,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(2991, 653.87463, 3691.06152, 95.37743,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(2991, 653.87457, 3694.94141, 95.37740,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(2991, 653.87463, 3691.06152, 96.57330,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(2991, 653.87457, 3694.94141, 96.57330,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(2991, 653.87463, 3691.06152, 97.79906,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(2991, 653.87457, 3694.94141, 97.79910,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(2991, 651.96790, 3691.02808, 95.37743,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(2991, 651.98468, 3694.96777, 95.37740,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(2991, 651.96790, 3691.02808, 96.57330,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(2991, 651.98468, 3694.96777, 96.57330,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(19455, 649.90613, 3679.90918, 99.87950,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(11444, 649.13507, 3682.07568, 98.54480,   0.00000, 0.00000, 270.00000, 30);
	CreateDynamicObject(2991, 651.96790, 3691.02808, 97.79910,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(2991, 651.98468, 3694.96777, 97.79910,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(19455, 649.90613, 3679.90918, 96.41440,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(19455, 645.24829, 3680.63330, 94.05827,   90.00000, 90.00000, 90.00000, 30);
	CreateDynamicObject(10631, 642.15527, 3669.79639, 98.74280,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(19436, 645.16656, 3688.28906, 96.81567,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(19436, 645.16656, 3688.28906, 93.34292,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3798, 646.19568, 3688.08813, 94.73790,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(19436, 645.16693, 3687.40918, 96.81570,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(19436, 645.16693, 3687.40918, 93.33150,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3798, 646.19568, 3688.08813, 96.68751,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(11444, 650.61511, 3682.07568, 98.54480,   0.00000, 0.00000, 270.00000, 30);
	CreateDynamicObject(11444, 650.61511, 3686.65576, 98.54480,   0.00000, 0.00000, 270.00000, 30);
	CreateDynamicObject(8643, 672.28693, 3653.28442, 98.64270,   0.00000, 0.00000, -90.00000, 30);
	CreateDynamicObject(8643, 612.33972, 3641.98022, 98.64270,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(8643, 652.07147, 3641.98022, 98.64270,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(14411, 656.52802, 3668.19727, 93.79800,   0.00000, 0.00000, 180.00000, 30);
	CreateDynamicObject(14411, 660.48798, 3668.19727, 93.79800,   0.00000, 0.00000, 180.00000, 30);
	CreateDynamicObject(19455, 596.49542, 3654.98242, 96.04970,   0.00000, 90.00000, 0.00000, 30);
	CreateDynamicObject(19455, 599.97540, 3654.98242, 96.04970,   0.00000, 90.00000, 0.00000, 30);
	CreateDynamicObject(19455, 603.45538, 3654.98242, 96.04970,   0.00000, 90.00000, 0.00000, 30);
	CreateDynamicObject(8643, 612.33972, 3641.98022, 85.95603,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(8643, 694.52277, 3690.90747, 98.64270,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(8643, 688.33105, 3637.94434, 98.64270,   0.00000, 0.00000, -90.00000, 30);
	CreateDynamicObject(8643, 703.59857, 3669.65991, 98.64270,   0.00000, 0.00000, -90.00000, 30);
	CreateDynamicObject(19544, 686.18829, 3695.38574, 86.13972,   -20.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(621, 645.45709, 3658.77759, 85.49930,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(621, 661.57886, 3652.20728, 85.49930,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(621, 692.18921, 3679.53857, 85.49930,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(19325, 654.40118, 3688.17822, 96.60692,   0.00000, 0.00000, -26.10000, 30);
	CreateDynamicObject(19325, 654.09955, 3688.28760, 96.60692,   0.00000, 0.00000, -26.10000, 30);
	CreateDynamicObject(19325, 654.58978, 3680.76123, 96.60690,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(19325, 654.30981, 3680.76123, 96.60690,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(621, 654.85382, 3665.55737, 85.49930,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(621, 654.83386, 3678.55176, 85.49930,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(19544, 689.34357, 3634.79639, 96.82043,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(2991, 647.31836, 3680.82251, 95.37740,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(2991, 647.31836, 3680.82251, 96.63677,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(2988, 683.54620, 3657.88867, 96.77862,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(2988, 691.89612, 3657.85132, 96.77860,   0.00000, 0.00000, 270.00000, 30);
	CreateDynamicObject(2988, 674.60309, 3680.97974, 94.72040,   0.00000, 0.00000, 180.00000, 30);
	CreateDynamicObject(2988, 674.60309, 3688.94189, 94.72040,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(2988, 677.70648, 3681.00659, 94.72040,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(2988, 686.06451, 3681.01318, 94.72040,   0.00000, 0.00000, 270.00000, 30);
	CreateDynamicObject(11426, 659.53827, 3691.15747, 94.82200,   0.00000, 0.00000, 270.00000, 30);
	CreateDynamicObject(11426, 668.67102, 3691.16089, 94.82200,   0.00000, 0.00000, 270.00000, 30);
	CreateDynamicObject(12957, 664.55017, 3674.31445, 95.37776,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(12957, 668.63293, 3687.01025, 95.37776,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(621, 679.50574, 3673.71753, 85.49930,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(13591, 675.01898, 3670.28857, 95.16290,   0.00000, 0.00000, -92.21999, 30);
	CreateDynamicObject(2669, 635.05457, 3686.43359, 96.05358,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(12957, 600.50580, 3709.20654, 95.45960,   0.00000, 0.00000, -56.88002, 30);
	CreateDynamicObject(2669, 603.70941, 3654.71143, 91.96960,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3798, 595.34552, 3662.61035, 90.67364,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3798, 595.33356, 3657.15430, 90.67364,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(18260, 603.42407, 3665.24438, 92.16628,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(621, 604.62775, 3676.34399, 85.49930,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(18260, 691.85797, 3668.72656, 97.46742,   0.00000, 20.00000, 90.00000, 30);
	CreateDynamicObject(18260, 641.03253, 3656.89893, 98.49293,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(18260, 621.80658, 3652.08521, 98.49290,   0.00000, 0.00000, 180.00000, 30);
	CreateDynamicObject(621, 621.50970, 3706.58740, 85.49930,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(18260, 623.20898, 3669.66821, 98.49072,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(985, 625.05518, 3668.85767, 100.46554,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(985, 625.05518, 3661.03760, 100.44988,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(985, 653.03583, 3689.03271, 98.49489,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(985, 649.11578, 3689.01270, 98.49490,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(985, 628.98724, 3657.12305, 100.45884,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(985, 636.81580, 3657.13550, 100.43864,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(18260, 621.80658, 3652.08594, 100.47780,   0.00000, 0.00000, 180.00000, 30);
	CreateDynamicObject(985, 693.68073, 3670.76392, 100.49110,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(985, 693.68073, 3664.64404, 100.49113,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(985, 640.73578, 3657.13550, 100.43860,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(621, 682.39362, 3665.11914, 85.49930,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(18260, 691.84760, 3667.36646, 93.75470,   0.00000, 20.00000, 90.00000, 30);
	CreateDynamicObject(11440, 589.50879, 3721.12012, 94.52084,   0.00000, 0.00000, -180.00000, 30);
	CreateDynamicObject(18260, 623.20947, 3669.66821, 100.44810,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(18260, 623.20905, 3669.66821, 102.32390,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(985, 638.59637, 3651.83252, 100.49705,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(985, 584.54919, 3687.85742, 99.97100,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(985, 584.51239, 3680.00415, 99.97100,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(985, 584.52728, 3672.17139, 99.97100,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(985, 584.53162, 3664.32910, 99.97100,   0.00000, 0.00000, 90.00000, 30);
	CreateDynamicObject(3798, 605.87201, 3668.27588, 102.37466,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3798, 607.81201, 3668.27588, 102.37463,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3798, 621.13727, 3652.86206, 100.89754,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3798, 608.38641, 3709.84644, 98.73923,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(3798, 608.38641, 3711.78638, 98.72898,   0.00000, 0.00000, 0.00000, 30);
	CreateDynamicObject(11440, 600.09839, 3726.04565, 94.39013,   0.00000, 0.00000, -180.00000, 30);

	return 1;
}
 
Последнее редактирование:
Сверху Снизу