/*
3 Level Airport Butcher, created by FLAIRCUT / Schnittlauch / Fendron
Credits:
Fendron (Based on Way to Air)
OhManMyBad (Map Loader source, testing)
EvilB, ThreeSocks, all Spacemonkeys from PSX-Scene
me (perfected and butched map, Ghost Helicopter source improvement, coded that shit 2gether)
*/
#include <natives.h>
#include <types.h>
#include <consts.h>
#include <strings.h>
void GET_NETWORK_ID_FROM_OBJECT(Object obj, int *id);
void SET_NETWORK_ID_CAN_MIGRATE(int id, boolean enabled);
boolean IS_NETWORK_SESSION(void);
/// credits
#define TITLE "~b~The Air Butcher"
#define AUTHOR "~b~Created by ~r~Fendron / perfected and butched by ~BLIP_11~FLAIRCUT~BLIP_11~"
/// coords for blip display x, y, z
#define BLIPCOORDS 2598.93, 506.765, 63.1592
Object objects[70]; //add +1
int nvid;
Blip mapblip;
void print(char* text)
{
CLEAR_PRINTS();
PRINT_STRING_WITH_LITERAL_STRING("string",text,3000,true);
}
void create(int id, uint model, float x, float y, float z, float h, float qx, float qy, float qz, float qw, bool dynamic)
{
if (IS_MODEL_IN_CDIMAGE(model))
{
REQUEST_MODEL(model);
while (!HAS_MODEL_LOADED(model))
WAIT(0);
CREATE_OBJECT(model, x, y, z, &objects[id], true);
SET_OBJECT_HEADING(objects[id], h);
SET_OBJECT_QUATERNION(objects[id], qx, qy, qz, qw);
SET_OBJECT_INVINCIBLE(objects[id], true);
SET_OBJECT_PROOFS(objects[id], false, false, false, false, false);
SET_OBJECT_VISIBLE(objects[id], true);
SET_OBJECT_LIGHTS(objects[id], true);
if (dynamic)
SET_OBJECT_DYNAMIC(objects[id], true);
else
FREEZE_OBJECT_POSITION(objects[id], true);
MARK_MODEL_AS_NO_LONGER_NEEDED(model);
WAIT(50);
if (IS_NETWORK_SESSION())
{
GET_NETWORK_ID_FROM_OBJECT(objects[id], &nvid);
SET_NETWORK_ID_CAN_MIGRATE(nvid, false);
}
}
}
void SpawnVehicle( uint hash, float x, float y, float z, float h, float qx, float qy, float qz, float qw){
REQUEST_MODEL(hash);
while (!HAS_MODEL_LOADED(hash)) WAIT(100);
Car c;
Ped driver;
CREATE_CAR(hash, x, y, z, &c, 1);
SET_CAR_HEADING(c, h);//heading 0-360
SET_VEHICLE_QUATERNION(c,qx,qy,qz,qw); //qz is tricky needs checked
FREEZE_CAR_POSITION(c, 1);
SET_CAR_CAN_BE_DAMAGED(c, 0);
SET_CAR_CAN_BE_VISIBLY_DAMAGED(c, 0);
SET_CAN_BURST_CAR_TYRES(c, 0);
SET_HELI_BLADES_FULL_SPEED(c);
CREATE_RANDOM_CHAR_AS_DRIVER(c,&driver);
LOCK_CAR_DOORS(c,VEHICLE_DOOR_LOCKED_BOTH_SIDES);
SET_BLOCKING_OF_NON_TEMPORARY_EVENTS( driver, 1 );
TASK_HELI_MISSION( driver, c, 0, 0, 0, 0, 0, 20, 0, 0, -1, 0, 0 );
MARK_MODEL_AS_NO_LONGER_NEEDED(hash);
}
#ifdef BLIPCOORDS
void blip_location(void)
{
ADD_BLIP_FOR_COORD(BLIPCOORDS, &mapblip);
CHANGE_BLIP_ALPHA(mapblip, 255);
CHANGE_BLIP_SPRITE(mapblip, 82);
#ifdef TITLE
CHANGE_BLIP_NAME_FROM_ASCII(mapblip, TITLE);
#endif
CHANGE_BLIP_COLOUR(mapblip, 2);
}
#endif
void main(void){
THIS_SC
T_IS_SAFE_FOR_NETWORK_GAME();
#ifdef BLIPCOORDS
blip_location();
#endif
#ifdef TITLE
print(TITLE); WAIT(2000);
#endif
#ifdef AUTHOR
print(AUTHOR);
#endif
//Annihilator
SpawnVehicle(MODEL_ANNIHILATOR,2564.0540, 415.5271, 78.0000, 0, 0.0698, 0, 0, 0.9976); //1 in ring south base
WAIT(100);
SpawnVehicle(MODEL_ANNIHILATOR,2445.1064, 642.4569, 23.4332, 133.5434, 0.2179, 0, 0.8919, 0.3940); //2 north base
WAIT(100);
SpawnVehicle(MODEL_ANNIHILATOR,2456.2952, 636.0668, 17.3965, 72.6378, 0.2730, 0.0340, 0.5420, 0.7940); //4 base
WAIT(100);
SpawnVehicle(MODEL_ANNIHILATOR,2437.0791, 650.6627, 30.4181, 137.0000, 0.2720, -0.1072, 0.8898, 0.3505); //5 base
WAIT(100);
SpawnVehicle(MODEL_ANNIHILATOR,2534.0474, 471.8945, 137.4113, 207.2347, 0.0892, -0.4212, 0.8786, -0.2067); //8 up
WAIT(100);
SpawnVehicle(MODEL_ANNIHILATOR,2532.7966, 474.1926, 140.6086, 207.2347, 0.0892, -0.4212, 0.8786, -0.2067); //9 up
WAIT(100);
//objects, add +1. Bool dynamic for dynamic objects only
create(0, -2036689985, 2598.93, 506.765, 63.1592, 225.156, 0, 0, 0.923357, -0.383943, 0);
create(1, 1335460286, 2580.92, 522.626, 46.3654, 55.874, -0.388784, -0.127166, 0.400015, 0.820161, 0);
create(2, 1335460286, 2562.43, 536.025, 24.8282, 54.3229, -0.331805, -0.099522, 0.407773, 0.844821, 0);
create(3, 1335460286, 2536.04, 555.436, 1.08752, 52.9511, -0.265862, -0.0678725, 0.414218, 0.867833, 0);
create(4, 1335460286, 2518.29, 568.94, -11.5958, 52.0515, -0.213464, -0.0429687, 0.417537, 0.882185, 0);
create(5, 1859734186, 2609.38, 495.048, 79.6428, 137.169, 0, 0, 0.930958, 0.365126, 0);//hintere stopper
create(6, 3179478505, 2609.0500, 496.0465, 53.0704, 45.0000, 0, 0, 0.3827, 0.9239, 0);//wheel
create(7, 1072695029, 2605.55, 499.483, 84.4416, 45.7571, -0.388739, 0.921237, -0.0131856, 0.00556401, 0);
create(8, 1072695029, 2599.02, 505.842, 84.1868, 45.7571, -0.388739, 0.921237, -0.0131856, 0.00556401, 0);
create(9, 1072695029, 2592.58, 512.118, 83.9354, 45.7571, -0.388739, 0.921237, -0.0131856, 0.00556401, 0);
create(10, 1072695029, 2494.23, 591.269, 4.59937, 43.7862, 0, 0, 0.372876, 0.927881, 0);
create(11, 1072695029, 2488.25, 597.504, 4.60547, 43.7862, 0, 0, 0.372876, 0.927881, 0);
create(12, 1072695029, 2482.12, 603.906, 5.29938, 43.7862, 0.0713476, 0.0286716, 0.371772, 0.925134, 0);
create(13, 1072695029, 2476.04, 610.256, 7.21213, 43.7862, 0.12657, 0.050863, 0.369391, 0.919208, 0);
create(14, 1072695029, 2470.21, 616.347, 9.4390, 43.7862, 0.12657, 0.050863, 0.369391, 0.919208, 0);
create(15, 1072695029, 2464.86, 621.937, 11.7648, 43.7862, 0.173549, 0.0697422, 0.366296, 0.911506, 0);
create(16, 1072695029, 2459.24, 627.818, 15.3159, 43.7862, 0.212355, 0.0853366, 0.36298, 0.903254, 0);
create(17, 1072695029, 2454.71, 632.55, 18.5836, 43.7862, 0.212355, 0.0853366, 0.36298, 0.903254, 0);
create(18, 1072695029, 2449.59, 637.903, 22.279, 43.7862, 0.212355, 0.0853366, 0.36298, 0.903254, 0);
create(19, 1072695029, 2443.95, 643.798, 26.3487, 43.7862, 0.212355, 0.0853366, 0.36298, 0.903254, 0);
create(20, 1072695029, 2438.92, 649.035, 30.887, 43.7862, 0.296263, 0.119056, 0.353359, 0.879313, 0);
create(21, 1072695029, 2435.09, 653.035, 36.0093, 43.7862, 0.370289, 0.148803, 0.341898, 0.850794, 0);
create(22, 1859734186, 2581.81, 509.466, 77.0027, 134.365, 0, 0, 0.921743, 0.3878, 0);
create(23, 1859734186, 2575.61, 502.388, 77.0189, 149.065, 0, 0, 0.963781, 0.266696, 0);
create(24, 1335460286, 2559.9, 477.074, 60.9679, 147.536, 0, 0, 0.960137, 0.279529, 0);
create(25, 1335460286, 2538.36, 355.777, 91.0678, 106.758, -0.0524052, -0.070509, 0.799493, 0.594216, 0);
create(26, 1335460286, 2563.57, 414.686, 60.9***, 173.727, 0, 0, 0.998502, 0.0547115, 0);
create(27, 1072695029, 2587.75, 411.349, 87.6211, 177.905, 0.713987, -0.0130544, -0.69992, -0.0127972, 0);
create(28, 1072695029, 2587.2026, 420.6581, 87.5561, 13.0000, -0.0800, 0.7026, -0.0800, -0.7026, 0);
create(29, 1072695029, 2584.25, 427.508, 87.6285, 211.225, 0.687759, 0.192187, -0.674208, 0.1884, 0);
create(30, 1072695029, 2579.63, 433.622, 87.6346, 224.945, 0.65988, 0.272959, -0.646879, 0.267581, 0);
create(31, 1072695029, 2575.07, 436.246, 87.6407, 243.565, 0.60703, 0.376116, -0.59507, 0.368706, 0);
create(32, 1072695029, 2569.96, 438.348, 87.6444, 264.145, 0.53008, 0.478501, -0.519636, 0.469073, 0);
create(33, 1072695029, 2555.98, 436.482, 87.5932, 294.525, 0.386182, 0.600676, -0.378573, 0.588841, 0);
create(34, 1072695029, 2549.02, 432.51, 87.5993, 314.125, 0.278304, 0.657643, -0.272821, 0.644686, 0);
create(35, 1072695029, 2544.59, 426.213, 87.6149, 335.686, 0.150387, 0.698092, -0.147424, 0.684338, 0);
create(36, 1072695029, 2542.3210, 417.3173, 87.8903, 355.0008, 0.0306, 0.7126, -0.0311, 0.7002, 0);
create(37, 1072695029, 2542.86, 409.198, 87.6128, 8.02597, -0.049975, 0.712356, 0.0489904, 0.698321, 0);
create(38, 1072695029, 2544.76, 403.398, 87.6189, 22.7261, -0.140697, 0.700109, 0.137925, 0.686315, 0);
create(39, 1072695029, 2548.42, 397.804, 87.625, 40.3663, -0.246383, 0.670257, 0.241528, 0.657051, 0);
create(40, 1072695029, 2553.59, 394.159, 87.6311, 60.9466, -0.36215, 0.615464, 0.355014, 0.603338, 0);
create(41, 1072695029, 2559.39, 392.274, 87.6372, 81.5268, -0.466267, 0.540873, 0.45708, 0.530217, 0);
create(42, 1072695029, 2565.49, 392.147, 87.6433, 96.227, 0.53163, -0.476779, -0.521156, -0.467385, 0);
create(43, 1072695029, 2571.09, 393.47, 87.6494, 108.967, 0.581246, -0.414851, -0.569794, -0.406677, 0);
create(44, 1072695029, 2576.13, 395.689, 87.6555, 121.707, 0.623685, -0.3478, -0.611397, -0.340948, 0);
create(45, 1072695029, 2581.48, 399.333, 87.6616, 128.567, 0.643377, -0.309862, -0.630701, -0.303757, 0);
create(46, 1072695029, 2585.61, 403.918, 87.6677, 147.188, 0.68503, -0.201697, -0.671534, -0.197723, 0);
create(47, 1335460286, 2568.18, 416.008, 95.0637, 19.7777, 0, 0, 0.171737, 0.985143, 0);
create(48, 1859734186, 2563.37, 441.384, 76.9595, 3.98635, 0, 0, 0.0347804, 0.999395, 0);
create(49, 1859734186, 2560.98, 441.217, 76.9758, 3.98635, 0, 0, 0.0347804, 0.999395, 0);
create(50, 1859734186, 2560.56, 447.323, 76.992, 3.98635, 0, 0, 0.0347804, 0.999395, 0);
create(51, 1859734186, 2562.95, 447.49, 77.0082, 3.98635, 0, 0, 0.0347804, 0.999395, 0);
create(52, 1859734186, 2561.77, 439.62, 86.3847, 275.786, 0, 0, -0.670515, 0.741896, 0);
create(53, 1859734186, 2560.45, 439.487, 83.4008, 275.786, 0, 0, -0.670515, 0.741896, 0);
create(54, 1859734186, 2560.45, 439.487, 88.5772, 275.786, 0, 0, -0.670515, 0.741896, 0);
create(55, 3886537013, 2606.6633, 498.7425, 78.2102, 317.0000, 0.2592, 0.6579, 0.2592, -0.6579, 0);//bada
create(56, 2082422543, 2558.2874, 475.7144, 76.5, 342.0000, 0, 0, -0.1564, 0.9877, 0);//QM Park
create(57, 3389362813, 2442.4421, 648.4745, 1, 209.0000, 0, 0, 0.9681, -0.2505, 0);//statue
create(58, 1072695029, 2587.6548, 416.6902, 88.0078, 4.9970, -0.0303, 0.7187, -0.0314, -0.6940, 0);
create(59, 1335460286, 2514.07, 479.467, 61.0879, 75.2278, 0, 0, 0.610337, 0.792142, 0);
create(60, 1335460286, 2514.68, 342.577, 87.2621, 180.257, 3.84153E-005, -0.0171034, 0.999851, -0.00224574, 0);
create(61, 1078148491, 2553.19, 436.197, 108.78, 28.1928, 0, 0, 0.243554, 0.969887, 0);
create(62, 1078148491, 2548.58, 444.785, 111.68, 28.1928, 0.024881, 0.00624803, 0.243474, 0.969568, 0);
create(63, 1078148491, 2544.45, 452.518, 115.37, 28.1928, 0.0745776, 0.0187276, 0.242833, 0.967016, 0);
create(64, 1078148491, 2540, 460.823, 120.896, 28.1928, 0.148714, 0.0373444, 0.240674, 0.958418, 0);
create(65, 1078148491, 2535.83, 468.602, 127.256, 28.1928, 0.197675, 0.0496394, 0.238442, 0.949529, 0);
create(66, 1335460286, 2580.71, 370.927, 95.0712, 23.5128, 0, 0, 0.203751, 0.979023, 0);
create(67, 1335460286, 2514.31, 430.422, 68.2419, 180.257, -0.000325397, 0.144874, 0.989448, -0.00222237, 0);
create(68, 1335460286, 2514.5, 384.898, 81.8646, 180.257, -0.000325397, 0.144874, 0.989448, -0.00222237, 0);
create(69, 1610988647, 2585.0344, 512.5582, 78.0009, 133.0000, 0.0795, 0.1828, 0.8986, 0.3907, 0);
while(true)
WAIT(0);
}

