guides_niflheim.txt 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. //===== rAthena Script =======================================
  2. //= Niflheim Guide
  3. //===== By: ==================================================
  4. //= L0ne_W0lf
  5. //===== Current Version: =====================================
  6. //= 1.1
  7. //===== Compatible With: =====================================
  8. //= rAthena SVN
  9. //===== Description: =========================================
  10. //= [Aegis Conversion]
  11. //= Guide for the city of Niflehim.
  12. //===== Additional Comments: =================================
  13. //= 1.0 First version, Renewal guide.
  14. //= 1.1 Optimized. [Euphy]
  15. //============================================================
  16. niflheim,201,187,3 script Niflheim Guide#01nif 849,{
  17. mes "[Niflheim Guide]";
  18. mes "Welcome to.. ^8B4513Niflheim^000000...";
  19. mes "the Realm of the Dead...";
  20. mes "Do you need help navigating the realm...?";
  21. while (1) {
  22. next;
  23. switch(select("[ Tool Shop ]:[ Pub ]:[ Weapon Shop ]:[ Witch's Castle ]:Remove Marks from Mini-Map:Cancel")) {
  24. case 1:
  25. callsub L_Mark,"^0000FFTool Shop";
  26. viewpoint 1,218,196,0,0x0A82FF;
  27. break;
  28. case 2:
  29. callsub L_Mark,"^006400Pub";
  30. viewpoint 1,189,208,1,0xAAFF00;
  31. break;
  32. case 3:
  33. callsub L_Mark,"^800080Weapon Shop";
  34. viewpoint 1,218,170,2,0xDA70D6;
  35. break;
  36. case 4:
  37. callsub L_Mark,"^FF1493Witch's Castle";
  38. viewpoint 1,255,195,3,0xFF1493;
  39. break;
  40. case 5:
  41. mes "[Niflheim Guide]";
  42. mes "Sure, I'll remove all marks from your mini-map...";
  43. mes "Is there anything else I can do for you...?";
  44. viewpoint 2,1,1,0,0xFFFFFF;
  45. viewpoint 2,1,1,1,0xFFFFFF;
  46. viewpoint 2,1,1,2,0xFFFFFF;
  47. viewpoint 2,1,1,3,0xFFFFFF;
  48. break;
  49. case 6:
  50. mes "[Niflheim Guide]";
  51. mes "......Bye~!..";
  52. close;
  53. }
  54. }
  55. end;
  56. L_Mark:
  57. mes "[Niflheim Guide]";
  58. mes "Let me mark the location of the";
  59. mes getarg(0)+"^000000...";
  60. mes "on your mini-map.";
  61. mes "Would you like to check any other locations?";
  62. return;
  63. }