PHP Code:
/*
The Outa Space Butcher (BIG)
Created by FLAIRCUT aka Schnittlauch
Credits: OhManMyBad
*/
#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);
#define TITLE "~COL_NET_4~*The*Outa*Space*Butcher*"
#define AUTHOR "~b~~COL_NET_4~Made by~BLIP_11~~COL_NET_3~FLAIRCUT~BLIP_11~"
#define BLIPCOORDS 2289.8452, 794.4802, 6
#define LOADCARS "~b~34 Cars had been placed!"
#define BUILD "Building up the machine..."
#define READY "~COL_NET_4~100% loaded..."
#define READY2 "~COL_NET_4~ready to **** You up!"
#define SHOUTS "~COL_NET_11~~h~Good Fly..."
#define SHOUTS2 "~COL_NET_11~~h~...*Spacemonkeys*"
Object objects[159]; //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);//not working without qz, qw
SET_VEHICLE_QUATERNION(c,qx,qy,qz,qw);
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);
}
void SpawnVehicle2( uint hash, float x, float y, float z, float h){
REQUEST_MODEL(hash);
while (!HAS_MODEL_LOADED(hash)) WAIT(100);
Car c;
CREATE_CAR(hash, x, y, z, &c, 1);
SET_CAR_HEADING(c, h);//heading 0-360
SET_CAR_CAN_BE_DAMAGED(c, 0);
SET_CAR_CAN_BE_VISIBLY_DAMAGED(c, 0);
SET_CAN_BURST_CAR_TYRES(c, 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_SCRIPT_IS_SAFE_FOR_NETWORK_GAME();
#ifdef BLIPCOORDS
blip_location();
#endif
#ifdef TITLE
print(TITLE); WAIT(3600);
#endif
#ifdef AUTHOR
print(AUTHOR);
#endif
//Cars links
SpawnVehicle2(MODEL_COMET,2296.7722, 782.6518, 3, 139);
WAIT(100);
SpawnVehicle2(MODEL_COMET,2296.7722-2.0905, 782.6518+1.8721, 3,139);
WAIT(100);
SpawnVehicle2(MODEL_BUCCANEER,2296.7722-(2*2.0905), 782.6518+(2*1.8721), 3,139);
WAIT(100);
SpawnVehicle2(MODEL_COMET,2296.7722-(3*2.0905), 782.6518+(3*1.8721), 3,139);
WAIT(100);
SpawnVehicle2(MODEL_COMET,2296.7722-(4*2.0905), 782.6518+(4*1.8721), 3,139);
WAIT(100);
SpawnVehicle2(MODEL_SULTANRS,2296.7722-(5*2.0905), 782.6518+(5*1.8721), 3,139);
WAIT(100);
SpawnVehicle2(MODEL_SULTANRS,2296.7722-(6*2.0905), 782.6518+(6*1.8721), 3,139);
WAIT(100);
SpawnVehicle2(MODEL_COMET,2296.7722-(7*2.0905), 782.6518+(7*1.8721), 3,139);
WAIT(100);
SpawnVehicle2(MODEL_COMET,2296.7722-(8*2.0905), 782.6518+(8*1.8721), 3,139);
WAIT(100);
SpawnVehicle2(MODEL_COMET,2296.7722-(9*2.0905), 782.6518+(9*1.8721), 3,139);
WAIT(100);
SpawnVehicle2(MODEL_COGNOSCENTI,2296.7722-((9+1)*2.0905), 782.6518+((9+1)*1.8721), 3,139);
WAIT(100);
SpawnVehicle2(MODEL_COGNOSCENTI,2296.7722-((9+2)*2.0905), 782.6518+((9+2)*1.8721), 3,139);
WAIT(100);
SpawnVehicle2(MODEL_COGNOSCENTI,2296.7722-((9+3)*2.0905), 782.6518+((9+3)*1.8721), 3,139);
WAIT(100);
SpawnVehicle2(MODEL_COGNOSCENTI,2296.7722-((9+4)*2.0905), 782.6518+((9+4)*1.8721), 3,139);
WAIT(100);
SpawnVehicle2(MODEL_COGNOSCENTI,2296.7722-((9+5)*2.0905), 782.6518+((9+5)*1.8721), 3,139);
WAIT(100);
SpawnVehicle2(MODEL_COGNOSCENTI,2296.7722-((9+6)*2.0905), 782.6518+((9+6)*1.8721), 3,139);
WAIT(100);
SpawnVehicle2(MODEL_COGNOSCENTI,2296.7722-((9+7)*2.0905), 782.6518+((9+7)*1.8721), 3,139);
WAIT(100);
//Cars rechts
SpawnVehicle2(MODEL_INFERNUS,2288.6509-(2*2.0905), 764.1188+(2*1.8721), 3, 319);
WAIT(100);
SpawnVehicle2(MODEL_BUCCANEER,2288.6509-(3*2.0905), 764.1188+(3*1.8721), 3, 319);
WAIT(100);
SpawnVehicle2(MODEL_INFERNUS,2288.6509-(4*2.0905), 764.1188+(4*1.8721), 3, 319);
WAIT(100);
SpawnVehicle2(MODEL_SULTANRS,2288.6509-(5*2.0905), 764.1188+(5*1.8721), 3, 319);
WAIT(100);
SpawnVehicle2(MODEL_SULTANRS,2288.6509-(6*2.0905), 764.1188+(6*1.8721), 3, 319);
WAIT(100);
SpawnVehicle2(MODEL_SULTANRS,2288.6509-(7*2.0905), 764.1188+(7*1.8721), 3, 319);
WAIT(100);
SpawnVehicle2(MODEL_INFERNUS,2288.6509-(8*2.0905), 764.1188+(8*1.8721), 3, 319);
WAIT(100);
SpawnVehicle2(MODEL_SULTANRS,2288.6509-(9*2.0905), 764.1188+(9*1.8721), 3, 319);
WAIT(100);
SpawnVehicle2(MODEL_COGNOSCENTI,2288.6509-((9+1)*2.0905), 764.1188+((9+1)*1.8721), 3, 319);
WAIT(100);
SpawnVehicle2(MODEL_COGNOSCENTI,2288.6509-((9+2)*2.0905), 764.1188+((9+2)*1.8721), 3, 319);
WAIT(100);
SpawnVehicle2(MODEL_COGNOSCENTI,2288.6509-((9+3)*2.0905), 764.1188+((9+3)*1.8721), 3, 319);
WAIT(100);
SpawnVehicle2(MODEL_COGNOSCENTI,2288.6509-((9+4)*2.0905), 764.1188+((9+4)*1.8721), 3, 319);
WAIT(100);
SpawnVehicle2(MODEL_COGNOSCENTI,2288.6509-((9+5)*2.0905), 764.1188+((9+5)*1.8721), 3, 319);
WAIT(100);
SpawnVehicle2(MODEL_FBI,2288.6509-((9+6)*2.0905), 764.1188+((9+6)*1.8721), 3, 319);
WAIT(100);
SpawnVehicle2(MODEL_FBI,2288.6509-((9+7)*2.0905), 764.1188+((9+7)*1.8721), 3, 319);
WAIT(100);
SpawnVehicle2(MODEL_DILETTANTE,2288.6509-((9+8)*2.0905), 764.1188+((9+8)*1.8721), 3, 319);
WAIT(100);
SpawnVehicle2(MODEL_VOODOO,2288.6509-((9+9)*2.0905), 764.1188+((9+9)*1.8721), 3, 319);
WAIT(100);
#ifdef LOADCARS
print(LOADCARS); WAIT(3000);
#endif
//Annihilator erste reihe bei nord beginnend
SpawnVehicle(MODEL_ANNIHILATOR,2314.8447, 742.4958, 9, 317, 0, 0, -0.3665, 0.9304); //erster nord
WAIT(100);
SpawnVehicle(MODEL_ANNIHILATOR,2314.8447+7.6177, 742.4958-9.4613, 7.68, 317, 0, 0, -0.3665, 0.9304);
WAIT(100);
SpawnVehicle(MODEL_ANNIHILATOR,2314.8447+(2*7.6177), 742.4958-(2*9.4613), -3.0, 317, 0, 0, -0.3665, 0.9304);
WAIT(100);
SpawnVehicle(MODEL_ANNIHILATOR,2337.4028, 716.0927, 7.68, 317, 0, 0, -0.3665, 0.9304);
WAIT(100);
SpawnVehicle(MODEL_ANNIHILATOR,2345.6711, 707.9232, -3.0, 317, 0, 0, -0.3665, 0.9304);
WAIT(100);
SpawnVehicle(MODEL_ANNIHILATOR,2353.4485, 698.6825, 7.68, 317, 0, 0, -0.3665, 0.9304);
WAIT(100);
SpawnVehicle(MODEL_ANNIHILATOR,2368.2332, 681.8019, -3.0, 317, 0, 0, -0.3665, 0.9304);
WAIT(100);
SpawnVehicle(MODEL_ANNIHILATOR,2376.1904, 673.4937, 7.68, 317, 0, 0, -0.3665, 0.9304);
WAIT(100);
SpawnVehicle(MODEL_ANNIHILATOR,2390.4019, 7657.7604, -3.0, 317, 0, 0, -0.3665, 0.9304);
WAIT(100);
SpawnVehicle(MODEL_ANNIHILATOR,2389.8009, 658.9478, 7.68, 317, 0, 0, -0.3665, 0.9304);
WAIT(100);
//oben
SpawnVehicle(MODEL_ANNIHILATOR,2689.3333, 516.7716, 74.6, 145, -0.0879, -0.2788, 0.9120, 0.2876);
WAIT(100);
SpawnVehicle(MODEL_ANNIHILATOR,2690.4333, 518.4007, 76.2, 145, -0.0879, -0.2788, 0.9120, 0.2876);
WAIT(100);
SpawnVehicle(MODEL_ANNIHILATOR,2249.0132, 897.8120, 26.4379, 142, 0.5080, -0.1749, 0.7975, 0.2746);
WAIT(100);
SpawnVehicle(MODEL_ANNIHILATOR,2246.4495, 899.0162, 36.6926, 142, 0.5080, -0.1749, 0.7975, 0.2746);
WAIT(100);
SpawnVehicle(MODEL_ANNIHILATOR,2246.1624, 896.9735, 54.6440, 149, 0.7485, -0.2089, 0.6068, 0.1669);
WAIT(100);
#ifdef BUILD
print(BUILD); WAIT(3000);
#endif
//objects
create(0, 1799426854, 2328.43, 766.44, 4, 0, 0, 0, -0.1564, 0.9877, 0);//P chimney 8 1 nord
create(1, 2082422543, 2326.93, 765.35, 0, 0, 0, 0, 0, 1, 0);//QM paar 1 nord -10
create(2, 2082422543, 2326.93, 765.35, 25.5, 0, 0, 1, 0, 0, 0);
create(3, 4089729545, 2313.42, 766.73, 5.84, 0, 0, 0, 0, 1, 0);//nj5fire 11
create(4, 1335460286, 2323.91, 741.59, -11, 0, 0, 0, 0, 1, 0);//oiltnkbig -9,52 ground
create(5, 1335460286, 2351.47, 714.34, -11, 0, 0, 0, 0, 1, 0);
create(6, 1335460286, 2383.48, 689.29, -11, 0, 0, 0, 0, 1, 0);
create(7, 1335460286, 2409.41, 668.77, -11, 0, 0, 0, 0, 1, 0);
create(8, 1078148491, 2306.72, 758.21, 5.81-5.3516, 225, -0.0167, 0.04, 0.9230, -0.3823, 0);//cj boat ramp entry flat
create(9, 1078148491, 2311.03, 762.50, 5.81-5.3516, 225, -0.0167, 0.04, 0.9230, -0.3823, 0);//2.
create(10, 1335460286, 2323.91, 741.59, 19-9.52, 0, 0, 1, 0, 0, 0);//Dach
create(11, 1335460286, 2351.47, 714.34, 19-9.52, 0, 0, 1, 0, 0, 0);
create(12, 1335460286, 2383.48, 689.29, 19-9.52, 0, 0, 1, 0, 0, 0);
create(13, 1335460286, 2384.5803, 670.2247, 19-9.52, 0, 0, 1, 0, 0, 0);
create(14, 1335460286, 2317.5869, 731.3361, 11.6456-9.52, 41.000, -0.2476, 0.6623, 0.2476, 0.6623, 0);//wand rechts
create(15, 1335460286, 2347.2613, 697.2280, 11.6456-9.52, 41.000, -0.2476, 0.6623, 0.2476, 0.6623, 0);
create(16, 1335460286, 2347.2613+29.6744, 697.2280-34.1081, 11.6456-9.52, 41.000, -0.2476, 0.6623, 0.2476, 0.6623, 0);
create(17, 1335460286, 2333.5032, 745.6005, 11.6456-9.52, 41.000, 0.2476, -0.6623, 0.2476, 0.6623, 0);
create(18, 1335460286, 2333.5032+29.6744, 745.6005-34.1081, 11.6456-9.52, 41.000, 0.2476, -0.6623, 0.2476, 0.6623, 0);
create(19, 1335460286, 2333.5032+(2*29.6744), 745.6005-(2*34.1081), 11.6456-9.52, 41.000, 0.2476, -0.6623, 0.2476, 0.6623, 0);
create(20, 1072695029, 2345.2363, 818.7192, 6.116, 48, 0.1977, 0.088, 0.3971, 0.8919, 0);//noch ne HP hinten
create(21, 926653327, 2275.4001, 789.4799, 4.856, 228, 0, 0, 0.9135, -0.4067, 0);//Flash
create(22, 1335460286, 2433.0857-11.094, 641.7119-6.5781, 2.9706-9.52, 41, -0.1223, -0.0457, 0.3472, 0.9287, 0);//shooter
create(23, 1335460286, 2440.2339-11.094, 634.5059-6.5781, 6.7491-9.52, 41, -0.2107, -0.0788, 0.3412, 0.9127, 0);
create(24, 1335460286, 2450.6587-11.094, 622.4606-6.5781, 16.2026-9.52, 41, -0.3280, -0.1226, 0.3280, 0.8774, 0);
create(25, 1335460286, 2459.4302-11.094, 614.4709-6.5781, 26.6694-9.52, 41, -0.3735, -0.1396, 0.3212, 0.8590, 0);
create(26, 1799426854, 2328.43+49.2, 766.44-50.2, 4, 0, 0, 0, -0.1564, 0.9877, 0);//P chimney 8 3 north
create(27, 2082422543, 2326.93+49.2, 765.35-50.2, 0, 0, 0, 0, 0, 1, 0);//QM paar 3 ist 0
create(28, 2082422543, 2326.93+49.2, 765.35-50.2, 25.5, 0, 0, 1, 0, 0, 0);
create(29, 4089729545, 2313.42+49.2, 766.73-50.2, 5.84, 0, 0, 0, 0, 1, 0);//nj5fire 11
//create(30, 1799426854, 2328.43+(2*49.2), 766.44-(2*50.2), 4, 0, 0, 0, -0.1564, 0.9877, 0);//P chimney 8 5
create(30, 1335460286, 2630.1682, 609.4200, 107.8166-9.52, 142, 0.6744, -0.2322, -0.2282, 0.6627, 0);//nochn wallride
create(31, 2082422543, 2326.93+(2*49.2), 765.35-(2*50.2), 0, 0, 0, 0, 0, 1, 0);//QM paar 5
create(32, 2082422543, 2326.93+(2*49.2), 765.35-(2*50.2), 25.5, 0, 0, 1, 0, 0, 0);
create(33, 4089729545, 2313.42+(2*49.2), 766.73-(2*50.2), 5.84, 0, 0, 0, 0, 1, 0);//nj5fire 11 5
create(34, 1799426854, 2328.43+(2*49.2)-(34.9994), 766.44-(2*50.2)-(30.5150), 4, 0, 0, 0, -0.1564, 0.9877, 0);//P chimney 8 6
create(35, 2082422543, 2326.93+(2*49.2)-(34.9994), 765.35-(2*50.2)-(30.5150), 0, 0, 0, 0, 0, 1, 0);//QM paar 6
create(36, 2082422543, 2326.93+(2*49.2)-(34.9994), 765.35-(2*50.2)-(30.5150), 25.5, 0, 0, 1, 0, 0, 0);
create(37, 4089729545, 2313.42+(2*49.2)-(34.9994), 766.73-(2*50.2)-(30.5150), 5.84, 0, 0, 0, 0, 1, 0);//nj5fire 11 6
//create(38, 1799426854, 2328.43+49.2-(34.9994), 766.44-50.2-(30.5150), 4, 0, 0, 0, -0.1564, 0.9877, 0);//P chimney 8 4
create(38, 2082422543, 2326.93+49.2, 765.35-50.2, 25.5, 0, 0, 1, 0, 0, 0);
create(39, 2082422543, 2326.93+49.2-(34.9994), 765.35-50.2-(30.5150), 0, 0, 0, 0, 0, 1, 0);//QM paar 3 ist 0
create(40, 2082422543, 2326.93+49.2-(34.9994), 765.35-50.2-(30.5150), 25.5, 0, 0, 1, 0, 0, 0);
create(41, 4089729545, 2313.42+49.2-(34.9994), 766.73-50.2-(30.5150), 5.84, 0, 0, 0, 0, 1, 0);//nj5fire 11 4
//create(42, 1799426854, 2328.43-(30.1636), 766.44-(27.9971), 4, 0, 0, 0, -0.1564, 0.9877, 0);//P chimney 8 2
create(42, 1335460286, 2234.1882, 898.2616, 46.8830-9.52, 52, -0.3501, 0.7178, -0.5409, 0.2638, 0);//letzer shooter way back
create(43, 2082422543, 2300.9, 739.7, 0, 0, 0, 0, 0, 1, 0);//QM paar 1 nord
create(44, 2082422543, 2300.9, 739.7, 25.5, 0, 0, 1, 0, 0, 0);
create(45, 4089729545, 2313.42-(30.1636), 766.73-(27.9971), 5.84, 0, 0, 0, 0, 1, 0);//nj5fire 11 2
create(46, 1078148491, 2312.6416, 758.6147, 7.7897-5.3516, 197.0036, 0.7043, 0.1082, -0.6944, 0.1008, 0);//Entry CJ Boat
create(47, 1078148491, 2307.3894, 754.0284, 7.7897-5.3516, 197.0036+45, 0.6061, 0.3642, 0.6061, -0.3642, 0);
create(48, 1078148491, 2305.4487, 756.7924, 5.81-5.3516, 225, -0.0167, 0.04, 0.9230, -0.3823, 0);//dritte flat
create(49, 1335460286, 2508.9414, 552.7198, 31.0918-9.52, 0, 0, 0, 0, 1, 0);//oil auffang
create(50, 1335460286, 2542.5813, 563.9851, 31.0918-9.52, 0, 0, 0, 0, 1, 0);
create(51, 1335460286, 2488.1802, 578.7020, 31.0918-9.52, 0, 0, 0, 0, 1, 0);
create(52, 1335460286, 2540.0332, 522.9365, 36.0852-9.52, 36, -0.1077, -0.0350, 0.3070, 0.9449, 0);
create(53, 1335460286, 2558.8696, 501.8351, 45.8753-9.52, 38, -0.1723, -0.0593, 0.3201, 0.9297, 0);
create(54, 1335460286, 2586.9451, 475.1707, 51.7169-9.52, 0, 0, 0, 0, 1, 0);//oil auffang 2
create(55, 1335460286, 2621.7769, 459.7340, 51.7169-9.52, 0, 0, 0, 0, 1, 0);
create(56, 1335460286, 2657.2004, 471.4932, 51.7169-9.52, 0, 0, 0, 0, 1, 0);
create(57, 1078148491, 2674.8010, 496.1434, 61.8917-5.5516, 325, 0, 0, -0.3007, 0.9537, 0);//ramp shooter on top
create(58, 1078148491, 2680.1208, 503.7661, 65.5899-5.5516, 325, 0.0665, -0.0210, -0.3, 0.9514, 0);
create(59, 1078148491, 2685.2869, 511.1094, 70.7681-5.5516, 325, 0.1410, -0.0444, -0.2974, 0.9432, 0);
create(60, 1335460286, 2680.5439, 554.4847, 80.9250-9.52, 129, 0.6382, -0.3044, -0.3044, 0.6382, 0);
create(61, 1335460286, 2665.2512, 572.8293, 93.0059-9.52, 39.9967, -0.2413, 0.6706, -0.2424, -0.6583, 0);
create(62, 1335460286, 2650.4990, 590.1657, 102.5535-9.52, 39.9967, -0.2413, 0.6706, -0.2424, -0.6583, 0);
create(62, 1335460286, 2630.1682, 609.4200, 107.8166-9.52, 142, 0.6744, -0.2322, -0.2282, 0.6627, 0);
//race
create(65, 1335460286, 2257.3845, 878.9760, (-2.0428)-9.52, 229, 0.0649, -0.1423, 0.8988, -0.4096, 0);//shooter
create(66, 1335460286, 2248.7737, 886.1987, 3.5932-9.52, 229, 0.1108, -0.2432, 0.8769, -0.3996, 0);
create(67, 1335460286, 2242.2324, 892.8875, 13.3309-9.52, 230, 0.1719, -0.3686, 0.8280, -0.3861, 0);
create(68, 1335460286, 2238.7295, 895.5816, 22.0886-9.52, 231, 0.2376, -0.4982, 0.7527, -0.3590, 0);
create(69, 1335460286, 2235.7415, 897.2670, 32.9296-9.52, 232, 0.2905, -0.5956, 0.6732, -0.3283, 0);
create(70, 1072695029, 2426.8611, 747.2599, 6.116, 48, 0.1977, 0.088, 0.3971, 0.8919, 0);//halfpipe
create(71, 1799426854, 2328.43+(2*49.2), 766.44-(2*50.2), 4, 0, 0, 0, -0.1564, 0.9877, 0);//P chimney 8 5
//additional
create(72, 893276729, 2304.9324, 762.4984, 11.1583+1, 0, 0, 0, 0, 1, 0);//CJ arrow
create(73, 893276729, 2304.9324, 762.4984, 11.1583+2, 0, 0, 0, 0, 1, 0);
create(74, 893276729, 2304.9324, 762.4984, 11.1583+3, 0, 0, 0, 0, 1, 0);
create(75, 893276729, 2304.9324, 762.4984, 11.1583+4, 0, 0, 0, 0, 1, 0);
create(76, 893276729, 2304.9324, 762.4984, 11.1583+5, 0, 0, 0, 0, 1, 0);
create(77, 893276729, 2304.9324, 762.4984, 11.1583+6, 0, 0, 0, 0, 1, 0);
create(78, 893276729, 2304.9324, 762.4984, 11.1583+7, 0, 0, 0, 0, 1, 0);
create(79, 893276729, 2304.9324, 762.4984, 11.1583+8, 0, 0, 0, 0, 1, 0);
create(80, 893276729, 2304.9324, 762.4984, 11.1583+9, 0, 0, 0, 0, 1, 0);
create(81, 893276729, 2304.9324, 762.4984, 11.1583+10, 0, 0, 0, 0, 1, 0);
create(82, 893276729, 2304.9324, 762.4984, 11.1583+11, 0, 0, 0, 0, 1, 0);
create(83, 893276729, 2304.9324, 762.4984, 11.1583+12, 0, 0, 0, 0, 1, 0);
create(84, 893276729, 2304.9324, 762.4984, 11.1583+13, 0, 0, 0, 0, 1, 0);
create(85, 893276729, 2304.9324, 762.4984, 11.1583+14, 0, 0, 0, 0, 1, 0);
create(86, 893276729, 2304.9324, 762.4984, 11.1583+15, 0, 0, 0, 0, 1, 0);
create(87, 655935014, 2313.0117, 766.7068, 5, 0, 0, 0, 0, 1, 0);//red cube
create(88, 655935014, 2313.0117, 766.7068, 5.5, 0, 0, 0, 0, 1, 0);
create(89, 655935014, 2313.0117, 766.7068, 6, 0, 0, 0, 0, 1, 0);
create(90, 655935014, 2313.0117, 766.7068, 6.5, 0, 0, 0, 0, 1, 0);
create(91, 655935014, 2313.0117, 766.7068, 7, 0, 0, 0, 0, 1, 0);
create(92, 655935014, 2313.0117, 766.7068, 7.5, 0, 0, 0, 0, 1, 0);
create(93, 655935014, 2313.0117, 766.7068, 8, 0, 0, 0, 0, 1, 0);
create(94, 655935014, 2313.0117, 766.7068, 8.5, 0, 0, 0, 0, 1, 0);
create(95, 655935014, 2313.0117, 766.7068, 9, 0, 0, 0, 0, 1, 0);
create(96, 655935014, 2313.0117, 766.7068, 9.5, 0, 0, 0, 0, 1, 0);
create(97, 655935014, 2313.0117, 766.7068, 10, 0, 0, 0, 0, 1, 0);
create(98, 655935014, 2313.0117, 766.7068, 10.5, 0, 0, 0, 0, 1, 0);
create(99, 655935014, 2313.0117, 766.7068, 11, 0, 0, 0, 0, 1, 0);
create(100, 655935014, 2313.0117, 766.7068, 11.5, 0, 0, 0, 0, 1, 0);
create(101, 655935014, 2313.0117, 766.7068, 12, 0, 0, 0, 0, 1, 0);
create(102, 655935014, 2313.0117, 766.7068, 12.5, 0, 0, 0, 0, 1, 0);
create(103, 655935014, 2313.0117, 766.7068, 13, 0, 0, 0, 0, 1, 0);
create(104, 655935014, 2313.0117, 766.7068, 13.5, 0, 0, 0, 0, 1, 0);
create(105, 655935014, 2313.0117, 766.7068, 14, 0, 0, 0, 0, 1, 0);
create(106, 655935014, 2313.0117, 766.7068, 14.5, 0, 0, 0, 0, 1, 0);
create(107, 655935014, 2313.0117, 766.7068, 15, 0, 0, 0, 0, 1, 0);
create(108, 655935014, 2313.0117, 766.7068, 15.5, 0, 0, 0, 0, 1, 0);
create(109, 655935014, 2313.0117, 766.7068, 16, 0, 0, 0, 0, 1, 0);
create(110, 655935014, 2313.0117, 766.7068, 16.5, 0, 0, 0, 0, 1, 0);
create(111, 655935014, 2313.0117, 766.7068, 17, 0, 0, 0, 0, 1, 0);
create(112, 655935014, 2313.0117, 766.7068, 17.5, 0, 0, 0, 0, 1, 0);
create(113, 655935014, 2313.0117, 766.7068, 18, 0, 0, 0, 0, 1, 0);
create(114, 655935014, 2313.0117, 766.7068, 18.5, 0, 0, 0, 0, 1, 0);
create(115, 655935014, 2313.0117, 766.7068, 19, 0, 0, 0, 0, 1, 0);
create(116, 655935014, 2313.0117, 766.7068, 19.5, 0, 0, 0, 0, 1, 0);
create(117, 655935014, 2313.0117, 766.7068, 20, 0, 0, 0, 0, 1, 0);
create(118, 655935014, 2313.0117, 766.7068, 20.5, 0, 0, 0, 0, 1, 0);
create(119, 655935014, 2313.0117, 766.7068, 21, 0, 0, 0, 0, 1, 0);
create(120, 655935014, 2313.0117, 766.7068, 21.5, 0, 0, 0, 0, 1, 0);
create(121, 655935014, 2313.0117, 766.7068, 22, 0, 0, 0, 0, 1, 0);
create(122, 655935014, 2313.0117, 766.7068, 22.5, 0, 0, 0, 0, 1, 0);
create(123, 655935014, 2301.0500, 754.4277, 5+0.5, 0, 0, 0, 0, 1, 0);
create(124, 655935014, 2301.0500, 754.4277, 5+1, 0, 0, 0, 0, 1, 0);
create(125, 655935014, 2301.0500, 754.4277, 5+1.5, 0, 0, 0, 0, 1, 0);
create(126, 655935014, 2301.0500, 754.4277, 5+2, 0, 0, 0, 0, 1, 0);
create(127, 655935014, 2301.0500, 754.4277, 5+2.5, 0, 0, 0, 0, 1, 0);
create(128, 655935014, 2301.0500, 754.4277, 5+3, 0, 0, 0, 0, 1, 0);
create(129, 655935014, 2301.0500, 754.4277, 5+3.5, 0, 0, 0, 0, 1, 0);
create(130, 655935014, 2301.0500, 754.4277, 5+4, 0, 0, 0, 0, 1, 0);
create(131, 655935014, 2301.0500, 754.4277, 5+4.5, 0, 0, 0, 0, 1, 0);
create(132, 655935014, 2301.0500, 754.4277, 5+5, 0, 0, 0, 0, 1, 0);
create(133, 655935014, 2301.0500, 754.4277, 5+5.5, 0, 0, 0, 0, 1, 0);
create(134, 655935014, 2301.0500, 754.4277, 5+6, 0, 0, 0, 0, 1, 0);
create(135, 655935014, 2301.0500, 754.4277, 5+6.5, 0, 0, 0, 0, 1, 0);
create(136, 655935014, 2301.0500, 754.4277, 5+7, 0, 0, 0, 0, 1, 0);
create(137, 655935014, 2301.0500, 754.4277, 5+7.5, 0, 0, 0, 0, 1, 0);
create(138, 655935014, 2301.0500, 754.4277, 5+8, 0, 0, 0, 0, 1, 0);
create(139, 655935014, 2301.0500, 754.4277, 5+8.5, 0, 0, 0, 0, 1, 0);
create(140, 655935014, 2301.0500, 754.4277, 5+9, 0, 0, 0, 0, 1, 0);
create(141, 655935014, 2301.0500, 754.4277, 5+9.5, 0, 0, 0, 0, 1, 0);
create(142, 655935014, 2301.0500, 754.4277, 5+10, 0, 0, 0, 0, 1, 0);
create(143, 655935014, 2301.0500, 754.4277, 5+10.5, 0, 0, 0, 0, 1, 0);
create(144, 655935014, 2301.0500, 754.4277, 5+11, 0, 0, 0, 0, 1, 0);
create(145, 655935014, 2301.0500, 754.4277, 5+11.5, 0, 0, 0, 0, 1, 0);
create(146, 655935014, 2301.0500, 754.4277, 5+12, 0, 0, 0, 0, 1, 0);
create(147, 655935014, 2301.0500, 754.4277, 5+12.5, 0, 0, 0, 0, 1, 0);
create(148, 655935014, 2301.0500, 754.4277, 5+13, 0, 0, 0, 0, 1, 0);
create(149, 655935014, 2301.0500, 754.4277, 5+13.5, 0, 0, 0, 0, 1, 0);
create(150, 655935014, 2301.0500, 754.4277, 5+14, 0, 0, 0, 0, 1, 0);
create(151, 655935014, 2301.0500, 754.4277, 5+14.5, 0, 0, 0, 0, 1, 0);
create(153, 655935014, 2301.0500, 754.4277, 5+15, 0, 0, 0, 0, 1, 0);
create(154, 655935014, 2301.0500, 754.4277, 5+15.5, 0, 0, 0, 0, 1, 0);
create(155, 655935014, 2301.0500, 754.4277, 5+16, 0, 0, 0, 0, 1, 0);
create(156, 655935014, 2301.0500, 754.4277, 5+16.5, 0, 0, 0, 0, 1, 0);
create(157, 655935014, 2301.0500, 754.4277, 5+17, 0, 0, 0, 0, 1, 0);
create(158, 655935014, 2301.0500, 754.4277, 5+17.5, 0, 0, 0, 0, 1, 0);
#ifdef READY
print(READY); WAIT(3000);
#endif
#ifdef READY2
print(READY2); WAIT(3000);
#endif
#ifdef SHOUTS
print(SHOUTS); WAIT(3000);
#endif
#ifdef SHOUTS2
print(SHOUTS2); WAIT(3000);
#endif
while(true)
WAIT(0);
}