/*
3 Level Airport Butcher, created by FLAIRCUT / Schnittlauch / Fendron
Credits:
Fendron (Based on Way to Air)
OhManMyBad (Map Loader source, testing)
EvilB, ThreeSocks, all Spacemonkeys from PSX-Scene
me (perfected and butched map, Ghost Helicopter source improvement, coded that shit 2gether)
*/
#include <natives.h>
#include <types.h>
#include <consts.h>
#include <strings.h>
void GET_NETWORK_ID_FROM_OBJECT(Object obj, int *id);
void SET_NETWORK_ID_CAN_MIGRATE(int id, boolean enabled);
boolean IS_NETWORK_SESSION(void);
/// credits
#define TITLE "~b~The Air Butcher"
#define AUTHOR "~b~Created by ~r~Fendron / perfected and butched by ~BLIP_11~FLAIRCUT~BLIP_11~"
/// coords for blip display x, y, z
#define BLIPCOORDS 2598.93, 506.765, 63.1592
Object objects[70]; //add +1
int nvid;
Blip mapblip;
void print(char* text)
{
CLEAR_PRINTS();
PRINT_STRING_WITH_LITERAL_STRING("string",text,3000,true);
}
void create(int id, uint model, float x, float y, float z, float h, float qx, float qy, float qz, float qw, bool dynamic)
{
if (IS_MODEL_IN_CDIMAGE(model))
{
REQUEST_MODEL(model);
while (!HAS_MODEL_LOADED(model))
WAIT(0);
CREATE_OBJECT(model, x, y, z, &objects[id], true);
SET_OBJECT_HEADING(objects[id], h);
SET_OBJECT_QUATERNION(objects[id], qx, qy, qz, qw);
SET_OBJECT_INVINCIBLE(objects[id], true);
SET_OBJECT_PROOFS(objects[id], false, false, false, false, false);
SET_OBJECT_VISIBLE(objects[id], true);
SET_OBJECT_LIGHTS(objects[id], true);
if (dynamic)
SET_OBJECT_DYNAMIC(objects[id], true);
else
FREEZE_OBJECT_POSITION(objects[id], true);
MARK_MODEL_AS_NO_LONGER_NEEDED(model);
WAIT(50);
if (IS_NETWORK_SESSION())
{
GET_NETWORK_ID_FROM_OBJECT(objects[id], &nvid);
SET_NETWORK_ID_CAN_MIGRATE(nvid, false);
}
}
}
void SpawnVehicle( uint hash, float x, float y, float z, float h, float qx, float qy, float qz, float qw){
REQUEST_MODEL(hash);
while (!HAS_MODEL_LOADED(hash)) WAIT(100);
Car c;
Ped driver;
CREATE_CAR(hash, x, y, z, &c, 1);
SET_CAR_HEADING(c, h);//heading 0-360
SET_VEHICLE_QUATERNION(c,qx,qy,qz,qw); //qz is tricky needs checked
FREEZE_CAR_POSITION(c, 1);
SET_CAR_CAN_BE_DAMAGED(c, 0);
SET_CAR_CAN_BE_VISIBLY_DAMAGED(c, 0);
SET_CAN_BURST_CAR_TYRES(c, 0);
SET_HELI_BLADES_FULL_SPEED(c);
CREATE_RANDOM_CHAR_AS_DRIVER(c,&driver);
LOCK_CAR_DOORS(c,VEHICLE_DOOR_LOCKED_BOTH_SIDES);
SET_BLOCKING_OF_NON_TEMPORARY_EVENTS( driver, 1 );
TASK_HELI_MISSION( driver, c, 0, 0, 0, 0, 0, 20, 0, 0, -1, 0, 0 );
MARK_MODEL_AS_NO_LONGER_NEEDED(hash);
}
#ifdef BLIPCOORDS
void blip_location(void)
{
ADD_BLIP_FOR_COORD(BLIPCOORDS, &mapblip);
CHANGE_BLIP_ALPHA(mapblip, 255);
CHANGE_BLIP_SPRITE(mapblip, 82);
#ifdef TITLE
CHANGE_BLIP_NAME_FROM_ASCII(mapblip, TITLE);
#endif
CHANGE_BLIP_COLOUR(mapblip, 2);
}
#endif
void main(void){
THIS_SC
T_IS_SAFE_FOR_NETWORK_GAME();
#ifdef BLIPCOORDS
blip_location();
#endif
#ifdef TITLE
print(TITLE); WAIT(2000);
#endif
#ifdef AUTHOR
print(AUTHOR);
#endif
//Annihilator
SpawnVehicle(MODEL_ANNIHILATOR,2564.0540, 415.5271, 78.0000, 0, 0.0698, 0, 0, 0.9976); //1 in ring south base
WAIT(100);
SpawnVehicle(MODEL_ANNIHILATOR,2445.1064, 642.4569, 23.4332, 133.5434, 0.2179, 0, 0.8919, 0.3940); //2 north base
WAIT(100);
SpawnVehicle(MODEL_ANNIHILATOR,2456.2952, 636.0668, 17.3965, 72.6378, 0.2730, 0.0340, 0.5420, 0.7940); //4 base
WAIT(100);
SpawnVehicle(MODEL_ANNIHILATOR,2437.0791, 650.6627, 30.4181, 137.0000, 0.2720, -0.1072, 0.8898, 0.3505); //5 base
WAIT(100);
SpawnVehicle(MODEL_ANNIHILATOR,2534.0474, 471.8945, 137.4113, 207.2347, 0.0892, -0.4212, 0.8786, -0.2067); //8 up
WAIT(100);
SpawnVehicle(MODEL_ANNIHILATOR,2532.7966, 474.1926, 140.6086, 207.2347, 0.0892, -0.4212, 0.8786, -0.2067); //9 up
WAIT(100);
//objects, add +1. Bool dynamic for dynamic objects only
create(0, -2036689985, 2598.93, 506.765, 63.1592, 225.156, 0, 0, 0.923357, -0.383943, 0);
create(1, 1335460286, 2580.92, 522.626, 46.3654, 55.874, -0.388784, -0.127166, 0.400015, 0.820161, 0);
create(2, 1335460286, 2562.43, 536.025, 24.8282, 54.3229, -0.331805, -0.099522, 0.407773, 0.844821, 0);
create(3, 1335460286, 2536.04, 555.436, 1.08752, 52.9511, -0.265862, -0.0678725, 0.414218, 0.867833, 0);
create(4, 1335460286, 2518.29, 568.94, -11.5958, 52.0515, -0.213464, -0.0429687, 0.417537, 0.882185, 0);
create(5, 1859734186, 2609.38, 495.048, 79.6428, 137.169, 0, 0, 0.930958, 0.365126, 0);//hintere stopper
create(6, 3179478505, 2609.0500, 496.0465, 53.0704, 45.0000, 0, 0, 0.3827, 0.9239, 0);//wheel
create(7, 1072695029, 2605.55, 499.483, 84.4416, 45.7571, -0.388739, 0.921237, -0.0131856, 0.00556401, 0);
create(8, 1072695029, 2599.02, 505.842, 84.1868, 45.7571, -0.388739, 0.921237, -0.0131856, 0.00556401, 0);
create(9, 1072695029, 2592.58, 512.118, 83.9354, 45.7571, -0.388739, 0.921237, -0.0131856, 0.00556401, 0);
create(10, 1072695029, 2494.23, 591.269, 4.59937, 43.7862, 0, 0, 0.372876, 0.927881, 0);
create(11, 1072695029, 2488.25, 597.504, 4.60547, 43.7862, 0, 0, 0.372876, 0.927881, 0);
create(12, 1072695029, 2482.12, 603.906, 5.29938, 43.7862, 0.0713476, 0.0286716, 0.371772, 0.925134, 0);
create(13, 1072695029, 2476.04, 610.256, 7.21213, 43.7862, 0.12657, 0.050863, 0.369391, 0.919208, 0);
create(14, 1072695029, 2470.21, 616.347, 9.4390, 43.7862, 0.12657, 0.050863, 0.369391, 0.919208, 0);
create(15, 1072695029, 2464.86, 621.937, 11.7648, 43.7862, 0.173549, 0.0697422, 0.366296, 0.911506, 0);
create(16, 1072695029, 2459.24, 627.818, 15.3159, 43.7862, 0.212355, 0.0853366, 0.36298, 0.903254, 0);
create(17, 1072695029, 2454.71, 632.55, 18.5836, 43.7862, 0.212355, 0.0853366, 0.36298, 0.903254, 0);
create(18, 1072695029, 2449.59, 637.903, 22.279, 43.7862, 0.212355, 0.0853366, 0.36298, 0.903254, 0);
create(19, 1072695029, 2443.95, 643.798, 26.3487, 43.7862, 0.212355, 0.0853366, 0.36298, 0.903254, 0);
create(20, 1072695029, 2438.92, 649.035, 30.887, 43.7862, 0.296263, 0.119056, 0.353359, 0.879313, 0);
create(21, 1072695029, 2435.09, 653.035, 36.0093, 43.7862, 0.370289, 0.148803, 0.341898, 0.850794, 0);
create(22, 1859734186, 2581.81, 509.466, 77.0027, 134.365, 0, 0, 0.921743, 0.3878, 0);
create(23, 1859734186, 2575.61, 502.388, 77.0189, 149.065, 0, 0, 0.963781, 0.266696, 0);
create(24, 1335460286, 2559.9, 477.074, 60.9679, 147.536, 0, 0, 0.960137, 0.279529, 0);
create(25, 1335460286, 2538.36, 355.777, 91.0678, 106.758, -0.0524052, -0.070509, 0.799493, 0.594216, 0);
create(26, 1335460286, 2563.57, 414.686, 60.9***, 173.727, 0, 0, 0.998502, 0.0547115, 0);
create(27, 1072695029, 2587.75, 411.349, 87.6211, 177.905, 0.713987, -0.0130544, -0.69992, -0.0127972, 0);
create(28, 1072695029, 2587.2026, 420.6581, 87.5561, 13.0000, -0.0800, 0.7026, -0.0800, -0.7026, 0);
create(29, 1072695029, 2584.25, 427.508, 87.6285, 211.225, 0.687759, 0.192187, -0.674208, 0.1884, 0);
create(30, 1072695029, 2579.63, 433.622, 87.6346, 224.945, 0.65988, 0.272959, -0.646879, 0.267581, 0);
create(31, 1072695029, 2575.07, 436.246, 87.6407, 243.565, 0.60703, 0.376116, -0.59507, 0.368706, 0);
create(32, 1072695029, 2569.96, 438.348, 87.6444, 264.145, 0.53008, 0.478501, -0.519636, 0.469073, 0);
create(33, 1072695029, 2555.98, 436.482, 87.5932, 294.525, 0.386182, 0.600676, -0.378573, 0.588841, 0);
create(34, 1072695029, 2549.02, 432.51, 87.5993, 314.125, 0.278304, 0.657643, -0.272821, 0.644686, 0);
create(35, 1072695029, 2544.59, 426.213, 87.6149, 335.686, 0.150387, 0.698092, -0.147424, 0.684338, 0);
create(36, 1072695029, 2542.3210, 417.3173, 87.8903, 355.0008, 0.0306, 0.7126, -0.0311, 0.7002, 0);
create(37, 1072695029, 2542.86, 409.198, 87.6128, 8.02597, -0.049975, 0.712356, 0.0489904, 0.698321, 0);
create(38, 1072695029, 2544.76, 403.398, 87.6189, 22.7261, -0.140697, 0.700109, 0.137925, 0.686315, 0);
create(39, 1072695029, 2548.42, 397.804, 87.625, 40.3663, -0.246383, 0.670257, 0.241528, 0.657051, 0);
create(40, 1072695029, 2553.59, 394.159, 87.6311, 60.9466, -0.36215, 0.615464, 0.355014, 0.603338, 0);
create(41, 1072695029, 2559.39, 392.274, 87.6372, 81.5268, -0.466267, 0.540873, 0.45708, 0.530217, 0);
create(42, 1072695029, 2565.49, 392.147, 87.6433, 96.227, 0.53163, -0.476779, -0.521156, -0.467385, 0);
create(43, 1072695029, 2571.09, 393.47, 87.6494, 108.967, 0.581246, -0.414851, -0.569794, -0.406677, 0);
create(44, 1072695029, 2576.13, 395.689, 87.6555, 121.707, 0.623685, -0.3478, -0.611397, -0.340948, 0);
create(45, 1072695029, 2581.48, 399.333, 87.6616, 128.567, 0.643377, -0.309862, -0.630701, -0.303757, 0);
create(46, 1072695029, 2585.61, 403.918, 87.6677, 147.188, 0.68503, -0.201697, -0.671534, -0.197723, 0);
create(47, 1335460286, 2568.18, 416.008, 95.0637, 19.7777, 0, 0, 0.171737, 0.985143, 0);
create(48, 1859734186, 2563.37, 441.384, 76.9595, 3.98635, 0, 0, 0.0347804, 0.999395, 0);
create(49, 1859734186, 2560.98, 441.217, 76.9758, 3.98635, 0, 0, 0.0347804, 0.999395, 0);
create(50, 1859734186, 2560.56, 447.323, 76.992, 3.98635, 0, 0, 0.0347804, 0.999395, 0);
create(51, 1859734186, 2562.95, 447.49, 77.0082, 3.98635, 0, 0, 0.0347804, 0.999395, 0);
create(52, 1859734186, 2561.77, 439.62, 86.3847, 275.786, 0, 0, -0.670515, 0.741896, 0);
create(53, 1859734186, 2560.45, 439.487, 83.4008, 275.786, 0, 0, -0.670515, 0.741896, 0);
create(54, 1859734186, 2560.45, 439.487, 88.5772, 275.786, 0, 0, -0.670515, 0.741896, 0);
create(55, 3886537013, 2606.6633, 498.7425, 78.2102, 317.0000, 0.2592, 0.6579, 0.2592, -0.6579, 0);//bada
create(56, 2082422543, 2558.2874, 475.7144, 76.5, 342.0000, 0, 0, -0.1564, 0.9877, 0);//QM Park
create(57, 3389362813, 2442.4421, 648.4745, 1, 209.0000, 0, 0, 0.9681, -0.2505, 0);//statue
create(58, 1072695029, 2587.6548, 416.6902, 88.0078, 4.9970, -0.0303, 0.7187, -0.0314, -0.6940, 0);
create(59, 1335460286, 2514.07, 479.467, 61.0879, 75.2278, 0, 0, 0.610337, 0.792142, 0);
create(60, 1335460286, 2514.68, 342.577, 87.2621, 180.257, 3.84153E-005, -0.0171034, 0.999851, -0.00224574, 0);
create(61, 1078148491, 2553.19, 436.197, 108.78, 28.1928, 0, 0, 0.243554, 0.969887, 0);
create(62, 1078148491, 2548.58, 444.785, 111.68, 28.1928, 0.024881, 0.00624803, 0.243474, 0.969568, 0);
create(63, 1078148491, 2544.45, 452.518, 115.37, 28.1928, 0.0745776, 0.0187276, 0.242833, 0.967016, 0);
create(64, 1078148491, 2540, 460.823, 120.896, 28.1928, 0.148714, 0.0373444, 0.240674, 0.958418, 0);
create(65, 1078148491, 2535.83, 468.602, 127.256, 28.1928, 0.197675, 0.0496394, 0.238442, 0.949529, 0);
create(66, 1335460286, 2580.71, 370.927, 95.0712, 23.5128, 0, 0, 0.203751, 0.979023, 0);
create(67, 1335460286, 2514.31, 430.422, 68.2419, 180.257, -0.000325397, 0.144874, 0.989448, -0.00222237, 0);
create(68, 1335460286, 2514.5, 384.898, 81.8646, 180.257, -0.000325397, 0.144874, 0.989448, -0.00222237, 0);
create(69, 1610988647, 2585.0344, 512.5582, 78.0009, 133.0000, 0.0795, 0.1828, 0.8986, 0.3907, 0);
while(true)
WAIT(0);
}

Copyright © 2026, NextGenUpdate.
All Rights Reserved.