Expert_4.txt 47 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405
  1. //===== eAthena Script =======================================
  2. //= Turbo Track - Expert - 4 Person
  3. //===== By: ==================================================
  4. //= L0ne_W0lf
  5. //===== Current Version: =====================================
  6. //= 1.3
  7. //===== Compatible With: =====================================
  8. //= eAthena SVN
  9. //===== Description: =========================================
  10. //= [Aegis Conversion]
  11. //= Turbo Track Course: Expert (PVP) - 4 Person
  12. //===== Additional Comments: =================================
  13. //= 1.0 First version. [L0ne_W0lf]
  14. //= 1.1 Fixed small official bug. [L0ne_W0lf]
  15. //= 1.2 Fixed a little mistake [akrus]
  16. //= 1.3 Corrected issue with top record setting. [L0ne_W0lf]
  17. //============================================================
  18. turbo_room,110,135,3 script Expert mode - 4 person 124,{
  19. end;
  20. OnInit:
  21. waitingroom "Expert mode - 4 person",60,"Expert mode - 4 person::OnStartArena",4;
  22. //SetFeeZeny 1000
  23. enablewaitingroomevent "Expert mode - 4 person";
  24. end;
  25. OnEnable:
  26. enablenpc "Expert mode - 4 person";
  27. enablewaitingroomevent "Expert mode - 4 person";
  28. end;
  29. OnStartArena:
  30. warpwaitingpc "turbo_e_4",298,161;
  31. donpcevent "Broadcast#e4::OnEnable";
  32. disablewaitingroomevent "Expert mode - 4 person";
  33. end;
  34. }
  35. turbo_e_4,298,167,3 script Helper#e4_F 124,{
  36. mes "[Helper]";
  37. mes "You are now in the";
  38. mes "Waiting Room. You will";
  39. mes "be guided to the Starting Line";
  40. mes "after 30 seconds, so please use";
  41. mes "this time to prepare your items";
  42. mes "and equipment. Thank you.";
  43. close;
  44. }
  45. turbo_e_4,298,167,0 script Point Give-Away Guy#e4 -1,15,15,{
  46. OnInit:
  47. disablenpc "Point Give-Away Guy#e4";
  48. end;
  49. OnTouch:
  50. if (tt_point < 28999) {
  51. set tt_point,tt_point+2;
  52. warp "turbo_e_4",59,364;
  53. }
  54. else
  55. warp "turbo_e_4",59,364;
  56. end;
  57. }
  58. turbo_e_4,167,3,0 script Broadcast#e4 -1,{
  59. OnInit:
  60. disablenpc "Broadcast#e4";
  61. end;
  62. OnEnable:
  63. enablenpc "Broadcast#e4";
  64. initnpctimer;
  65. end;
  66. OnTimer2000:
  67. mapannounce "turbo_e_4","You are now in the Waiting Room where you can check your items and prepare for the race.",bc_map,"0x33FF66";
  68. end;
  69. OnTimer7000:
  70. mapannounce "turbo_e_4","You will have 30 seconds before you are transported to the Starting Line.",bc_map,"0x33FF66";
  71. end;
  72. OnTimer10000:
  73. mapannounce "turbo_e_4","Please make sure that you have suitable equipment and items with you.",bc_map,"0x33FF66";
  74. end;
  75. OnTimer15000:
  76. mapannounce "turbo_e_4","The 30 second countdown will begin shortly.",bc_map,"0x33FF66";
  77. end;
  78. OnTimer17000:
  79. mapannounce "turbo_e_4","30 seconds remaining.",bc_map,"0x33FF66";
  80. end;
  81. OnTimer27000:
  82. mapannounce "turbo_e_4","20 seconds remaining.",bc_map,"0x33FF66";
  83. end;
  84. OnTimer37000:
  85. mapannounce "turbo_e_4","10 seconds remaining.",bc_map,"0x33FF66";
  86. end;
  87. OnTimer42000:
  88. mapannounce "turbo_e_4","5 seconds remaining.",bc_map,"0x33FF66";
  89. end;
  90. OnTimer43000:
  91. mapannounce "turbo_e_4","4 seconds remaining.",bc_map,"0x33FF66";
  92. end;
  93. OnTimer44000:
  94. mapannounce "turbo_e_4","3 seconds remaining.",bc_map,"0x33FF66";
  95. end;
  96. OnTimer45000:
  97. mapannounce "turbo_e_4","2 seconds remaining.",bc_map,"0x33FF66";
  98. end;
  99. OnTimer46000:
  100. mapannounce "turbo_e_4","1 second remaining.",bc_map,"0x33FF66";
  101. end;
  102. OnTimer47000:
  103. mapannounce "turbo_e_4","You will be transported to the Starting Line shortly.",bc_map,"0x33FF66";
  104. end;
  105. OnTimer49000:
  106. enablenpc "Point Give-Away Guy#e4";
  107. donpcevent "Master#e4::OnEnable";
  108. end;
  109. OnTimer50000:
  110. donpcevent "snake#e4::OnEnable";
  111. donpcevent "hunting#e4::OnEnable";
  112. enablenpc "bing#e4";
  113. end;
  114. OnTimer57000:
  115. disablenpc "Point Give-Away Guy#e4";
  116. end;
  117. }
  118. turbo_e_4,167,3,0 script Master#e4 -1,{
  119. OnInit:
  120. disablenpc "Master#e4";
  121. end;
  122. OnEnable:
  123. enablenpc "Master#e4";
  124. initnpctimer;
  125. end;
  126. OnDisable:
  127. stopnpctimer;
  128. disablenpc "Master#e4";
  129. end;
  130. OnTimer7000:
  131. mapannounce "turbo_e_4","Welcome to the Turbo Track.",bc_map,"0x33FF66";
  132. end;
  133. OnTimer9000:
  134. mapannounce "turbo_e_4","The game will be hosted for 15 minutes and at least one person must complete the entire course.",bc_map,"0x33FF66";
  135. end;
  136. OnTimer11000:
  137. mapannounce "turbo_e_4","We hope you will do your best.",bc_map,"0x33FF66";
  138. end;
  139. OnTimer13000:
  140. mapannounce "turbo_e_4","The game will begin after a 5 second countdown. Everyone, please take your positions behind the Starting Line.",bc_map,"0x33FF66";
  141. end;
  142. OnTimer15000:
  143. mapannounce "turbo_e_4","The countdown will commence shortly.",bc_map,"0x33FF66";
  144. end;
  145. OnTimer17000:
  146. mapannounce "turbo_e_4","- 5 -",bc_map,"0x33FF66";
  147. end;
  148. OnTimer18000:
  149. mapannounce "turbo_e_4","- 4 -",bc_map,"0x33FF66";
  150. end;
  151. OnTimer19000:
  152. mapannounce "turbo_e_4","- 3 -",bc_map,"0x33FF66";
  153. end;
  154. OnTimer20000:
  155. mapannounce "turbo_e_4","- 2 -",bc_map,"0x33FF66";
  156. end;
  157. OnTimer21000:
  158. mapannounce "turbo_e_4","- 1 -",bc_map,"0x33FF66";
  159. end;
  160. OnTimer22000:
  161. mapannounce "turbo_e_4","- 0 -",bc_map,"0x33FF66";
  162. end;
  163. OnTimer23000:
  164. mapannounce "turbo_e_4","Now! The race has begun! Go Go Go!!",bc_map,"0x33FF66";
  165. disablenpc "No_Unfair_Start#e4-1";
  166. disablenpc "No_Unfair_Start#e4-2";
  167. end;
  168. OnTimer30000:
  169. mapannounce "turbo_e_4","Remember that this is a 15 minute race. After 15 minutes, everyone will be transported out of the race track.",bc_map,"0x33FF66";
  170. end;
  171. OnTimer83000:
  172. mapannounce "turbo_e_4","You have 14 minutes left.",bc_map,"0x33FF66";
  173. end;
  174. OnTimer143000:
  175. mapannounce "turbo_e_4","You have 13 minutes left.",bc_map,"0x33FF66";
  176. end;
  177. OnTimer203000:
  178. mapannounce "turbo_e_4","You have 12 minutes left.",bc_map,"0x33FF66";
  179. end;
  180. OnTimer263000:
  181. mapannounce "turbo_e_4","You have 11 minutes left.",bc_map,"0x33FF66";
  182. end;
  183. OnTimer323000:
  184. mapannounce "turbo_e_4","You have 10 minutes left.",bc_map,"0x33FF66";
  185. end;
  186. OnTimer383000:
  187. mapannounce "turbo_e_4","You have 9 minutes left.",bc_map,"0x33FF66";
  188. end;
  189. OnTimer443000:
  190. mapannounce "turbo_e_4","You have 8 minutes left.",bc_map,"0x33FF66";
  191. end;
  192. OnTimer503000:
  193. mapannounce "turbo_e_4","You have 7 minutes left.",bc_map,"0x33FF66";
  194. end;
  195. OnTimer563000:
  196. mapannounce "turbo_e_4","You have 6 minutes left.",bc_map,"0x33FF66";
  197. end;
  198. OnTimer623000:
  199. mapannounce "turbo_e_4","You have 5 minutes left.",bc_map,"0x33FF66";
  200. end;
  201. OnTimer683000:
  202. mapannounce "turbo_e_4","You have 4 minutes left.",bc_map,"0x33FF66";
  203. end;
  204. OnTimer743000:
  205. mapannounce "turbo_e_4","You have 3 minutes left.",bc_map,"0x33FF66";
  206. end;
  207. OnTimer803000:
  208. mapannounce "turbo_e_4","You have 2 minutes left.",bc_map,"0x33FF66";
  209. end;
  210. OnTimer863000:
  211. mapannounce "turbo_e_4","You have 1 minute left.",bc_map,"0x33FF66";
  212. end;
  213. OnTimer893000:
  214. mapannounce "turbo_e_4","You have 30 seconds left.",bc_map,"0x33FF66";
  215. end;
  216. OnTimer903000:
  217. mapannounce "turbo_e_4","You have 20 seconds left.",bc_map,"0x33FF66";
  218. end;
  219. OnTimer913000:
  220. mapannounce "turbo_e_4","You have 10 seconds left.",bc_map,"0x33FF66";
  221. end;
  222. OnTimer918000:
  223. mapannounce "turbo_e_4","You have 5 seconds left.",bc_map,"0x33FF66";
  224. end;
  225. OnTimer919000:
  226. mapannounce "turbo_e_4","You have 4 seconds left.",bc_map,"0x33FF66";
  227. end;
  228. OnTimer920000:
  229. mapannounce "turbo_e_4","You have 3 seconds left.",bc_map,"0x33FF66";
  230. end;
  231. OnTimer921000:
  232. mapannounce "turbo_e_4","You have 2 seconds left.",bc_map,"0x33FF66";
  233. end;
  234. OnTimer922000:
  235. mapannounce "turbo_e_4","You have 1 second left.",bc_map,"0x33FF66";
  236. end;
  237. OnTimer923000:
  238. mapannounce "turbo_e_4","Time's up!",bc_map,"0x33FF66";
  239. end;
  240. OnTimer925000:
  241. mapannounce "turbo_e_4","The race is over.",bc_map,"0x33FF66";
  242. end;
  243. OnTimer927000:
  244. mapannounce "turbo_e_4","[Everyone will be transported to a Waiting Room.]",bc_map,"0x33FF66";
  245. mapwarp "turbo_e_4","turbo_room",71,89;
  246. // all NPC OFF
  247. disablenpc "Broadcast#e4";
  248. donpcevent "Master#e4::OnDisable";
  249. donpcevent "Expert mode - 4 person::OnEnable";
  250. // start line NPC ON
  251. enablenpc "No_Unfair_Start#e4-1";
  252. enablenpc "No_Unfair_Start#e4-2";
  253. // monster reset
  254. donpcevent "snake#e4::Onreset";
  255. donpcevent "hunting#e4::Onreset";
  256. disablenpc "bing2#e4";
  257. // NPC
  258. disablenpc "Winner Helper#TBT_e_4";
  259. enablenpc "cos_e_4_end";
  260. enablenpc "Notice_Maker1#TBT_e_4";
  261. enablenpc "Notice_Maker3#TBT_e_4";
  262. enablenpc "Notice_Maker4#TBT_e_4";
  263. enablenpc "Disposable_Switch#e4";
  264. disablenpc "Flasher_Exit_1#e4";
  265. disablenpc "Flasher_Exit_2#e4";
  266. end;
  267. }
  268. turbo_e_4,62,379,0 script No_Unfair_Start#e4-1 -1,0,31,{
  269. OnTouch:
  270. warp "turbo_e_4",59,364;
  271. end;
  272. }
  273. turbo_e_4,68,379,5 script No_Unfair_Start#e4-2 -1,5,31,{
  274. OnTouch:
  275. warp "turbo_e_4",59,364;
  276. end;
  277. }
  278. // Turbo Track: Expert Mode - 4 Players (Log Race)
  279. turbo_e_4,118,377,0 script trap_a#e_4-1::TurboLogRace_e_4 -1,44,1,{
  280. OnTouch:
  281. set .@dropuser,rand(1,3);
  282. if (.@dropuser == 1)
  283. warp "turbo_e_4",72,372;
  284. else if (.@dropuser == 2)
  285. warp "turbo_e_4",72,365;
  286. else
  287. warp "turbo_e_4",72,357;
  288. end;
  289. }
  290. turbo_e_4,77,375,0 duplicate(TurboLogRace_e_4) trap_a#e_4-2 -1,3,1
  291. turbo_e_4,82,375,0 duplicate(TurboLogRace_e_4) trap_a#e_4-3 -1,1,1
  292. turbo_e_4,82,372,0 duplicate(TurboLogRace_e_4) trap_a#e_4-4 -1,0,2
  293. turbo_e_4,83,372,0 duplicate(TurboLogRace_e_4) trap_a#e_4-5 -1,0,2
  294. turbo_e_4,97,374,0 duplicate(TurboLogRace_e_4) trap_a#e_4-6 -1,1,2
  295. turbo_e_4,98,374,0 duplicate(TurboLogRace_e_4) trap_a#e_4-7 -1,1,2
  296. turbo_e_4,122,372,0 duplicate(TurboLogRace_e_4) trap_a#e_4-8 -1,2,4
  297. turbo_e_4,125,374,0 duplicate(TurboLogRace_e_4) trap_a#e_4-9 -1,0,4
  298. turbo_e_4,132,374,0 duplicate(TurboLogRace_e_4) trap_a#e_4-10 -1,7,2
  299. turbo_e_4,156,374,0 duplicate(TurboLogRace_e_4) trap_a#e_4-11 -1,6,2
  300. turbo_e_4,163,375,0 duplicate(TurboLogRace_e_4) trap_a#e_4-12 -1,0,3
  301. turbo_e_4,164,377,0 duplicate(TurboLogRace_e_4) trap_a#e_4-13 -1,1,1
  302. // second line
  303. turbo_e_4,76,369,0 duplicate(TurboLogRace_e_4) trap_b#e_4-1 -1,2,2
  304. turbo_e_4,79,369,0 duplicate(TurboLogRace_e_4) trap_b#e_4-2 -1,0,2
  305. turbo_e_4,77,366,0 duplicate(TurboLogRace_e_4) trap_b#e_4-3 -1,3,0
  306. turbo_e_4,85,366,0 duplicate(TurboLogRace_e_4) trap_b#e_4-4 -1,5,1
  307. turbo_e_4,87,363,0 duplicate(TurboLogRace_e_4) trap_b#e_4-5 -1,2,1
  308. turbo_e_4,88,368,0 duplicate(TurboLogRace_e_4) trap_b#e_4-6 -1,2,5
  309. turbo_e_4,92,370,0 duplicate(TurboLogRace_e_4) trap_b#e_4-7 -1,1,3
  310. turbo_e_4,98,368,0 duplicate(TurboLogRace_e_4) trap_b#e_4-8 -1,4,1
  311. turbo_e_4,109,371,0 duplicate(TurboLogRace_e_4) trap_b#e_4-9 -1,7,2
  312. turbo_e_4,110,368,0 duplicate(TurboLogRace_e_4) trap_b#e_4-10 -1,7,0
  313. turbo_e_4,113,366,0 duplicate(TurboLogRace_e_4) trap_b#e_4-11 -1,3,2
  314. turbo_e_4,117,368,0 duplicate(TurboLogRace_e_4) trap_b#e_4-12 -1,0,5
  315. turbo_e_4,123,364,0 duplicate(TurboLogRace_e_4) trap_b#e_4-13 -1,6,1
  316. turbo_e_4,136,368,0 duplicate(TurboLogRace_e_4) trap_b#e_4-14 -1,8,1
  317. turbo_e_4,136,366,0 duplicate(TurboLogRace_e_4) trap_b#e_4-15 -1,8,0
  318. turbo_e_4,144,370,0 duplicate(TurboLogRace_e_4) trap_b#e_4-16 -1,2,3
  319. turbo_e_4,147,370,0 duplicate(TurboLogRace_e_4) trap_b#e_4-17 -1,0,3
  320. turbo_e_4,155,369,0 duplicate(TurboLogRace_e_4) trap_b#e_4-18 -1,7,0
  321. turbo_e_4,155,368,0 duplicate(TurboLogRace_e_4) trap_b#e_4-19 -1,7,0
  322. turbo_e_4,151,367,0 duplicate(TurboLogRace_e_4) trap_b#e_4-20 -1,3,0
  323. turbo_e_4,153,366,0 duplicate(TurboLogRace_e_4) trap_b#e_4-21 -1,1,0
  324. turbo_e_4,155,367,0 duplicate(TurboLogRace_e_4) trap_b#e_4-22 -1,0,1
  325. //third line
  326. turbo_e_4,78,362,0 duplicate(TurboLogRace_e_4) trap_c#e_4-1 -1,4,1
  327. turbo_e_4,78,359,0 duplicate(TurboLogRace_e_4) trap_c#e_4-2 -1,4,1
  328. turbo_e_4,83,362,0 duplicate(TurboLogRace_e_4) trap_c#e_4-3 -1,0,1
  329. turbo_e_4,88,359,0 duplicate(TurboLogRace_e_4) trap_c#e_4-4 -1,5,1
  330. turbo_e_4,89,357,0 duplicate(TurboLogRace_e_4) trap_c#e_4-5 -1,1,1
  331. turbo_e_4,92,390,0 duplicate(TurboLogRace_e_4) trap_c#e_4-6 -1,1,1
  332. turbo_e_4,92,357,0 duplicate(TurboLogRace_e_4) trap_c#e_4-7 -1,1,1
  333. turbo_e_4,98,364,0 duplicate(TurboLogRace_e_4) trap_c#e_4-8 -1,6,1
  334. turbo_e_4,98,362,0 duplicate(TurboLogRace_e_4) trap_c#e_4-9 -1,6,0
  335. turbo_e_4,106,364,0 duplicate(TurboLogRace_e_4) trap_c#e_4-10 -1,2,2
  336. turbo_e_4,107,360,0 duplicate(TurboLogRace_e_4) trap_c#e_4-11 -1,1,2
  337. turbo_e_4,109,360,0 duplicate(TurboLogRace_e_4) trap_c#e_4-12 -1,0,2
  338. turbo_e_4,112,361,0 duplicate(TurboLogRace_e_4) trap_c#e_4-13 -1,3,1
  339. turbo_e_4,116,359,0 duplicate(TurboLogRace_e_4) trap_c#e_4-14 -1,0,2
  340. turbo_e_4,117,359,0 duplicate(TurboLogRace_e_4) trap_c#e_4-15 -1,0,2
  341. turbo_e_4,116,356,0 duplicate(TurboLogRace_e_4) trap_c#e_4-16 -1,0,2
  342. turbo_e_4,117,356,0 duplicate(TurboLogRace_e_4) trap_c#e_4-17 -1,0,2
  343. turbo_e_4,129,360,0 duplicate(TurboLogRace_e_4) trap_c#e_4-18 -1,12,1
  344. turbo_e_4,129,358,0 duplicate(TurboLogRace_e_4) trap_c#e_4-19 -1,12,0
  345. turbo_e_4,132,357,0 duplicate(TurboLogRace_e_4) trap_c#e_4-20 -1,2,1
  346. turbo_e_4,137,357,0 duplicate(TurboLogRace_e_4) trap_c#e_4-21 -1,2,1
  347. turbo_e_4,147,363,0 duplicate(TurboLogRace_e_4) trap_c#e_4-22 -1,16,1
  348. turbo_e_4,149,365,0 duplicate(TurboLogRace_e_4) trap_c#e_4-23 -1,1,0
  349. turbo_e_4,158,362,0 duplicate(TurboLogRace_e_4) trap_c#e_4-24 -1,1,4
  350. turbo_e_4,154,360,0 duplicate(TurboLogRace_e_4) trap_c#e_4-25 -1,2,2
  351. turbo_e_4,161,360,0 duplicate(TurboLogRace_e_4) trap_c#e_4-26 -1,1,2
  352. turbo_e_4,161,365,0 duplicate(TurboLogRace_e_4) trap_c#e_4-27 -1,1,0
  353. turbo_e_4,160,366,0 duplicate(TurboLogRace_e_4) trap_c#e_4-28 -1
  354. //fourth line
  355. turbo_e_4,79,353,0 duplicate(TurboLogRace_e_4) trap_d#e_4-1 -1,5,2
  356. turbo_e_4,85,354,0 duplicate(TurboLogRace_e_4) trap_d#e_4-2 -1,0,1
  357. turbo_e_4,99,353,0 duplicate(TurboLogRace_e_4) trap_d#e_4-3 -1,14,0
  358. turbo_e_4,99,352,0 duplicate(TurboLogRace_e_4) trap_d#e_4-4 -1,14,0
  359. turbo_e_4,99,356,0 duplicate(TurboLogRace_e_4) trap_d#e_4-5 -1,3,3
  360. turbo_e_4,103,356,0 duplicate(TurboLogRace_e_4) trap_d#e_4-6 -1,0,3
  361. turbo_e_4,108,354,0 duplicate(TurboLogRace_e_4) trap_d#e_4-7 -1,5,1
  362. turbo_e_4,112,356,0 duplicate(TurboLogRace_e_4) trap_d#e_4-8 -1,0,1
  363. turbo_e_4,113,356,0 duplicate(TurboLogRace_e_4) trap_d#e_4-9 -1,0,1
  364. turbo_e_4,123,353,0 duplicate(TurboLogRace_e_4) trap_d#e_4-10 -1,3,2
  365. turbo_e_4,127,353,0 duplicate(TurboLogRace_e_4) trap_d#e_4-11 -1,0,2
  366. turbo_e_4,145,352,0 duplicate(TurboLogRace_e_4) trap_d#e_4-12 -1,17,1
  367. turbo_e_4,152,354,0 duplicate(TurboLogRace_e_4) trap_d#e_4-13 -1,10,1
  368. turbo_e_4,145,357,0 duplicate(TurboLogRace_e_4) trap_d#e_4-14 -1,1,2
  369. turbo_e_4,148,357,0 duplicate(TurboLogRace_e_4) trap_d#e_4-15 -1,1,2
  370. // Turbo Track: Expert Mode - 4 Players (Sand Hill)
  371. turbo_e_4,322,354,0 script #TBT_trap_e4-::TurboSandHill_e4 -1,3,3,{
  372. OnTouch:
  373. switch(rand(1,10)) {
  374. case 1:
  375. case 9:
  376. sc_start SC_CONFUSION,8000,0;
  377. emotion e_swt2,1;
  378. end;
  379. case 2:
  380. sc_start SC_STONE,4000,0;
  381. end;
  382. case 4:
  383. sc_start SC_SLEEP,4000,0;
  384. end;
  385. case 6:
  386. sc_start SC_FREEZE,4000,0;
  387. emotion e_swt2,1;
  388. end;
  389. case 8:
  390. sc_start SC_STUN,4000,0;
  391. end;
  392. case 10:
  393. sc_start SC_CURSE,80000,0;
  394. end;
  395. }
  396. }
  397. turbo_e_4,323,360,0 duplicate(TurboSandHill_e4) #TBT_trap_e4-2 -1,3,3
  398. turbo_e_4,324,365,0 duplicate(TurboSandHill_e4) #TBT_trap_e4-3 -1,1,1
  399. turbo_e_4,325,370,0 duplicate(TurboSandHill_e4) #TBT_trap_e4-4 -1,3,3
  400. turbo_e_4,325,375,0 duplicate(TurboSandHill_e4) #TBT_trap_e4-5 -1,1,1
  401. turbo_e_4,329,377,0 duplicate(TurboSandHill_e4) #TBT_trap_e4-6 -1,3,3
  402. turbo_e_4,338,372,0 duplicate(TurboSandHill_e4) #TBT_trap_e4-7 -1,3,3
  403. turbo_e_4,341,364,0 duplicate(TurboSandHill_e4) #TBT_trap_e4-8 -1,3,3
  404. turbo_e_4,325,359,0 duplicate(TurboSandHill_e4) #TBT_trap_e4-9 -1,2,2
  405. turbo_e_4,341,355,0 duplicate(TurboSandHill_e4) #TBT_trap_e4-10 -1,1,1
  406. turbo_e_4,350,355,0 duplicate(TurboSandHill_e4) #TBT_trap_e4-11 -1,3,3
  407. turbo_e_4,348,363,0 duplicate(TurboSandHill_e4) #TBT_trap_e4-12 -1,1,1
  408. turbo_e_4,347,370,0 duplicate(TurboSandHill_e4) #TBT_trap_e4-13 -1,2,2
  409. turbo_e_4,349,377,0 duplicate(TurboSandHill_e4) #TBT_trap_e4-14 -1,9,9
  410. turbo_e_4,362,372,0 duplicate(TurboSandHill_e4) #TBT_trap_e4-15 -1,3,3
  411. turbo_e_4,364,365,0 duplicate(TurboSandHill_e4) #TBT_trap_e4-16 -1,1,1
  412. turbo_e_4,363,357,0 duplicate(TurboSandHill_e4) #TBT_trap_e4-17 -1,3,3
  413. turbo_e_4,374,358,0 duplicate(TurboSandHill_e4) #TBT_trap_e4-18 -1,2,2
  414. turbo_e_4,371,367,0 duplicate(TurboSandHill_e4) #TBT_trap_e4-19 -1,3,3
  415. turbo_e_4,371,376,0 duplicate(TurboSandHill_e4) #TBT_trap_e4-20 -1,1,1
  416. turbo_e_4,379,375,0 duplicate(TurboSandHill_e4) #TBT_trap_e4-21 -1,3,3
  417. turbo_e_4,382,363,0 duplicate(TurboSandHill_e4) #TBT_trap_e4-22 -1,2,2
  418. turbo_e_4,381,354,0 duplicate(TurboSandHill_e4) #TBT_trap_e4-23 -1,1,1
  419. turbo_e_4,355,362,0 script #TBT_trap_e4-24 -1,3,3,{
  420. OnTouch:
  421. if (rand(1,3) == 1) {
  422. cutin "kafra_03",2;
  423. mes "^4d4dffAl De Baran";
  424. mes "Turbo Track";
  425. mes "is brought to you by";
  426. mes "the ^800000Kafra Corporation^4d4dff.^000000";
  427. next;
  428. mes "^4d4dffWe wish the best of luck to all";
  429. mes "Turbo Track participants today";
  430. mes "and thank everyone for using the Kafra Services with all our hearts.^000000";
  431. next;
  432. mes "^800000Kafra Corporation^4d4dff has been providing Storage Services,";
  433. mes "Save Point Services and Teleport Services^4d4dff to our valued customers for years. Just listen to these real customers...^000000";
  434. next;
  435. mes "^4d4dff[Kachua]";
  436. mes "Oh yes, they provide the best Storage! There's even enough";
  437. mes "room for my Diaaaamonds!";
  438. mes " ";
  439. mes "[Chief Mahnsoo]";
  440. mes "I looove you Kafra!^000000";
  441. next;
  442. mes "^ff0000Turbo Track";
  443. mes "^ff0000Traps in the Cursed Desert!";
  444. mes "^4d4dffSponsored by ^800000Kafra Corporation^4d4dff";
  445. mes "''We are always by your side.''^000000";
  446. close2;
  447. cutin "kafra_03",255;
  448. end;
  449. }
  450. else {
  451. sc_start SC_CONFUSION,4000,0;
  452. end;
  453. }
  454. }
  455. // Turbo Track: Expert Mode - 4 Players (Water Maze)
  456. turbo_e_4,13,266,0 script flasher#e_4-01#turbo::TurboWaterMaze_e_4 -1,0,2,{
  457. OnTouch:
  458. sc_start SC_BLIND,60000,0;
  459. end;
  460. }
  461. turbo_e_4,24,268,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-02 -1,1,0
  462. turbo_e_4,20,258,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-03 -1,1,0
  463. turbo_e_4,23,251,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-04 -1,0,1
  464. turbo_e_4,36,270,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-05 -1,1,0
  465. turbo_e_4,22,239,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-06 -1,1,0
  466. turbo_e_4,38,239,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-07 -1,0,1
  467. turbo_e_4,37,237,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-08 -1,1,0
  468. turbo_e_4,55,247,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-09 -1,0,1
  469. turbo_e_4,55,246,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-10 -1,1,0
  470. turbo_e_4,63,253,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-11 -1,0,1
  471. turbo_e_4,36,216,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-12 -1,1,0
  472. turbo_e_4,20,209,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-13 -1,1,0
  473. turbo_e_4,28,195,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-14 -1,1,0
  474. turbo_e_4,82,264,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-15 -1,1,0
  475. turbo_e_4,47,185,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-16 -1,0,1
  476. turbo_e_4,53,207,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-17 -1,1,0
  477. turbo_e_4,54,208,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-18 -1,0,1
  478. turbo_e_4,81,247,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-19 -1,0,1
  479. turbo_e_4,105,257,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-20 -1,0,1
  480. turbo_e_4,95,242,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-21 -1,0,1
  481. turbo_e_4,77,232,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-22 -1,2,0
  482. turbo_e_4,67,222,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-23 -1,2,0
  483. turbo_e_4,83,206,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-24 -1,0,1
  484. turbo_e_4,95,224,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-25 -1,0,1
  485. turbo_e_4,106,220,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-26 -1,2,0
  486. turbo_e_4,93,191,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-27 -1,1,0
  487. turbo_e_4,94,192,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-28a -1,0,1
  488. turbo_e_4,46,214,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-28b -1,0,1
  489. turbo_e_4,16,247,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-29 -1,1,0
  490. turbo_e_4,58,268,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-30 -1,1,1
  491. turbo_e_4,36,253,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-31 -1,1,0
  492. turbo_e_4,69,238,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-32 -1,1,1
  493. turbo_e_4,58,268,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-33 -1,1,1
  494. turbo_e_4,74,188,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-34 -1,2,0
  495. turbo_e_4,99,207,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-35 -1,1,1
  496. turbo_e_4,74,188,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-36 -1,2,0
  497. turbo_e_4,111,188,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-37a -1,1,0
  498. turbo_e_4,51,232,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-37b -1,1,1
  499. turbo_e_4,30,232,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-38 -1,1,1
  500. turbo_e_4,92,256,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-39 -1,1,1
  501. turbo_e_4,79,220,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-40 -1,1,1
  502. turbo_e_4,51,192,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-41 -1,1,1
  503. turbo_e_4,22,227,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-42 -1,1,1
  504. turbo_e_4,51,232,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-43 -1,1,1
  505. turbo_e_4,42,258,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-44 -1,1,0
  506. turbo_e_4,45,271,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-45 -1,2,1
  507. turbo_e_4,72,207,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-46 -1,1,1
  508. turbo_e_4,33,192,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-47 -1,0,1
  509. turbo_e_4,90,241,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-48a -1,1,0
  510. turbo_e_4,236,3,0 duplicate(TurboWaterMaze_e_4) flasher#e_4-48b -1,3,0
  511. // Turbo Track: Expert Mode - 4 Players (Snake Dice course)
  512. turbo_e_4,324,279,0 script snake01#e4 45,1,1,{
  513. OnTouch:
  514. set .@turbo2,rand(1,7);
  515. if (.@turbo2 > 0) && (.@turbo2 < 3)
  516. warp "turbo_e_4",370,292;
  517. else if (.@turbo2 > 2) && (.@turbo2 < 5)
  518. warp "turbo_e_4",295,293;
  519. else if (.@turbo2 > 4) && (.@turbo2 < 7)
  520. warp "turbo_e_4",355,292;
  521. else
  522. warp "turbo_e_4",279,292;
  523. end;
  524. }
  525. turbo_e_4,332,279,0 script snake02#e4 45,1,1,{
  526. OnTouch:
  527. set .@turbo2,rand(1,8);
  528. if (.@turbo2 > 0) && (.@turbo2 < 3)
  529. warp "turbo_e_4",287,256;
  530. else if (.@turbo2 > 2) && (.@turbo2 < 5)
  531. warp "turbo_e_4",303,256;
  532. else if (.@turbo2 > 4) && (.@turbo2 < 7)
  533. warp "turbo_e_4",347,256;
  534. else
  535. warp "turbo_e_4",363,256;
  536. end;
  537. }
  538. turbo_e_4,324,270,0 script snake03#e4 45,1,1,{
  539. OnTouch:
  540. set .@turbo2,rand(1,8);
  541. if (.@turbo2 > 0) && (.@turbo2 < 3)
  542. warp "turbo_e_4",279,292;
  543. else if (.@turbo2 > 2) && (.@turbo2 < 5)
  544. warp "turbo_e_4",311,292;
  545. else if (.@turbo2 > 4) && (.@turbo2 < 7)
  546. warp "turbo_e_4",347,256;
  547. else
  548. warp "turbo_e_4",370,292;
  549. end;
  550. }
  551. turbo_e_4,332,270,0 script snake04#e4 45,1,1,{
  552. OnTouch:
  553. set .@turbo2,rand(1,7);
  554. if (.@turbo2 > 0) && (.@turbo2 < 3)
  555. warp "turbo_e_4",363,256;
  556. else if (.@turbo2 > 2) && (.@turbo2 < 5)
  557. warp "turbo_e_4",295,293;
  558. else if (.@turbo2 > 4) && (.@turbo2 < 7)
  559. warp "turbo_e_4",355,292;
  560. else
  561. warp "turbo_e_4",287,256;
  562. end;
  563. }
  564. //monsters
  565. turbo_e_4,389,288,0 script snake#e4 111,{
  566. Onreset:
  567. killmonsterall "turbo_e_4";
  568. end;
  569. OnEnable:
  570. monster "turbo_e_4",279,284,"Archer Skeleton",1420,1;
  571. monster "turbo_e_4",279,268,"Archer Skeleton",1420,1;
  572. monster "turbo_e_4",279,260,"Archer Skeleton",1420,1;
  573. monster "turbo_e_4",287,288,"Archer Skeleton",1420,1;
  574. monster "turbo_e_4",287,280,"Archer Skeleton",1420,1;
  575. monster "turbo_e_4",287,264,"Archer Skeleton",1420,1;
  576. monster "turbo_e_4",295,284,"Archer Skeleton",1420,1;
  577. monster "turbo_e_4",295,268,"Archer Skeleton",1420,1;
  578. monster "turbo_e_4",295,260,"Archer Skeleton",1420,1;
  579. monster "turbo_e_4",303,288,"Archer Skeleton",1420,1;
  580. monster "turbo_e_4",303,280,"Archer Skeleton",1420,1;
  581. monster "turbo_e_4",303,264,"Archer Skeleton",1420,1;
  582. monster "turbo_e_4",311,284,"Archer Skeleton",1420,1;
  583. monster "turbo_e_4",311,268,"Archer Skeleton",1420,1;
  584. monster "turbo_e_4",311,260,"Archer Skeleton",1420,1;
  585. monster "turbo_e_4",347,288,"Archer Skeleton",1420,1;
  586. monster "turbo_e_4",347,280,"Archer Skeleton",1420,1;
  587. monster "turbo_e_4",347,264,"Archer Skeleton",1420,1;
  588. monster "turbo_e_4",355,284,"Archer Skeleton",1420,1;
  589. monster "turbo_e_4",355,268,"Archer Skeleton",1420,1;
  590. monster "turbo_e_4",355,260,"Archer Skeleton",1420,1;
  591. monster "turbo_e_4",363,288,"Archer Skeleton",1420,1;
  592. monster "turbo_e_4",363,280,"Archer Skeleton",1420,1;
  593. monster "turbo_e_4",363,264,"Archer Skeleton",1420,1;
  594. monster "turbo_e_4",371,284,"Archer Skeleton",1420,1;
  595. monster "turbo_e_4",371,268,"Archer Skeleton",1420,1;
  596. monster "turbo_e_4",371,260,"Archer Skeleton",1420,1;
  597. monster "turbo_e_4",379,288,"Archer Skeleton",1420,1;
  598. monster "turbo_e_4",379,280,"Archer Skeleton",1420,1;
  599. monster "turbo_e_4",379,264,"Archer Skeleton",1420,1;
  600. end;
  601. }
  602. // ÇåÆÃÄÚ½º
  603. turbo_e_4,90,46,0 script hunting#e4 111,{
  604. Onreset:
  605. killmonsterall "turbo_e_4";
  606. end;
  607. OnEnable:
  608. monster "turbo_e_4",47,87,"Munak",1610,1;
  609. monster "turbo_e_4",47,87,"Bongun",1611,1;
  610. monster "turbo_e_4",47,87,"Munak",1610,1;
  611. monster "turbo_e_4",24,74,"Munak",1610,1;
  612. monster "turbo_e_4",24,74,"Bongun",1611,1;
  613. monster "turbo_e_4",24,74,"Munak",1610,1;
  614. monster "turbo_e_4",67,42,"Munak",1610,1;
  615. monster "turbo_e_4",67,42,"Bongun",1611,1;
  616. monster "turbo_e_4",67,42,"Munak",1610,1;
  617. monster "turbo_e_4",60,70,"Munak",1610,1;
  618. monster "turbo_e_4",60,70,"Bongun",1611,1;
  619. monster "turbo_e_4",60,70,"Munak",1610,1;
  620. monster "turbo_e_4",32,51,"Munak",1610,1;
  621. monster "turbo_e_4",32,51,"Bongun",1611,1;
  622. monster "turbo_e_4",32,51,"Munak",1610,1;
  623. monster "turbo_e_4",30,25,"Munak",1610,1;
  624. monster "turbo_e_4",30,25,"Bongun",1611,1;
  625. monster "turbo_e_4",30,25,"Munak",1610,1;
  626. monster "turbo_e_4",68,56,"Yao Jun",1612,1;
  627. monster "turbo_e_4",26,46,"Yao Jun",1612,1;
  628. monster "turbo_e_4",62,20,"Munak",1610,1;
  629. monster "turbo_e_4",62,20,"Bongun",1611,1;
  630. monster "turbo_e_4",62,20,"Munak",1610,1;
  631. monster "turbo_e_4",216,378,"Munak",1610,1;
  632. monster "turbo_e_4",218,360,"Munak",1610,1;
  633. monster "turbo_e_4",223,361,"Munak",1610,1;
  634. monster "turbo_e_4",243,342,"Munak",1610,1;
  635. monster "turbo_e_4",247,364,"Munak",1610,1;
  636. end;
  637. }
  638. // Turbo Track: Expert Mode - 4 Players (Course-clear broadcasters, and exits?)
  639. turbo_e_4,168,363,0 script cos_e_4_1 45,1,1,{
  640. OnTouch:
  641. mapannounce "turbo_e_4","" + strcharinfo(0) +" has just passed the Log Bridge course!",bc_map,"0x70DBDB";
  642. set .@move1,rand(1,3);
  643. if (.@move1 == 1)
  644. warp "turbo_e_4",210,369;
  645. else if (.@move1 == 2)
  646. warp "turbo_e_4",210,361;
  647. else
  648. warp "turbo_e_4",210,354;
  649. end;
  650. }
  651. turbo_e_4,258,364,0 script cos_e_4_2 45,1,1,{
  652. OnTouch:
  653. mapannounce "turbo_e_4","" + strcharinfo(0) +" has just passed the Cube Hills course!",bc_map,"0x70DBDB";
  654. warp "turbo_e_4",316,365;
  655. end;
  656. }
  657. turbo_e_4,316,365,0 script Disposable_Switch#e4 -1,1,1,{
  658. OnTouch:
  659. if (rand(1,2) == 1)
  660. enablenpc "Flasher_Exit_1#e4";
  661. else
  662. enablenpc "Flasher_Exit_2#e4";
  663. disablenpc "Disposable_Switch#e4";
  664. end;
  665. }
  666. turbo_e_4,385,365,0 script cos_e_4_3 45,1,1,{
  667. OnTouch:
  668. set .@to_miro,rand(1,4);
  669. mapannounce "turbo_e_4","" + strcharinfo(0) +" has just passed the Cursed Desert!",bc_map,"0x70DBDB";
  670. if (.@to_miro == 1)
  671. warp "turbo_e_4",46,254;
  672. else if (.@to_miro == 2)
  673. warp "turbo_e_4",76,227;
  674. else if (.@to_miro == 3)
  675. warp "turbo_e_4",42,197;
  676. else
  677. warp "turbo_e_4",86,220;
  678. end;
  679. }
  680. turbo_e_4,11,266,0 script Flasher_Exit_1#e4 45,1,1,{
  681. OnInit:
  682. disablenpc "Flasher_Exit_1#e4";
  683. end;
  684. OnTouch:
  685. mapannounce "turbo_e_4","" + strcharinfo(0) +" has just passed the Flasher Maze!",bc_map,"0x70DBDB";
  686. warp "turbo_e_4",185,227;
  687. end;
  688. }
  689. turbo_e_4,114,190,0 script Flasher_Exit_2#e4 45,1,1,{
  690. OnInit:
  691. disablenpc "Flasher_Exit_2#e4";
  692. end;
  693. OnTouch:
  694. mapannounce "turbo_e_4","" + strcharinfo(0) +" has just passed the Flasher Maze!",bc_map,"0x70DBDB";
  695. warp "turbo_e_4",185,227;
  696. end;
  697. }
  698. turbo_e_4,250,200,0 script cos_e_4_5 45,1,1,{
  699. OnTouch:
  700. mapannounce "turbo_e_4","" + strcharinfo(0) +" has just passed the Single Snail course!",bc_map,"0x70DBDB";
  701. warp "turbo_e_4",268,275;
  702. end;
  703. }
  704. turbo_e_4,389,275,0 script cos_e_4_6 45,1,1,{
  705. OnTouch:
  706. mapannounce "turbo_e_4","" + strcharinfo(0) +" has just passed the Snake Dice course!",bc_map,"0x70DBDB";
  707. warp "turbo_e_4",5,91;
  708. end;
  709. }
  710. turbo_e_4,93,19,0 script cos_e_4_7 45,1,1,{
  711. OnTouch:
  712. mapannounce "turbo_e_4","" + strcharinfo(0) +" has just passed the Small Cave course! Hurry, you're almost at the finish!",bc_map,"0x70DBDB";
  713. set .@move1,rand(1,3);
  714. if (.@move1 == 1)
  715. warp "turbo_e_4",307,52;
  716. else if (.@move1 == 2)
  717. warp "turbo_e_4",307,46;
  718. else
  719. warp "turbo_e_4",307,40;
  720. end;
  721. }
  722. turbo_e_4,371,47,0 script cos_e_4_end 45,1,1,{
  723. OnInit:
  724. enablenpc "cos_e_4_end";
  725. end;
  726. OnTouch:
  727. mapannounce "turbo_e_4","" + strcharinfo(0) +" has just arrived at the Finish Line! Congratulations!",bc_map,"0xFFFF00";
  728. set $ttnames$[4],strcharinfo(0);
  729. donpcevent "TBT_Guide#Broadcast::Onwin_e4";
  730. warp "turbo_e_4",384,161;
  731. donpcevent "Winner Helper#TBT_e_4::OnEnable";
  732. donpcevent "Master#e4::OnDisable";
  733. disablenpc "Broadcast#e4";
  734. disablenpc "cos_e_4_end";
  735. end;
  736. }
  737. turbo_e_4,384,167,1 script Winner Helper#TBT_e_4 47,{
  738. //---reward points & record player name
  739. if (tt_rank < 29999) {
  740. mes "[Guide]";
  741. mes "Congratulations!";
  742. if (tt_point < 28961) {
  743. mes "As the winner, your reward";
  744. mes "is 40 Turbo Track Points~";
  745. set tt_point,tt_point+40;
  746. set my_point,tt_point;
  747. mes "You now have a total of";
  748. mes "" + tt_point + " Turbo Track points,";
  749. mes "" + strcharinfo(0) +".";
  750. }
  751. else {
  752. mes "Unfortunately, I can't give";
  753. mes "you any Turbo Track Points";
  754. mes "since you would exceed the";
  755. mes "maximum limit. Sorry,";
  756. mes "" + strcharinfo(0) +"...";
  757. }
  758. set tt_rank,tt_rank+1;
  759. next;
  760. if (tt_rank > $ttranks[1]) {
  761. setarray $ttranks[0],$ttranks[0],tt_rank,$ttranks[1],$ttranks[2],$ttranks[3],$ttranks[4];
  762. setarray $ttnames$[9],strcharinfo(0);
  763. mes "[Guide]";
  764. mes "Congratulations!";
  765. mes "You are ranked as";
  766. mes "the top player for";
  767. mes "winning the most games!";
  768. donpcevent "TBT_Guide#Broadcast::Onnew_top1";
  769. if (tt_rank == 29999) {
  770. if ($ttnames$[7] == "Breezy Havana") {
  771. set $ttnames$[7],strcharinfo(0);
  772. mes "You've secured your place in";
  773. mes "the Turbo Track Hall of Honor!";
  774. announce "" + strcharinfo(0) + " has joined the Turbo Track Hall of Honor!",bc_all,"FF0000";
  775. }
  776. else if ($ttnames$[8] == "RS125") {
  777. set $ttnames$[8],strcharinfo(0);
  778. mes "You've secured your place in";
  779. mes "the Turbo Track Hall of Honor!";
  780. announce " " + strcharinfo(0) + " has joined the Turbo Track Hall of Honor!",bc_all,"FF0000";
  781. }
  782. }
  783. }
  784. else if (tt_rank > $ttranks[2]) {
  785. setarray $ttranks[0],$ttranks[0],$ttranks[1],tt_rank,$ttranks[3],$ttranks[4],$ttranks[5];
  786. setarray $ttnames$[10],strcharinfo(0);
  787. mes "[Guide]";
  788. mes "Congratulations!";
  789. mes "You've ranked Second";
  790. mes "among the Top Five Players";
  791. mes "who've won the most games!";
  792. donpcevent "TBT_Guide#Broadcast::Onnew_top2";
  793. if (tt_rank == 29999) {
  794. if ($ttnames$[7] == "Breezy Havana") {
  795. set $ttnames$[7],strcharinfo(0);
  796. mes "You've secured your place in";
  797. mes "the Turbo Track Hall of Honor!";
  798. announce "" + strcharinfo(0) + " has joined the Turbo Track Hall of Honor!",bc_all,"FF0000";
  799. }
  800. else if ($ttnames$[8] == "RS125") {
  801. set $ttnames$[8],strcharinfo(0);
  802. mes "You've secured your place in";
  803. mes "the Turbo Track Hall of Honor!";
  804. announce "" + strcharinfo(0) + " has joined the Turbo Track Hall of Honor!",bc_all,"FF0000";
  805. }
  806. }
  807. }
  808. else if (tt_rank > $ttranks[3]) {
  809. setarray $ttranks[0],$ttranks[0],$ttranks[1],$ttranks[2],tt_rank,$ttranks[4],$ttranks[5];
  810. setarray $ttnames$[11],strcharinfo(0);
  811. mes "[Guide]";
  812. mes "Congratulations!";
  813. mes "You've ranked Third";
  814. mes "among the Top Five Players";
  815. mes "who've won the most games!";
  816. donpcevent "TBT_Guide#Broadcast::Onnew_top3";
  817. if (tt_rank == 29999) {
  818. if ($ttnames$[7] == "Breezy Havana") {
  819. set $ttnames$[7],strcharinfo(0);
  820. mes "You've secured your place in";
  821. mes "the Turbo Track Hall of Honor!";
  822. announce "" + strcharinfo(0) + " has joined the Turbo Track Hall of Honor!",bc_all,"FF0000";
  823. }
  824. else if ($ttnames$[8] == "RS125") {
  825. set $ttnames$[8],strcharinfo(0);
  826. mes "You've secured your place in";
  827. mes "the Turbo Track Hall of Honor!";
  828. announce "" + strcharinfo(0) + " has joined the Turbo Track Hall of Honor!",bc_all,"FF0000";
  829. }
  830. }
  831. }
  832. else if (tt_rank > $ttranks[4]) {
  833. setarray $ttranks[0],$ttranks[0],$ttranks[1],$ttranks[2],$ttranks[3],tt_rank,$ttranks[5];
  834. setarray $ttnames$[12],strcharinfo(0);
  835. mes "[Guide]";
  836. mes "Congratulations!";
  837. mes "You've ranked Fourth";
  838. mes "among the Top Five Players";
  839. mes "who've won the most games!";
  840. donpcevent "TBT_Guide#Broadcast::Onnew_top4";
  841. if (tt_rank == 29999) {
  842. if ($ttnames$[7] == "Breezy Havana") {
  843. set $ttnames$[7],strcharinfo(0);
  844. mes "You've secured your place in";
  845. mes "the Turbo Track Hall of Honor!";
  846. announce "" + strcharinfo(0) + " has joined the Turbo Track Hall of Honor!",bc_all,"FF0000";
  847. }
  848. else if ($ttnames$[8] == "RS125") {
  849. set $ttnames$[8],strcharinfo(0);
  850. mes "You've secured your place in";
  851. mes "the Turbo Track Hall of Honor!";
  852. announce "" + strcharinfo(0) + " has joined the Turbo Track Hall of Honor!",bc_all,"FF0000";
  853. }
  854. }
  855. }
  856. else if (tt_rank > $ttranks[5]) {
  857. setarray $ttranks[0],$ttranks[0],$ttranks[1],$ttranks[2],$ttranks[3],$ttranks[4],tt_rank;
  858. setarray $ttnames$[13],strcharinfo(0);
  859. mes "[Guide]";
  860. mes "Congratulations!";
  861. mes "You've ranked Fifth";
  862. mes "among the Top Five Players";
  863. mes "who've won the most games!";
  864. donpcevent "TBT_Guide#Broadcast::Onnew_top5";
  865. if (tt_rank == 29999) {
  866. if ($ttnames$[7] == "Breezy Havana") {
  867. set $ttnames$[7],strcharinfo(0);
  868. mes "You've secured your place in";
  869. mes "the Turbo Track Hall of Honor!";
  870. announce "" + strcharinfo(0) + " has joined the Turbo Track Hall of Honor!",bc_all,"FF0000";
  871. }
  872. else if ($ttnames$[8] == "RS125") {
  873. set $ttnames$[8],strcharinfo(0);
  874. mes "You've secured your place in";
  875. mes "the Turbo Track Hall of Honor!";
  876. announce "" + strcharinfo(0) + " has joined the Turbo Track Hall of Honor!",bc_all,"FF0000";
  877. }
  878. }
  879. }
  880. else {
  881. mes "[Guide]";
  882. mes "If you can win more games";
  883. mes "than everybody else, your";
  884. mes "name will be registered in";
  885. mes "our Top Five Player Ranking.";
  886. next;
  887. mes "[Guide]";
  888. mes "What do you";
  889. mes "think, " + strcharinfo(0) +"?";
  890. mes "Glory can be yours if";
  891. mes "you can achieve victory!";
  892. }
  893. next;
  894. mes "[Guide]";
  895. mes "Thank you for";
  896. mes "participating in";
  897. mes "the Turbo Track.";
  898. mes "You will be transported";
  899. mes "to a Waiting Room shortly.";
  900. close2;
  901. warp "turbo_room",72,89;
  902. end;
  903. }
  904. else {
  905. if ($ttnames$[7] == strcharinfo(0)) {
  906. mes "[Guide]";
  907. mes "Oh wow!";
  908. mes "You're a member";
  909. mes "in our Hall of Honor,";
  910. mes "aren't you? This is great!";
  911. mes "I'm talking to a living legend!";
  912. next;
  913. mes "[Guide]";
  914. mes "Right, your reward...";
  915. if (tt_point < 28961) {
  916. mes "40 Turbo Track Points!";
  917. set tt_point,tt_point+40;
  918. mes "You now have a total of";
  919. mes ""+ tt_point +" Turbo Track Points.";
  920. }
  921. else {
  922. mes "Unfortunately, I can't give";
  923. mes "you any Turbo Track Points";
  924. mes "since you would exceed the";
  925. mes "maximum limit. Sorry,";
  926. mes "" + strcharinfo(0) +"...";
  927. }
  928. next;
  929. mes "[Guide]";
  930. mes "Oh, and thanks for";
  931. mes "participating in the";
  932. mes "Turbo Track! You'll be sent";
  933. mes "to the Waiting Room soon~";
  934. close2;
  935. warp "turbo_room",72,89;
  936. end;
  937. }
  938. else if ($ttnames$[8] == strcharinfo(0)) {
  939. mes "[Guide]";
  940. mes "Hey, aren't you";
  941. mes "in our Hall of Honor?";
  942. mes "I've been watching your";
  943. mes "races... You're pretty quick";
  944. mes "on your feet, hotshot~";
  945. next;
  946. mes "[Guide]";
  947. mes "Right, your reward...";
  948. if (tt_point < 28961) {
  949. mes "40 Turbo Track Points!";
  950. set tt_point,tt_point+40;
  951. mes "You now have a total of";
  952. mes ""+ tt_point +" Turbo Track Points.";
  953. }
  954. else {
  955. mes "Unfortunately, I can't give";
  956. mes "you any Turbo Track Points";
  957. mes "since you would exceed the";
  958. mes "maximum limit. Sorry...";
  959. }
  960. next;
  961. mes "[Guide]";
  962. mes "Oh, and thanks for";
  963. mes "participating in the";
  964. mes "Turbo Track! You'll be sent";
  965. mes "to the Waiting Room soon~";
  966. close2;
  967. warp "turbo_room",72,89;
  968. end;
  969. }
  970. else {
  971. mes "[Guide]";
  972. mes "Awwww~";
  973. mes "You were almost able";
  974. mes "to join our Hall of Honor...!";
  975. mes "But don't let that get you";
  976. mes "down. Maybe next time!";
  977. next;
  978. mes "[Guide]";
  979. mes "Right, your reward...";
  980. mes "40 Turbo Track Points!";
  981. if (tt_point < 28961) {
  982. set tt_point,tt_point+40;
  983. set my_point,tt_point;
  984. mes "You now have a total of";
  985. mes ""+ tt_point +" Turbo Track Points.";
  986. }
  987. else {
  988. mes "Unfortunately, I can't give";
  989. mes "you any Turbo Track Points";
  990. mes "since you would exceed the";
  991. mes "maximum limit. Sorry...";
  992. }
  993. next;
  994. mes "[Guide]";
  995. mes "Thank you for";
  996. mes "participating in";
  997. mes "the Turbo Track.";
  998. mes "You will be transported";
  999. mes "to a Waiting Room shortly.";
  1000. close2;
  1001. warp "turbo_room",72,89;
  1002. end;
  1003. }
  1004. }
  1005. OnInit:
  1006. disablenpc "Winner Helper#TBT_e_4";
  1007. end;
  1008. OnEnable:
  1009. enablenpc "Winner Helper#TBT_e_4";
  1010. initnpctimer;
  1011. end;
  1012. OnTimer4000:
  1013. mapannounce "turbo_e_4","This is the ending broadcast for Turbo Track Expert Mode - 4 person.",bc_map,"0x33FF66";
  1014. end;
  1015. OnTimer8000:
  1016. mapannounce "turbo_e_4","For smooth game play, the game will end in approximately 1 minute.",bc_map,"0x33FF66";
  1017. end;
  1018. OnTimer12000:
  1019. mapannounce "turbo_e_4","At that time, a Warp portal will open.",bc_map,"0x33FF66";
  1020. end;
  1021. OnTimer16000:
  1022. mapannounce "turbo_e_4","Players in the arena must be ready to leave through the Warp Portal.",bc_map,"0x33FF66";
  1023. end;
  1024. OnTimer20000:
  1025. mapannounce "turbo_e_4","In the meantime, winners must proceed to receive their rewards as soon as possible.",bc_map,"0x33FF66";
  1026. end;
  1027. OnTimer24000:
  1028. mapannounce "turbo_e_4","Thank you for visiting Al De Baran Turbo Track.",bc_map,"0x33FF66";
  1029. end;
  1030. OnTimer28000:
  1031. mapannounce "turbo_e_4","Al De Baran Turbo Track is brought to you by...",bc_map,"0x33FF66";
  1032. end;
  1033. OnTimer32000:
  1034. mapannounce "turbo_e_4","[Al De Baran Kafra Corporation Headquarters]",bc_map,"0x33FF66";
  1035. end;
  1036. OnTimer36000:
  1037. mapannounce "turbo_e_4","[Al De Baran Guild Castle Management Luina]",bc_map,"0x33FF66";
  1038. end;
  1039. OnTimer40000:
  1040. mapannounce "turbo_e_4","[Blacksmith Union]",bc_map,"0x33FF66";
  1041. end;
  1042. OnTimer44000:
  1043. mapannounce "turbo_e_4","And [Comodo Casino].",bc_map,"0x33FF66";
  1044. end;
  1045. OnTimer48000:
  1046. mapannounce "turbo_e_4","Once again, we'd like to thank our sponsors.",bc_map,"0x33FF66";
  1047. end;
  1048. OnTimer52000:
  1049. mapannounce "turbo_e_4","Have a good day.",bc_map,"0x33FF66";
  1050. end;
  1051. //--- warp all players to turbo room
  1052. OnTimer58000:
  1053. mapwarp "turbo_e_4","turbo_room",72,89;
  1054. end;
  1055. //----end game, reset all
  1056. OnTimer60000:
  1057. enablenpc "Notice_Maker1#TBT_e_4";
  1058. enablenpc "Notice_Maker3#TBT_e_4";
  1059. enablenpc "Notice_Maker4#TBT_e_4";
  1060. enablenpc "Disposable_Switch#e4";
  1061. disablenpc "Flasher_Exit_1#e4";
  1062. disablenpc "Flasher_Exit_2#e4";
  1063. enablenpc "No_Unfair_Start#e4-1";
  1064. enablenpc "No_Unfair_Start#e4-2";
  1065. donpcevent "snake#e4::Onreset";
  1066. donpcevent "hunting#e4::Onreset";
  1067. donpcevent "Expert mode - 4 person::OnEnable";
  1068. disablenpc "bing2#e4";
  1069. enablenpc "cos_e_4_end";
  1070. stopnpctimer;
  1071. end;
  1072. }
  1073. turbo_e_4,11,91,0 script Notice_Maker1#TBT_e_4 -1,3,3,{
  1074. OnInit:
  1075. enablenpc "Notice_Maker1#TBT_e_4";
  1076. end;
  1077. OnTouch:
  1078. mapannounce "turbo_e_4","" + strcharinfo(0) +" is now entering the Small Cave! " + strcharinfo(0) +" is now in the lead!",bc_map,"0xFFFF00";
  1079. donpcevent "TBT_Guide#Broadcast::Onend_e4";
  1080. disablenpc "Notice_Maker1#TBT_e_4";
  1081. end;
  1082. }
  1083. turbo_e_4,234,223,0 script Notice_Maker3#TBT_e_4 -1,2,2,{
  1084. OnInit:
  1085. enablenpc "Notice_Maker3#TBT_e_4";
  1086. end;
  1087. OnTouch:
  1088. mapannounce "turbo_e_4","" + strcharinfo(0) +" is now entering the Single Snail! " + strcharinfo(0) +" is now in the lead!",bc_map,"0xFFFF00";
  1089. disablenpc "Notice_Maker3#TBT_e_4";
  1090. end;
  1091. }
  1092. turbo_e_4,226,15,0 script Notice_Maker4#TBT_e_4 -1,1,1,{
  1093. OnInit:
  1094. enablenpc "Notice_Maker4#TBT_e_4";
  1095. end;
  1096. OnTouch:
  1097. mapannounce "turbo_e_4","" + strcharinfo(0) +" is currently in First Place!",bc_map,"0xFFFF00";
  1098. disablenpc "Notice_Maker4#TBT_e_4";
  1099. end;
  1100. }
  1101. turbo_e_4,227,379,0 script Warp#e_4_1::Warp_e_4 -1,1,1,{
  1102. OnTouch:
  1103. set .@warprand,rand(1,20);
  1104. if (.@warprand == 1)
  1105. warp "turbo_e_4",216,378;
  1106. else if (.@warprand == 2)
  1107. warp "turbo_e_4",218,360;
  1108. else if (.@warprand == 4)
  1109. warp "turbo_e_4",223,361;
  1110. else if (.@warprand == 5)
  1111. warp "turbo_e_4",243,342;
  1112. else if (.@warprand == 6)
  1113. warp "turbo_e_4",247,364;
  1114. end;
  1115. }
  1116. turbo_e_4,237,380,0 duplicate(Warp_e_4) Warp#e_4_2 -1,1,1,{
  1117. turbo_e_4,227,367,0 duplicate(Warp_e_4) Warp#e_4_3 -1,1,1,{
  1118. turbo_e_4,231,360,0 duplicate(Warp_e_4) Warp#e_4_4 -1,1,1,{
  1119. turbo_e_4,225,349,0 duplicate(Warp_e_4) Warp#e_4_5 -1,1,1,{
  1120. turbo_e_4,249,352,0 duplicate(Warp_e_4) Warp#e_4_6 -1,1,1,{
  1121. turbo_e_4,253,364,0 duplicate(Warp_e_4) Warp#e_4_7 -1,2,2,{
  1122. turbo_e_4,307,55,0 script trap_e4#F1::TurboTrap_e4 139,1,1,{
  1123. OnTouch:
  1124. specialeffect EF_BLASTMINEBOMB;
  1125. set .@HitTrap,10;
  1126. if (.@HitTrap > 0 && .@HitTrap < 4)
  1127. percentheal -1,0;
  1128. else if (.@HitTrap > 4 && .@HitTrap < 8)
  1129. percentheal -5,0;
  1130. else
  1131. percentheal -2,0;
  1132. end;
  1133. }
  1134. turbo_e_4,307,51,0 duplicate(TurboTrap_e4) trap_e4#F2 139,1,1
  1135. turbo_e_4,307,47,0 duplicate(TurboTrap_e4) trap_e4#F3 139,1,1
  1136. turbo_e_4,307,43,0 duplicate(TurboTrap_e4) trap_e4#F4 139,1,1
  1137. turbo_e_4,307,39,0 duplicate(TurboTrap_e4) trap_e4#F5 139,1,1
  1138. turbo_e_4,307,39,0 duplicate(TurboTrap_e4) trap_e4#F96 139,1,1
  1139. turbo_e_4,312,56,0 duplicate(TurboTrap_e4) trap_e4#F6 139,1,1
  1140. turbo_e_4,312,52,0 duplicate(TurboTrap_e4) trap_e4#F7 139,1,1
  1141. turbo_e_4,312,48,0 duplicate(TurboTrap_e4) trap_e4#F8 139,1,1
  1142. turbo_e_4,312,44,0 duplicate(TurboTrap_e4) trap_e4#F9 139,1,1
  1143. turbo_e_4,312,40,0 duplicate(TurboTrap_e4) trap_e4#F10 139,1,1
  1144. turbo_e_4,312,36,0 duplicate(TurboTrap_e4) trap_e4#F11 139,1,1
  1145. turbo_e_4,316,55,0 duplicate(TurboTrap_e4) trap_e4#F12 139,1,1
  1146. turbo_e_4,316,51,0 duplicate(TurboTrap_e4) trap_e4#F13 139,1,1
  1147. turbo_e_4,316,47,0 duplicate(TurboTrap_e4) trap_e4#F14 139,1,1
  1148. turbo_e_4,316,43,0 duplicate(TurboTrap_e4) trap_e4#F15 139,1,1
  1149. turbo_e_4,316,39,0 duplicate(TurboTrap_e4) trap_e4#F16 139,1,1
  1150. turbo_e_4,316,36,0 duplicate(TurboTrap_e4) trap_e4#F17 139,1,1
  1151. turbo_e_4,320,56,0 duplicate(TurboTrap_e4) trap_e4#F18 139,1,1
  1152. turbo_e_4,320,52,0 duplicate(TurboTrap_e4) trap_e4#F19 139,1,1
  1153. turbo_e_4,320,48,0 duplicate(TurboTrap_e4) trap_e4#F20 139,1,1
  1154. turbo_e_4,320,44,0 duplicate(TurboTrap_e4) trap_e4#F21 139,1,1
  1155. turbo_e_4,320,40,0 duplicate(TurboTrap_e4) trap_e4#F22 139,1,1
  1156. turbo_e_4,320,36,0 duplicate(TurboTrap_e4) trap_e4#F23 139,1,1
  1157. turbo_e_4,324,55,0 duplicate(TurboTrap_e4) trap_e4#F24 139,1,1
  1158. turbo_e_4,324,51,0 duplicate(TurboTrap_e4) trap_e4#F25 139,1,1
  1159. turbo_e_4,324,47,0 duplicate(TurboTrap_e4) trap_e4#F26 139,1,1
  1160. turbo_e_4,324,43,0 duplicate(TurboTrap_e4) trap_e4#F27 139,1,1
  1161. turbo_e_4,324,39,0 duplicate(TurboTrap_e4) trap_e4#F28 139,1,1
  1162. turbo_e_4,324,36,0 duplicate(TurboTrap_e4) trap_e4#F29 139,1,1
  1163. turbo_e_4,328,56,0 duplicate(TurboTrap_e4) trap_e4#F30 139,1,1
  1164. turbo_e_4,328,52,0 duplicate(TurboTrap_e4) trap_e4#F31 139,1,1
  1165. turbo_e_4,328,48,0 duplicate(TurboTrap_e4) trap_e4#F32 139,1,1
  1166. turbo_e_4,328,44,0 duplicate(TurboTrap_e4) trap_e4#F33 139,1,1
  1167. turbo_e_4,328,40,0 duplicate(TurboTrap_e4) trap_e4#F34 139,1,1
  1168. turbo_e_4,328,36,0 duplicate(TurboTrap_e4) trap_e4#F35 139,1,1
  1169. turbo_e_4,332,55,0 duplicate(TurboTrap_e4) trap_e4#F36 139,1,1
  1170. turbo_e_4,332,51,0 duplicate(TurboTrap_e4) trap_e4#F37 139,1,1
  1171. turbo_e_4,332,47,0 duplicate(TurboTrap_e4) trap_e4#F38 139,1,1
  1172. turbo_e_4,332,43,0 duplicate(TurboTrap_e4) trap_e4#F39 139,1,1
  1173. turbo_e_4,332,39,0 duplicate(TurboTrap_e4) trap_e4#F40 139,1,1
  1174. turbo_e_4,332,36,0 duplicate(TurboTrap_e4) trap_e4#F41 139,1,1
  1175. turbo_e_4,336,56,0 script trap_e4#F42::TurboTrap_e4_2 -1,1,1,{
  1176. OnTouch:
  1177. specialeffect EF_FREEZING;
  1178. set .@HitTrap,10;
  1179. if (.@HitTrap > 0 && .@HitTrap < 4)
  1180. percentheal -1,0;
  1181. else if (.@HitTrap > 4 && .@HitTrap < 8) {
  1182. percentheal -5,0;
  1183. sc_start SC_FREEZE,3000,0;
  1184. }
  1185. else {
  1186. sc_start SC_FREEZE,4000,0;
  1187. percentheal -2,0;
  1188. }
  1189. }
  1190. turbo_e_4,336,52,0 duplicate(TurboTrap_e4_2) trap_e4#F43 139,1,1
  1191. turbo_e_4,336,48,0 duplicate(TurboTrap_e4_2) trap_e4#F44 139,1,1
  1192. turbo_e_4,336,44,0 duplicate(TurboTrap_e4_2) trap_e4#F45 139,1,1
  1193. turbo_e_4,336,50,0 duplicate(TurboTrap_e4_2) trap_e4#F46 139,1,1
  1194. turbo_e_4,336,36,0 duplicate(TurboTrap_e4_2) trap_e4#F47 139,1,1
  1195. turbo_e_4,340,55,0 duplicate(TurboTrap_e4_2) trap_e4#F48 139,1,1
  1196. turbo_e_4,340,51,0 duplicate(TurboTrap_e4) trap_e4#F49 139,1,1
  1197. turbo_e_4,340,47,0 duplicate(TurboTrap_e4) trap_e4#F50 139,1,1
  1198. turbo_e_4,340,43,0 duplicate(TurboTrap_e4) trap_e4#F51 139,1,1
  1199. turbo_e_4,340,39,0 duplicate(TurboTrap_e4) trap_e4#F52 139,1,1
  1200. turbo_e_4,340,36,0 duplicate(TurboTrap_e4) trap_e4#F53 139,1,1
  1201. turbo_e_4,344,56,0 duplicate(TurboTrap_e4) trap_e4#F54 139,1,1
  1202. turbo_e_4,344,52,0 duplicate(TurboTrap_e4) trap_e4#F55 139,1,1
  1203. turbo_e_4,344,48,0 duplicate(TurboTrap_e4) trap_e4#F56 139,1,1
  1204. turbo_e_4,344,44,0 duplicate(TurboTrap_e4) trap_e4#F57 139,1,1
  1205. turbo_e_4,344,40,0 duplicate(TurboTrap_e4) trap_e4#F58 139,1,1
  1206. turbo_e_4,344,36,0 duplicate(TurboTrap_e4) trap_e4#F59 139,1,1
  1207. turbo_e_4,348,55,0 duplicate(TurboTrap_e4) trap_e4#F60 139,1,1
  1208. turbo_e_4,348,51,0 duplicate(TurboTrap_e4) trap_e4#F61 139,1,1
  1209. turbo_e_4,348,47,0 duplicate(TurboTrap_e4) trap_e4#F62 139,1,1
  1210. turbo_e_4,348,43,0 duplicate(TurboTrap_e4) trap_e4#F63 139,1,1
  1211. turbo_e_4,348,39,0 duplicate(TurboTrap_e4) trap_e4#F64 139,1,1
  1212. turbo_e_4,348,36,0 duplicate(TurboTrap_e4) trap_e4#F65 139,1,1
  1213. turbo_e_4,352,56,0 duplicate(TurboTrap_e4) trap_e4#F66 139,1,1
  1214. turbo_e_4,352,52,0 duplicate(TurboTrap_e4) trap_e4#F67 139,1,1
  1215. turbo_e_4,352,48,0 duplicate(TurboTrap_e4) trap_e4#F68 139,1,1
  1216. turbo_e_4,352,44,0 duplicate(TurboTrap_e4) trap_e4#F69 139,1,1
  1217. turbo_e_4,352,40,0 duplicate(TurboTrap_e4) trap_e4#F70 139,1,1
  1218. turbo_e_4,352,36,0 duplicate(TurboTrap_e4) trap_e4#F71 139,1,1
  1219. turbo_e_4,356,55,0 duplicate(TurboTrap_e4) trap_e4#F72 139,1,1
  1220. turbo_e_4,356,51,0 duplicate(TurboTrap_e4) trap_e4#F73 139,1,1
  1221. turbo_e_4,356,47,0 duplicate(TurboTrap_e4) trap_e4#F74 139,1,1
  1222. turbo_e_4,356,43,0 duplicate(TurboTrap_e4) trap_e4#F75 139,1,1
  1223. turbo_e_4,356,39,0 duplicate(TurboTrap_e4) trap_e4#F76 139,1,1
  1224. turbo_e_4,356,36,0 duplicate(TurboTrap_e4) trap_e4#F77 139,1,1
  1225. turbo_e_4,360,56,0 duplicate(TurboTrap_e4) trap_e4#F78 139,1,1
  1226. turbo_e_4,360,52,0 duplicate(TurboTrap_e4) trap_e4#F79 139,1,1
  1227. turbo_e_4,360,48,0 duplicate(TurboTrap_e4) trap_e4#F80 139,1,1
  1228. turbo_e_4,360,44,0 duplicate(TurboTrap_e4) trap_e4#F81 139,1,1
  1229. turbo_e_4,360,40,0 duplicate(TurboTrap_e4) trap_e4#F82 139,1,1
  1230. turbo_e_4,360,36,0 duplicate(TurboTrap_e4) trap_e4#F83 139,1,1
  1231. turbo_e_4,364,55,0 duplicate(TurboTrap_e4) trap_e4#F84 139,1,1
  1232. turbo_e_4,364,51,0 duplicate(TurboTrap_e4) trap_e4#F85 139,1,1
  1233. turbo_e_4,364,47,0 duplicate(TurboTrap_e4) trap_e4#F86 139,1,1
  1234. turbo_e_4,364,43,0 duplicate(TurboTrap_e4) trap_e4#F87 139,1,1
  1235. turbo_e_4,364,39,0 duplicate(TurboTrap_e4) trap_e4#F88 139,1,1
  1236. turbo_e_4,364,36,0 duplicate(TurboTrap_e4) trap_e4#F89 139,1,1
  1237. turbo_e_4,368,56,0 duplicate(TurboTrap_e4) trap_e4#F90 139,1,1
  1238. turbo_e_4,368,52,0 duplicate(TurboTrap_e4) trap_e4#F91 139,1,1
  1239. turbo_e_4,368,48,0 duplicate(TurboTrap_e4) trap_e4#F92 139,1,1
  1240. turbo_e_4,368,44,0 duplicate(TurboTrap_e4) trap_e4#F93 139,1,1
  1241. turbo_e_4,368,40,0 duplicate(TurboTrap_e4) trap_e4#F94 139,1,1
  1242. turbo_e_4,368,36,0 duplicate(TurboTrap_e4) trap_e4#F95 139,1,1
  1243. turbo_e_4,217,214,0 script bing#e4 45,3,3,{
  1244. OnTouch:
  1245. set .@bing1,rand(1,10);
  1246. if (.@bing1 > 0 && .@bing1 < 4)
  1247. warp "turbo_e_4",217,232;
  1248. else if (.@bing1 == 6)
  1249. warp "turbo_e_4",233,207;
  1250. else if (.@bing1 == 7)
  1251. warp "turbo_e_4",208,219;
  1252. else if (.@bing1 == 8)
  1253. warp "turbo_e_4",219,202;
  1254. else if (.@bing1 == 9)
  1255. warp "turbo_e_4",218,228;
  1256. disablenpc "bing#e4";
  1257. enablenpc "bing2#e4";
  1258. end;
  1259. }
  1260. turbo_e_4,217,214,0 script bing2#e4 45,3,3,{
  1261. OnInit:
  1262. disablenpc "bing2#e4";
  1263. end;
  1264. OnTouch:
  1265. set bing1,rand(1,10);
  1266. if (.@bing1 == 1)
  1267. warp "turbo_e_4",217,232;
  1268. else if (.@bing1 == 2)
  1269. warp "turbo_e_4",233,207;
  1270. else if (.@bing1 == 3)
  1271. warp "turbo_e_4",208,219;
  1272. else if (.@bing1 == 4)
  1273. warp "turbo_e_4",219,202;
  1274. else if (.@bing1 == 5)
  1275. warp "turbo_e_4",218,228;
  1276. else if (.@bing1 == 6)
  1277. warp "turbo_e_4",220,195;
  1278. end;
  1279. }