diff --git a/primitives/newbieland/event_anniv_egg.primitive b/primitives/newbieland/event_anniv_egg.primitive
index ea0659d..d6c7bfc 100644
--- a/primitives/newbieland/event_anniv_egg.primitive
+++ b/primitives/newbieland/event_anniv_egg.primitive
@@ -48,7 +48,7 @@
60 90
-
+
class
rest
@@ -74,7 +74,7 @@
-
+
class
food
@@ -100,7 +100,7 @@
-
+
class
spawn
@@ -206,7 +206,7 @@
60 90
-
+
class
rest
@@ -232,7 +232,7 @@
-
+
class
food
@@ -258,7 +258,7 @@
-
+
class
spawn
@@ -390,7 +390,7 @@
-
+
class
food
@@ -416,7 +416,7 @@
-
+
class
spawn
@@ -548,7 +548,7 @@
-
+
class
food
@@ -574,7 +574,7 @@
-
+
class
spawn
@@ -680,7 +680,7 @@
60 90
-
+
class
rest
@@ -706,7 +706,7 @@
-
+
class
food
@@ -864,7 +864,7 @@
-
+
class
food
@@ -890,7 +890,7 @@
-
+
class
spawn
@@ -1022,7 +1022,7 @@
-
+
class
food
@@ -1048,7 +1048,7 @@
-
+
class
spawn
@@ -1154,7 +1154,7 @@
60 90
-
+
class
rest
@@ -1180,7 +1180,7 @@
-
+
class
food
@@ -1338,7 +1338,7 @@
-
+
class
food
@@ -1364,7 +1364,7 @@
-
+
class
spawn
@@ -1445,9802 +1445,5 @@
-
-
- class
- npc_manager
-
-
- name
- essai_feux
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- class
- npc_folder
-
-
- name
- manager
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- ai_activity
- normal
-
-
- ai_movement
- stand_on_start_point
-
-
- class
- npc_zone
-
-
- name
- essai_feux
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- class
- npc_group
-
-
- name
- essai_feux
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- npc
-
-
- sheet_client
- disp_jimman
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_state_event_handler
-
-
- event
- start_of_state
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()despawn(1);
- //this script controls the dynamic botobjects in the corrupted moor
- //persistency and rebuilding is ensured by the master dummy found in master_manager_corrupted_moor.primitive
- //Simbad 06/2006
- //////////////////////////////settings////////////////////////////////////////////
- ///////////////////////globals initialization/////////////////////////////////////
- CompanyGroupMissionAdvancement = 0; //vars taken from tcm_master dummy to track company trees advancement
- CompanyGroupMissionObjective = 0; //same
- ValcorState = 0; //same
- CurrentTreeStep = 0; //var containing current dynamic tree step
- ResetTreeTimer = 3000; //timer used to reset trees by smooth despawn
-
- KaravanGroupMissionAdvancement = 0; //vars taken from tcm_master dummy to track company trees advancement
- KaravanGroupMissionObjective = 0; //same
- InvasionState = 0; //same
- CurrentLabStep = 0; //var containing current dynamic tree step
- ResetLabTimer = 3000; //timer used to reset trees by smooth despawn
-
- ValcorFlameStep = 0; //var tracking which flame to spawn during valcor ceremony script
- ValcorFlameInterval = 5; //interval between spawns of flames in ticks
-
- KaravanFireworkStep = 0; //var tracking current firework step during karavan honor ceremony
- CompanyFireworkStep = 0; //var tracking firework step during company hola
- KaravanFireworkRunning = 0; //flag set to 1 when karavan firework is running, 0 when company firework is running, no meaning when none is running
-
- ///////////////////////local functions declarations///////////////////////////////
- readyQuery() //function called by tcm_init_dummy to check if this dummy is ready
- {
- tcm_init_sequence_dummy_group.tcm_dynamic_botobjects_dummy_groupReadyAnswer();
- }
-
- //**********************************fireworks*********************************************
- startKaravanFirework() //trigger of karavan fireworks, called by urban_tcm_karavan_master
- {
- ()setTimer(100,3);
- KaravanFireworkRunning = 1;
- KaravanFireworkStep = 0;
- }
-
- startCompanyFirework() //trigger of karavan fireworks, called by urban_tcm_company_master
- {
- ()setTimer(100,3);
- KaravanFireworkRunning = 0;
- CompanyFireworkStep = 0;
- }
-
- nextFireworkStep() //trick to use only one timer as both fireworks can't run at the same time
- {
- if(KaravanFireworkRunning == 1)
- {
- nextKaravanFireworkStep();
- }
- else
- {
- nextCompanyFireworkStep();
- }
- }
-
- nextKaravanFireworkStep() //launches spawn of a firework step then sets timer for the next
- {
- if(KaravanFireworkStep == 0)
- {
- ()tcm_karavan_fireworks_autour_colonne.despawn(1);
- ()tcm_karavan_fireworks_triple.despawn(1);
- ()tcm_karavan_fireworks_mitraille_orange.despawn(1);
- ()tcm_karavan_fireworks_pieuvre_jaune.despawn(1);
- ()tcm_karavan_fireworks_queue_orange.despawn(1);
- ()tcm_karavan_fireworks_mitraille_haut.despawn(1);
-
- ()tcm_karavan_fireworks_triple.spawn();
- KaravanFireworkStep++;
- ()setTimer(50,3);
- }
- else if(KaravanFireworkStep == 1)
- {
- ()tcm_karavan_fireworks_triple.despawn(1);
-
- ()tcm_karavan_fireworks_mitraille_orange.spawn();
- KaravanFireworkStep++;
- ()setTimer(50,3);
- }
- else if(KaravanFireworkStep == 2)
- {
- ()tcm_karavan_fireworks_pieuvre_jaune.spawn();
- KaravanFireworkStep++;
- ()setTimer(100,3);
- }
- else if(KaravanFireworkStep == 3)
- {
- ()tcm_karavan_fireworks_pieuvre_jaune.despawn(1);
- ()tcm_karavan_fireworks_mitraille_orange.despawn(1);
-
- ()tcm_karavan_fireworks_cercle_4.setTimer(10,0);
- ()tcm_karavan_fireworks_cercle_3.setTimer(20,0);
- ()tcm_karavan_fireworks_cercle_2.setTimer(30,0);
- ()tcm_karavan_fireworks_cercle_1.setTimer(40,0);
-
- KaravanFireworkStep++;
- ()setTimer(80,3);
- }
- else if(KaravanFireworkStep == 4)
- {
- ()tcm_karavan_fireworks_mitraille_haut.spawn();
- KaravanFireworkStep++;
- ()setTimer(50,3);
- }
- else if(KaravanFireworkStep == 5)
- {
- ()tcm_karavan_fireworks_pont_1.setTimer(10,0);
- ()tcm_karavan_fireworks_pont_2.setTimer(20,0);
- ()tcm_karavan_fireworks_pont_3.setTimer(30,0);
- ()tcm_karavan_fireworks_pont_4.setTimer(40,0);
- ()tcm_karavan_fireworks_pont_5.setTimer(50,0);
- ()tcm_karavan_fireworks_pont_6.setTimer(50,0);
- ()tcm_karavan_fireworks_pont_7.setTimer(40,0);
- ()tcm_karavan_fireworks_pont_8.setTimer(30,0);
- ()tcm_karavan_fireworks_pont_9.setTimer(20,0);
- ()tcm_karavan_fireworks_pont_10.setTimer(10,0);
-
- KaravanFireworkStep++;
- ()setTimer(50,3);
- }
- else if(KaravanFireworkStep == 6)
- {
- ()tcm_karavan_fireworks_mitraille_haut.despawn(1);
-
- ()tcm_karavan_fireworks_mitraille_haut.spawn();
- ()tcm_karavan_fireworks_queue_orange.spawn();
- KaravanFireworkStep++;
- ()setTimer(50,3);
- }
- else if(KaravanFireworkStep == 7)
- {
- ()tcm_karavan_fireworks_mitraille_haut.despawn(1);
-
- ()tcm_karavan_fireworks_mitraille_haut.spawn();
- ()tcm_karavan_fireworks_triple.spawn();
- KaravanFireworkStep++;
- ()setTimer(100,3);
- }
- else if(KaravanFireworkStep == 8)
- {
- ()tcm_karavan_fireworks_queue_orange.despawn(1);
- ()tcm_karavan_fireworks_mitraille_haut.despawn(1);
- ()tcm_karavan_fireworks_triple.despawn(1);
-
- ()tcm_karavan_fireworks_autour_mitraille.spawn();
- KaravanFireworkStep++;
- ()setTimer(20,3);
- }
- else if(KaravanFireworkStep == 9)
- {
- ()tcm_karavan_fireworks_autour_colonne.spawn();
- ()tcm_karavan_fireworks_triple.spawn();
- ()tcm_karavan_fireworks_mitraille_orange.spawn();
- ()tcm_karavan_fireworks_pieuvre_jaune.spawn();
- ()tcm_karavan_fireworks_queue_orange.spawn();
- ()tcm_karavan_fireworks_mitraille_haut.spawn();
-
- ()tcm_karavan_fireworks_cercle_4.setTimer(10,0);
- ()tcm_karavan_fireworks_cercle_3.setTimer(10,0);
- ()tcm_karavan_fireworks_cercle_2.setTimer(10,0);
- ()tcm_karavan_fireworks_cercle_1.setTimer(10,0);
- ()tcm_karavan_fireworks_pont_1.setTimer(50,0);
- ()tcm_karavan_fireworks_pont_2.setTimer(50,0);
- ()tcm_karavan_fireworks_pont_3.setTimer(50,0);
- ()tcm_karavan_fireworks_pont_4.setTimer(50,0);
- ()tcm_karavan_fireworks_pont_5.setTimer(50,0);
- ()tcm_karavan_fireworks_pont_6.setTimer(50,0);
- ()tcm_karavan_fireworks_pont_7.setTimer(50,0);
- ()tcm_karavan_fireworks_pont_8.setTimer(50,0);
- ()tcm_karavan_fireworks_pont_9.setTimer(50,0);
- ()tcm_karavan_fireworks_pont_10.setTimer(50,0);
-
- KaravanFireworkStep = 0;
- ()setTimer(300,3);
- }
- }
-
- nextCompanyFireworkStep() //launches spawn of a firework step then sets timer for the next
- {
- if(CompanyFireworkStep == 0)
- {
- ()tcm_company_fireworks_coeur.despawn(1);
- ()tcm_company_fireworks_mitraille_orange.despawn(1);
- ()tcm_company_fireworks_pieuvre_jaune.despawn(1);
- ()tcm_company_fireworks_final.despawn(1);
- ()tcm_company_fireworks_mitraille_riviere.despawn(1);
- ()tcm_company_fireworks_spirale.despawn(1);
-
- ()tcm_company_fireworks_coeur.spawn();
-
- CompanyFireworkStep++;
- ()setTimer(50,3);
- }
- else if(CompanyFireworkStep == 1)
- {
-
- ()tcm_company_fireworks_mitraille_orange.spawn();
-
- CompanyFireworkStep++;
- ()setTimer(20,3);
- }
- else if(CompanyFireworkStep == 2)
- {
- ()tcm_company_fireworks_coeur.despawn(1);
-
- ()tcm_company_fireworks_soucoupe_bleue_1.setTimer(10,0);
- ()tcm_company_fireworks_soucoupe_bleue_2.setTimer(20,0);
- ()tcm_company_fireworks_soucoupe_bleue_3.setTimer(30,0);
- ()tcm_company_fireworks_soucoupe_bleue_4.setTimer(40,0);
- ()tcm_company_fireworks_soucoupe_bleue_5.setTimer(50,0);
- ()tcm_company_fireworks_soucoupe_bleue_6.setTimer(60,0);
- ()tcm_company_fireworks_soucoupe_bleue_7.setTimer(70,0);
- ()tcm_company_fireworks_soucoupe_bleue_8.setTimer(80,0);
- ()tcm_company_fireworks_soucoupe_bleue_9.setTimer(90,0);
- ()tcm_company_fireworks_soucoupe_bleue_10.setTimer(100,0);
-
- CompanyFireworkStep++;
- ()setTimer(180,3);
- }
- else if(CompanyFireworkStep == 3)
- {
- ()tcm_company_fireworks_mitraille_orange.despawn(1);
-
- ()tcm_company_fireworks_pieuvre_jaune.spawn();
- CompanyFireworkStep++;
- ()setTimer(30,3);
- }
- else if(CompanyFireworkStep == 4)
- {
- ()tcm_company_fireworks_spirale.spawn();
-
- CompanyFireworkStep++;
- ()setTimer(50,3);
- }
- else if(CompanyFireworkStep == 5)
- {
- ()tcm_company_fireworks_pieuvre_jaune.despawn(1);
-
- ()tcm_company_fireworks_solo_haut_1.setTimer(10,0);
- ()tcm_company_fireworks_solo_haut_2.setTimer(20,0);
- ()tcm_company_fireworks_solo_haut_3.setTimer(30,0);
- ()tcm_company_fireworks_solo_haut_4.setTimer(40,0);
- CompanyFireworkStep++;
- ()setTimer(100,3);
- }
- else if(CompanyFireworkStep == 6)
- {
- ()tcm_company_fireworks_spirale.despawn(1);
-
- ()tcm_company_fireworks_final.spawn();
- ()tcm_company_fireworks_mitraille_riviere.spawn();
- ()tcm_company_fireworks_mitraille_orange.spawn();
- ()tcm_company_fireworks_spirale.spawn();
-
- CompanyFireworkStep++;
- ()setTimer(50,3);
- }
- else if(CompanyFireworkStep == 7)
- {
- ()tcm_company_fireworks_coeur.spawn();
- ()tcm_company_fireworks_soucoupe_bleue_1.setTimer(20,0);
- ()tcm_company_fireworks_soucoupe_bleue_2.setTimer(20,0);
- ()tcm_company_fireworks_soucoupe_bleue_3.setTimer(20,0);
- ()tcm_company_fireworks_soucoupe_bleue_4.setTimer(20,0);
- ()tcm_company_fireworks_soucoupe_bleue_5.setTimer(20,0);
- ()tcm_company_fireworks_soucoupe_bleue_6.setTimer(20,0);
- ()tcm_company_fireworks_soucoupe_bleue_7.setTimer(20,0);
- ()tcm_company_fireworks_soucoupe_bleue_8.setTimer(20,0);
- ()tcm_company_fireworks_soucoupe_bleue_9.setTimer(20,0);
- ()tcm_company_fireworks_soucoupe_bleue_10.setTimer(20,0);
- ()tcm_company_fireworks_pieuvre_jaune.spawn();
- ()tcm_company_fireworks_solo_haut_1.setTimer(40,0);
- ()tcm_company_fireworks_solo_haut_2.setTimer(40,0);
- ()tcm_company_fireworks_solo_haut_3.setTimer(40,0);
- ()tcm_company_fireworks_solo_haut_4.setTimer(40,0);
- ()tcm_company_fireworks_final.spawn();
-
- CompanyFireworkStep = 0;
- ()setTimer(300,3);
- }
- }
-
- stopFirework() //resets fireworks flags and vars, despawns every group that don't despawn by itself
- {
- ()tcm_karavan_fireworks_autour_colonne.despawn(1);
- ()tcm_karavan_fireworks_triple.despawn(1);
- ()tcm_karavan_fireworks_mitraille_orange.despawn(1);
- ()tcm_karavan_fireworks_pieuvre_jaune.despawn(1);
- ()tcm_karavan_fireworks_queue_orange.despawn(1);
- ()tcm_karavan_fireworks_mitraille_haut.despawn(1);
- ()tcm_company_fireworks_coeur.despawn(1);
- ()tcm_company_fireworks_spirale.despawn(1);
- ()tcm_company_fireworks_mitraille_orange.despawn(1);
- ()tcm_company_fireworks_pieuvre_jaune.despawn(1);
- ()tcm_company_fireworks_final.despawn(1);
- ()tcm_company_fireworks_mitraille_riviere.despawn(1);
-
- KaravanFireworkStep = 0;
- KaravanFireworkRunning = 0;
- CompanyFireworkStep = 0;
- ()timerDisable(3);
- }
- ///////////////////////script launch///////////////////////////////////////////////
-
-
-
-
-
- class
- npc_state_event_handler
-
-
- event
- timer_t0_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- resetTrees();
-
-
-
-
-
- class
- npc_state_event_handler
-
-
- event
- timer_t1_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- resetLab();
-
-
-
-
-
- class
- npc_state_event_handler
-
-
- event
- timer_t2_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- nextValcorFlame();
-
-
-
-
-
- class
- npc_state_event_handler
-
-
- event
- timer_t3_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- nextFireworkStep();
-
-
-
-
-
-
-
- class
- npc_folder
-
-
- name
- fireworks
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- class
- npc_zone
-
-
- name
- tcm_karavan_fireworks
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_karavan_fireworks_pieuvre_jaune
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_C
-
-
- sheet_client
- tcm_botobject_fireworkc
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_C
-
-
- sheet_client
- tcm_botobject_fireworkc
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_C
-
-
- sheet_client
- tcm_botobject_fireworkc
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_karavan_fireworks_triple
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_H
-
-
- sheet_client
- tcm_botobject_fireworkh
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_H
-
-
- sheet_client
- tcm_botobject_fireworkh
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_H
-
-
- sheet_client
- tcm_botobject_fireworkh
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_H
-
-
- sheet_client
- tcm_botobject_fireworkh
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_karavan_fireworks_mitraille_orange
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_N
-
-
- sheet_client
- tcm_botobject_fireworkn
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_N
-
-
- sheet_client
- tcm_botobject_fireworkn
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_N
-
-
- sheet_client
- tcm_botobject_fireworkn
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_N
-
-
- sheet_client
- tcm_botobject_fireworkn
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_N
-
-
- sheet_client
- tcm_botobject_fireworkn
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_N
-
-
- sheet_client
- tcm_botobject_fireworkn
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_karavan_fireworks_cercle_1
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_D
-
-
- sheet_client
- tcm_botobject_fireworkd
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_D
-
-
- sheet_client
- tcm_botobject_fireworkd
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t0_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()spawn();
- ()setTimer(100,1);
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t1_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()despawn(1);
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_karavan_fireworks_cercle_2
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_D
-
-
- sheet_client
- tcm_botobject_fireworkd
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_D
-
-
- sheet_client
- tcm_botobject_fireworkd
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t0_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()spawn();
- ()setTimer(100,1);
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t1_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()despawn(1);
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_karavan_fireworks_cercle_3
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_D
-
-
- sheet_client
- tcm_botobject_fireworkd
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_D
-
-
- sheet_client
- tcm_botobject_fireworkd
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t0_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()spawn();
- ()setTimer(100,1);
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t1_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()despawn(1);
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_karavan_fireworks_cercle_4
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_D
-
-
- sheet_client
- tcm_botobject_fireworkd
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_D
-
-
- sheet_client
- tcm_botobject_fireworkd
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t0_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()spawn();
- ()setTimer(100,1);
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t1_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()despawn(1);
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_karavan_fireworks_mitraille_haut
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_E
-
-
- sheet_client
- tcm_botobject_fireworke
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_E
-
-
- sheet_client
- tcm_botobject_fireworke
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_E
-
-
- sheet_client
- tcm_botobject_fireworke
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_E
-
-
- sheet_client
- tcm_botobject_fireworke
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_E
-
-
- sheet_client
- tcm_botobject_fireworke
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_E
-
-
- sheet_client
- tcm_botobject_fireworke
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_E
-
-
- sheet_client
- tcm_botobject_fireworke
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_E
-
-
- sheet_client
- tcm_botobject_fireworke
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_karavan_fireworks_pont_1
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_O
-
-
- sheet_client
- tcm_botobject_fireworko
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t0_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()spawn();
- ()setTimer(100,1);
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t1_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()despawn(1);
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_karavan_fireworks_pont_2
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_O
-
-
- sheet_client
- tcm_botobject_fireworko
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t0_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()spawn();
- ()setTimer(100,1);
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t1_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()despawn(1);
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_karavan_fireworks_pont_3
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_O
-
-
- sheet_client
- tcm_botobject_fireworko
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t0_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()spawn();
- ()setTimer(100,1);
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t1_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()despawn(1);
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_karavan_fireworks_pont_4
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_O
-
-
- sheet_client
- tcm_botobject_fireworko
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t0_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()spawn();
- ()setTimer(100,1);
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t1_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()despawn(1);
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_karavan_fireworks_pont_5
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_O
-
-
- sheet_client
- tcm_botobject_fireworko
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t0_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()spawn();
- ()setTimer(100,1);
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t1_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()despawn(1);
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_karavan_fireworks_pont_6
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_O
-
-
- sheet_client
- tcm_botobject_fireworko
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t0_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()spawn();
- ()setTimer(100,1);
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t1_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()despawn(1);
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_karavan_fireworks_pont_7
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_O
-
-
- sheet_client
- tcm_botobject_fireworko
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t0_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()spawn();
- ()setTimer(100,1);
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t1_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()despawn(1);
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_karavan_fireworks_pont_8
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_O
-
-
- sheet_client
- tcm_botobject_fireworko
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t0_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()spawn();
- ()setTimer(100,1);
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t1_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()despawn(1);
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_karavan_fireworks_pont_9
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_O
-
-
- sheet_client
- tcm_botobject_fireworko
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t0_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()spawn();
- ()setTimer(100,1);
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t1_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()despawn(1);
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_karavan_fireworks_pont_10
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_O
-
-
- sheet_client
- tcm_botobject_fireworko
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t0_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()spawn();
- ()setTimer(100,1);
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t1_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()despawn(1);
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_karavan_fireworks_queue_orange
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_I
-
-
- sheet_client
- tcm_botobject_fireworki
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_I
-
-
- sheet_client
- tcm_botobject_fireworki
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_karavan_fireworks_autour_mitraille
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_J
-
-
- sheet_client
- tcm_botobject_fireworkj
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_karavan_fireworks_autour_colonne
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_F
-
-
- sheet_client
- tcm_botobject_fireworkf
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_F
-
-
- sheet_client
- tcm_botobject_fireworkf
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_F
-
-
- sheet_client
- tcm_botobject_fireworkf
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_F
-
-
- sheet_client
- tcm_botobject_fireworkf
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_F
-
-
- sheet_client
- tcm_botobject_fireworkf
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_F
-
-
- sheet_client
- tcm_botobject_fireworkf
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_F
-
-
- sheet_client
- tcm_botobject_fireworkf
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_F
-
-
- sheet_client
- tcm_botobject_fireworkf
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_F
-
-
- sheet_client
- tcm_botobject_fireworkf
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_F
-
-
- sheet_client
- tcm_botobject_fireworkf
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_F
-
-
- sheet_client
- tcm_botobject_fireworkf
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_F
-
-
- sheet_client
- tcm_botobject_fireworkf
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_F
-
-
- sheet_client
- tcm_botobject_fireworkf
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_F
-
-
- sheet_client
- tcm_botobject_fireworkf
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_F
-
-
- sheet_client
- tcm_botobject_fireworkf
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_F
-
-
- sheet_client
- tcm_botobject_fireworkf
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_F
-
-
- sheet_client
- tcm_botobject_fireworkf
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_F
-
-
- sheet_client
- tcm_botobject_fireworkf
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_zone
-
-
- name
- tcm_company_fireworks
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_company_fireworks_coeur
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_P
-
-
- sheet_client
- tcm_botobject_fireworkp
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_P
-
-
- sheet_client
- tcm_botobject_fireworkp
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_P
-
-
- sheet_client
- tcm_botobject_fireworkp
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_P
-
-
- sheet_client
- tcm_botobject_fireworkp
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_company_fireworks_mitraille_orange
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_G
-
-
- sheet_client
- tcm_botobject_fireworkg
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_G
-
-
- sheet_client
- tcm_botobject_fireworkg
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_G
-
-
- sheet_client
- tcm_botobject_fireworkg
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_G
-
-
- sheet_client
- tcm_botobject_fireworkg
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_G
-
-
- sheet_client
- tcm_botobject_fireworkg
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_G
-
-
- sheet_client
- tcm_botobject_fireworkg
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_G
-
-
- sheet_client
- tcm_botobject_fireworkg
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_G
-
-
- sheet_client
- tcm_botobject_fireworkg
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_G
-
-
- sheet_client
- tcm_botobject_fireworkg
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_G
-
-
- sheet_client
- tcm_botobject_fireworkg
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_G
-
-
- sheet_client
- tcm_botobject_fireworkg
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_G
-
-
- sheet_client
- tcm_botobject_fireworkg
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_G
-
-
- sheet_client
- tcm_botobject_fireworkg
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_G
-
-
- sheet_client
- tcm_botobject_fireworkg
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_G
-
-
- sheet_client
- tcm_botobject_fireworkg
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_company_fireworks_soucoupe_bleue_1
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_B
-
-
- sheet_client
- tcm_botobject_fireworkb
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t0_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()spawn();
- ()setTimer(200,1);
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t1_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()despawn(1);
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_company_fireworks_soucoupe_bleue_2
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_B
-
-
- sheet_client
- tcm_botobject_fireworkb
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t1_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()despawn(1);
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t0_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()spawn();
- ()setTimer(200,1);
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_company_fireworks_soucoupe_bleue_3
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_B
-
-
- sheet_client
- tcm_botobject_fireworkb
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t1_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()despawn(1);
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t0_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()spawn();
- ()setTimer(200,1);
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_company_fireworks_soucoupe_bleue_4
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_B
-
-
- sheet_client
- tcm_botobject_fireworkb
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t1_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()despawn(1);
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t0_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()spawn();
- ()setTimer(200,1);
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_company_fireworks_soucoupe_bleue_5
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_B
-
-
- sheet_client
- tcm_botobject_fireworkb
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t1_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()despawn(1);
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t0_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()spawn();
- ()setTimer(200,1);
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_company_fireworks_soucoupe_bleue_6
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_B
-
-
- sheet_client
- tcm_botobject_fireworkb
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t1_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()despawn(1);
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t0_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()spawn();
- ()setTimer(200,1);
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_company_fireworks_soucoupe_bleue_7
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_B
-
-
- sheet_client
- tcm_botobject_fireworkb
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t1_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()despawn(1);
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t0_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()spawn();
- ()setTimer(200,1);
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_company_fireworks_soucoupe_bleue_8
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_B
-
-
- sheet_client
- tcm_botobject_fireworkb
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t1_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()despawn(1);
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t0_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()spawn();
- ()setTimer(200,1);
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_company_fireworks_soucoupe_bleue_9
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_B
-
-
- sheet_client
- tcm_botobject_fireworkb
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t1_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()despawn(1);
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t0_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()spawn();
- ()setTimer(200,1);
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_company_fireworks_soucoupe_bleue_10
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_B
-
-
- sheet_client
- tcm_botobject_fireworkb
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t1_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()despawn(1);
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t0_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()spawn();
- ()setTimer(200,1);
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_company_fireworks_pieuvre_jaune
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_M
-
-
- sheet_client
- tcm_botobject_fireworkm
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_M
-
-
- sheet_client
- tcm_botobject_fireworkm
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_M
-
-
- sheet_client
- tcm_botobject_fireworkm
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_M
-
-
- sheet_client
- tcm_botobject_fireworkm
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_M
-
-
- sheet_client
- tcm_botobject_fireworkm
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_M
-
-
- sheet_client
- tcm_botobject_fireworkm
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_M
-
-
- sheet_client
- tcm_botobject_fireworkm
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_company_fireworks_spirale
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_Q
-
-
- sheet_client
- tcm_botobject_fireworkq
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_Q
-
-
- sheet_client
- tcm_botobject_fireworkq
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_Q
-
-
- sheet_client
- tcm_botobject_fireworkq
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_Q
-
-
- sheet_client
- tcm_botobject_fireworkq
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_Q
-
-
- sheet_client
- tcm_botobject_fireworkq
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_Q
-
-
- sheet_client
- tcm_botobject_fireworkq
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_company_fireworks_solo_haut_1
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_R
-
-
- sheet_client
- tcm_botobject_fireworkr
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_R
-
-
- sheet_client
- tcm_botobject_fireworkr
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t0_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()spawn();
- ()setTimer(100,1);
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t1_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()despawn(1);
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_company_fireworks_solo_haut_2
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_R
-
-
- sheet_client
- tcm_botobject_fireworkr
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_R
-
-
- sheet_client
- tcm_botobject_fireworkr
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t0_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()spawn();
- ()setTimer(100,1);
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t1_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()despawn(1);
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_company_fireworks_solo_haut_3
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_R
-
-
- sheet_client
- tcm_botobject_fireworkr
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_R
-
-
- sheet_client
- tcm_botobject_fireworkr
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t0_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()spawn();
- ()setTimer(100,1);
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t1_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()despawn(1);
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_company_fireworks_solo_haut_4
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_R
-
-
- sheet_client
- tcm_botobject_fireworkr
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_R
-
-
- sheet_client
- tcm_botobject_fireworkr
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t0_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()spawn();
- ()setTimer(100,1);
-
-
-
-
-
- class
- npc_group_event_handler
-
-
- event
- timer_t1_triggered
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
- action
- code
-
-
- class
- npc_event_handler_action
-
-
- parameters
- ()despawn(1);
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_company_fireworks_mitraille_riviere
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- is_stuck
- true
-
-
- name
- tcm_firework_A
-
-
- sheet_client
- tcm_botobject_fireworka
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- is_stuck
- true
-
-
- name
- tcm_firework_A
-
-
- sheet_client
- tcm_botobject_fireworka
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- is_stuck
- true
-
-
- name
- tcm_firework_A
-
-
- sheet_client
- tcm_botobject_fireworka
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- is_stuck
- true
-
-
- name
- tcm_firework_A
-
-
- sheet_client
- tcm_botobject_fireworka
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- is_stuck
- true
-
-
- name
- tcm_firework_A
-
-
- sheet_client
- tcm_botobject_fireworka
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- is_stuck
- true
-
-
- name
- tcm_firework_A
-
-
- sheet_client
- tcm_botobject_fireworka
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- is_stuck
- true
-
-
- name
- tcm_firework_A
-
-
- sheet_client
- tcm_botobject_fireworka
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- is_stuck
- true
-
-
- name
- tcm_firework_A
-
-
- sheet_client
- tcm_botobject_fireworka
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- is_stuck
- true
-
-
- name
- tcm_firework_A
-
-
- sheet_client
- tcm_botobject_fireworka
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- is_stuck
- true
-
-
- name
- tcm_firework_A
-
-
- sheet_client
- tcm_botobject_fireworka
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- is_stuck
- true
-
-
- name
- tcm_firework_A
-
-
- sheet_client
- tcm_botobject_fireworka
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- is_stuck
- true
-
-
- name
- tcm_firework_A
-
-
- sheet_client
- tcm_botobject_fireworka
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- is_stuck
- true
-
-
- name
- tcm_firework_A
-
-
- sheet_client
- tcm_botobject_fireworka
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- is_stuck
- true
-
-
- name
- tcm_firework_A
-
-
- sheet_client
- tcm_botobject_fireworka
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- is_stuck
- true
-
-
- name
- tcm_firework_A
-
-
- sheet_client
- tcm_botobject_fireworka
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- is_stuck
- true
-
-
- name
- tcm_firework_A
-
-
- sheet_client
- tcm_botobject_fireworka
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- is_stuck
- true
-
-
- name
- tcm_firework_A
-
-
- sheet_client
- tcm_botobject_fireworka
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- is_stuck
- true
-
-
- name
- tcm_firework_A
-
-
- sheet_client
- tcm_botobject_fireworka
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- is_stuck
- true
-
-
- name
- tcm_firework_A
-
-
- sheet_client
- tcm_botobject_fireworka
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- is_stuck
- true
-
-
- name
- tcm_firework_A
-
-
- sheet_client
- tcm_botobject_fireworka
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- is_stuck
- true
-
-
- name
- tcm_firework_A
-
-
- sheet_client
- tcm_botobject_fireworka
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- is_stuck
- true
-
-
- name
- tcm_firework_A
-
-
- sheet_client
- tcm_botobject_fireworka
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- is_stuck
- true
-
-
- name
- tcm_firework_A
-
-
- sheet_client
- tcm_botobject_fireworka
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- is_stuck
- true
-
-
- name
- tcm_firework_A
-
-
- sheet_client
- tcm_botobject_fireworka
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- autoSpawn
- false
-
-
- class
- npc_group
-
-
- name
- tcm_company_fireworks_final
-
-
-
- class
- npc_group_parameters
-
-
- name
- parameters
-
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_S
-
-
- sheet_client
- tcm_botobject_fireworks
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_S
-
-
- sheet_client
- tcm_botobject_fireworks
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_S
-
-
- sheet_client
- tcm_botobject_fireworks
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_S
-
-
- sheet_client
- tcm_botobject_fireworks
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_S
-
-
- sheet_client
- tcm_botobject_fireworks
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-
- class
- npc_bot
-
-
- name
- tcm_firework_S
-
-
- sheet_client
- tcm_botobject_fireworks
-
-
-
-
- class
- alias
-
-
- name
- alias
-
-
-
-
-
-
-