lhalzen_dun.txt 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. //===== Athena Script ========================================
  2. //= Lighthalzen Dungeon Warp Script
  3. //===== By: ==================================================
  4. //= Sara-chan (1.0)
  5. //===== Current Version: =====================================
  6. //= 1.6b
  7. //===== Compatible With: =====================================
  8. //= Any Athena Version; RO Episode 8+
  9. //===== Description: =========================================
  10. //= Warp Points for Lighthalzen Dungeon
  11. //===== Additional Comments: =================================
  12. //= No Comment!
  13. //= 1.1 Added temp restriction by Azazel [Lupus]
  14. //= 1.2 Optimized [Lupus]
  15. //= and fixed 005 and 005a warps coords, thanks to Justin84
  16. //= 1.3 Fixed entrance condition check, thanx2Daegaladh [Lupus]
  17. //= 1.4 Added coords of secret dungeon entrance, thanks to Justin84
  18. //= proved with screenshots [Lupus]
  19. //= 1.5a thx2 Justin84, some additions and fixes [Lupus]
  20. //= 1.5b re-enabled main entrance warp [Lupus] <-reverted 1.5c
  21. //= 1.6 Updated entrances, added Cube room warps, thanx 2 Justin84
  22. //= 1.6a Disabled the "Entrance" to lhz_dun01 [Poki#3]
  23. //= 1.6b Updated Sewer Pipe [Vicious]
  24. //= 1.7 Fixed a warp-back
  25. //= 1.8 Some small changes [MasterOfMuppets]
  26. //============================================================
  27. lhz_dun03.gat,140,139,0 warp lhz003 1,1,lhz_dun02.gat,150,145
  28. lhz_dun02.gat,18,150,0 warp lhz004 1,1,lhz_dun01.gat,18,148
  29. lhz_dun01.gat,18,146,0 warp lhz004a 1,1,lhz_dun02.gat,18,148
  30. lhz_dun02.gat,282,155,0 warp lhz005 1,1,lhz_dun01.gat,281,152
  31. lhz_dun01.gat,281,150,0 warp lhz005a 1,1,lhz_dun02.gat,282,153
  32. lhz_dun02.gat,148,18,0 warp lhz006 1,1,lhz_dun01.gat,146,10
  33. lhz_dun01.gat,148,10,0 warp lhz006a 1,1,lhz_dun02.gat,150,18
  34. //current entrance
  35. lhz_dun01.gat,150,290,0 warp lhz007 1,1,lhz_in01.gat,23,137
  36. //lighthalzen.gat,73,52,0 warp lhz007a 1,1,lhz_dun01.gat,150,288
  37. //This should be only an Exit. This warp doesn't exist on kRO.
  38. //--------------------------Sewer Pipe--------------------------
  39. lighthalzen.gat,313,301,0 script Sewer Pipe 111,{
  40. mes "You see some pipes for a sewage system.";
  41. if(hzdun == 1)goto s_Find;
  42. close;
  43. s_Find:
  44. mes "You found the way into the lab.";
  45. next;
  46. menu "Go in.",L_1,"Do not go in.",-;
  47. close;
  48. L_1:
  49. warp "lhz_cube.gat",231,17;
  50. end;
  51. }
  52. //--------------------------Warp--------------------------
  53. //Cube room <-> Organism test laboratory level 2
  54. lhz_cube.gat,231,96,0 warp lhzcube1 1,1,lhz_dun02.gat,220,6
  55. lhz_dun02.gat,224,6,0 warp lhzcube2 1,1,lhz_cube.gat,231,90
  56. //Cube room -> Lighthalzen
  57. lhz_cube.gat,231,12,0 warp lhzcube3 1,1,lighthalzen.gat,310,302
  58. lhz_cube.gat,177,96,0 warp lhzcube4 1,1,lighthalzen.gat,310,302
  59. lhz_dun02.gat,150,149,4 script lhz-warp 45,2,2,{
  60. OnTouch:
  61. if(Upper != 1 && BaseLevel<95)goto s_Noentry0;
  62. if(Upper == 1 && BaseLevel<90)goto s_Noentry1;
  63. warp "lhz_dun03",140,137;
  64. end;
  65. s_Noentry0:
  66. mes "Non-Advanced class characters must be at least base level 95 to enter level 3 of the Bio Lab Dungeon";
  67. close;
  68. s_Noentry1:
  69. mes "Advanced class characters must be at least base level 90 to enter level 3 of the Bio Lab Dungeon";
  70. close;
  71. }