guides_niflheim.txt 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. //===== rAthena Script =======================================
  2. //= Niflheim Guide
  3. //===== By: ==================================================
  4. //= L0ne_W0lf
  5. //===== Current Version: =====================================
  6. //= 1.0
  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. //============================================================
  15. niflheim,201,187,3 script Niflheim Guide#01nif 849,{
  16. mes "[Niflheim Guide]";
  17. mes "Welcome to.. ^8B4513Niflheim^000000...";
  18. mes "the Realm of the Dead...";
  19. mes "Do you need help navigating the realm...?" ;
  20. while (1) {
  21. next;
  22. switch(select("[ Tool Shop ]:[ Pub ]:[ Weapon Shop ]:[ Witch's Castle ]:Remove Marks from Mini-Map:Cancel")) {
  23. case 1:
  24. mes "[Niflheim Guide]";
  25. mes "Let me mark the location of the";
  26. mes "^0000FFTool Shop^000000..";
  27. mes "on your mini-map.";
  28. mes "Would you like to check any other locations?";
  29. viewpoint 1,218,196,0,0x0A82FF;
  30. break;
  31. case 2:
  32. mes "[Niflheim Guide]";
  33. mes "Let me mark the location of the";
  34. mes "^006400Pub^000000..";
  35. mes "on your mini-map.";
  36. mes "Would you like to check any other locations?";
  37. viewpoint 1,189,208,1,0xAAFF00;
  38. break;
  39. case 3:
  40. mes "[Niflheim Guide]";
  41. mes "Let me mark the location of the";
  42. mes "^800080Weapon Shop^000000..";
  43. mes "on your mini-map.";
  44. mes "Would you like to check any other locations?";
  45. viewpoint 1,218,170,2,0xDA70D6;
  46. break;
  47. case 4:
  48. mes "[Niflheim Guide]";
  49. mes "Let me mark the location of the";
  50. mes "^FF1493Witch's Castle^000000..";
  51. mes "on your mini-map.";
  52. mes "Would you like to check any other locations?";
  53. viewpoint 1,255,195,3,0xFF1493;
  54. break;
  55. case 5:
  56. mes "[Niflheim Guide]";
  57. mes "Sure, I'll remove all marks from your mini-map...";
  58. mes "Is there anything else I can do for you...?";
  59. viewpoint 2,1,1,0,0xFFFFFF;
  60. viewpoint 2,1,1,1,0xFFFFFF;
  61. viewpoint 2,1,1,2,0xFFFFFF;
  62. viewpoint 2,1,1,3,0xFFFFFF;
  63. break;
  64. case 6:
  65. mes "[Niflheim Guide]";
  66. mes "......Bye~!..";
  67. close;
  68. }
  69. }
  70. }