guides_eclage.txt 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. //===== rAthena Script =======================================
  2. //= Eclage Guides
  3. //===== By: ==================================================
  4. //= Euphy
  5. //===== Current Version: =====================================
  6. //= 1.0
  7. //===== Compatible With: =====================================
  8. //= rAthena Project
  9. //===== Description: =========================================
  10. //= Guides for the city of Eclage.
  11. //===== Additional Comments: =================================
  12. //= 1.0 First version. [Euphy]
  13. //============================================================
  14. ecl_in01,48,60,5 script Eclage Guard#obb 447,{
  15. mes "[Eclage Guard]";
  16. mes "Welcome, Adventurer. This is the plaza of Eclage, a great and sacred tree. How can I help you?";
  17. next;
  18. switch(select("Palace:Orb:Store:Prison:Clinic:Residential Area:Finish the conversation")) {
  19. case 1:
  20. mes "[Eclage Guard]";
  21. mes "Our great king, courageous generals, and scholars are all staying at the palace.";
  22. mes "The palace is located at the top of Eclage. We usually fly there, but I see you don't have wings. Follow the path on your right then. It will lead you to the palace.";
  23. close;
  24. case 2:
  25. mes "[Eclage Guard]";
  26. mes "The Orb behind me is like a symbol of us Laphines.";
  27. mes "It's filled with great and mysterious power. We always keep an eye on it and guard it carefully.";
  28. close;
  29. case 3:
  30. mes "[Eclage Guard]";
  31. mes "This is the plaza of Eclage. You'll find everything you need around here.";
  32. close;
  33. case 4:
  34. mes "[Eclage Guard]";
  35. mes "Prison is a place for criminals. Why would an adventurer like you go there?";
  36. mes "Well, it's a little suspicious...but I'll tell you the location. Follow the path on your left. They don't let anyone in though.";
  37. close;
  38. case 5:
  39. mes "[Eclage Guard]";
  40. mes "All your pain and weariness melt away in the arms of nature. Restore your mind and body at Eclage Clinic.";
  41. mes "Follow the path on your left.";
  42. close;
  43. case 6:
  44. mes "[Eclage Guard]";
  45. mes "Haven't you seen our decorations for Yai? Take a trip outside. You'll see our residential area.";
  46. close;
  47. case 7:
  48. close;
  49. }
  50. }