ba_pw.txt 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //===== rAthena Script =======================================
  2. //= Portals of Varmundt's mansion
  3. //===== Changelog: ===========================================
  4. //= 1.0 First version. [crazyarashi]
  5. //============================================================
  6. //= Power Plant
  7. //============================================================
  8. ba_pw01,91,291,0 script #ep172_pw1_to_lab WARPNPC,1,1,{
  9. end;
  10. OnTouch:
  11. if (ep17_2_main < 6) {
  12. mes "There is still some work to be done here. Let's look around more.";
  13. close;
  14. }
  15. warp "ba_in01",23,315;
  16. end;
  17. }
  18. ba_pw01,10,115,0 warp #ep172_pw1_to_pw2 1,1,ba_pw02,10,149
  19. ba_pw02,7,149,0 script #ep172_pw2_to_pw1 WARPNPC,1,1,{
  20. end;
  21. OnTouch:
  22. if (ep17_2_main < 4) {
  23. mes "There is still some work to be done here. Let's look around more.";
  24. close;
  25. }
  26. warp "ba_pw01",13,115;
  27. end;
  28. }
  29. ba_pw02,275,15,0 warp #ep172_pw2_to_cor 1,1,sp_cor,257,285
  30. sp_cor,258,287,0 script #ep172_cor_to_pw2 WARPNPC,1,1,{
  31. end;
  32. OnTouch:
  33. if (ep17_2_main < 2) {
  34. npctalk "Rookie : Oh? I haven't opened it yet! Hold on for a while, we're doing our best to open it!", "Rookie#rm171_2", bc_self;
  35. end;
  36. }
  37. warp "ba_pw02",275,20;
  38. end;
  39. }