guides_rockridge.txt 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. //===== rAthena Script =======================================
  2. //= Rock Ridge Guides
  3. //===== Description: =========================================
  4. //= NPC Guide for Rock Ridge
  5. //===== Changelogs: ==========================================
  6. //= 1.0 First Version. [Capuche]
  7. //============================================================
  8. harboro1,356,211,5 script Guide#rockridge01 4_F_ANYA,{
  9. mes "[Sheriff Assistant]";
  10. mes "Welcome to Rock Ridge, the hot, dry desert in the West where adventure is waiting!";
  11. mes "I'm the sheriff's assistant, and I'm here to guide visitors. Is there a place you want to go?";
  12. next;
  13. mes "[Sheriff Assistant]";
  14. mes "Tell me where you want to go, and I'll show you where it is.";
  15. mes "Also, you can use ^B9062FNavigation^000000 mode by ^B9062Fclicking the name of the place^000000 I showed to you.";
  16. while(true) {
  17. next;
  18. .@s = select( "[Kafra Employee]", "[Inn]", "[Weapon/Armor Shop]", "[Tool Shop]", "[Sheriff's Office]", "Clear mini-map.", "Cancel." );
  19. switch(.@s) {
  20. case 1:
  21. mes "[Sheriff Assistant]";
  22. mes "The ^006400Kafra Employee^000000, got it. Please click the ^0000FFBox icon^000000 on your mini-map.";
  23. viewpoint 1,291,207,1,0xFFFF33;
  24. break;
  25. case 2:
  26. mes "[Sheriff Assistant]";
  27. mes "I've marked the location of the <NAVI>Inn<INFO>harboro1,156,215,0,000,0</INFO></NAVI> on your mini-map.";
  28. mes "Click the name to activate Navigation mode.";
  29. viewpoint 1,156,215,2,0xAAFF00;
  30. break;
  31. case 3:
  32. mes "[Sheriff Assistant]";
  33. mes "I've marked the location of the <NAVI>Weapon/Armor Shop<INFO>harboro1,312,193,0,000,0</INFO></NAVI> on your mini-map.";
  34. mes "Click the name to activate Navigation mode.";
  35. viewpoint 1,312,193,3,0x008080;
  36. break;
  37. case 4:
  38. mes "[Sheriff Assistant]";
  39. mes "I've marked the location of the <NAVI>Tool Shop<INFO>harboro1,312,193,0,000,0</INFO></NAVI> on your mini-map.";
  40. mes "Click the name to activate Navigation mode.";
  41. viewpoint 1,312,193,4,0xFF1493;
  42. break;
  43. case 5:
  44. mes "[Sheriff Assistant]";
  45. mes "I've marked the location of the <NAVI>Sheriff's Office<INFO>harboro1,241,218,0,000,0</INFO></NAVI> on your mini-map.";
  46. mes "Click the name to activate Navigation mode.";
  47. viewpoint 1,241,218,5,0xFFCCFF;
  48. break;
  49. case 6:
  50. mes "[Sheriff Assistant]";
  51. mes "Let me remove all the marks on your mini-map.";
  52. viewpoint 2,291,207,1,0xFFFF33;
  53. viewpoint 2,156,215,2,0xAAFF00;
  54. viewpoint 2,312,193,3,0x008080;
  55. viewpoint 2,312,193,4,0xFF1493;
  56. viewpoint 2,241,218,5,0xFFCCFF;
  57. break;
  58. case 7:
  59. mes "[Sheriff Assistant]";
  60. mes "Enjoy your stay in Rock Ridge!";
  61. close;
  62. }
  63. if (.@s == 7)
  64. mes "Did you need anything else?";
  65. else
  66. mes "Is there anywhere else you want to check?";
  67. }
  68. }
  69. harboro1,80,211,3 duplicate(Guide#rockridge01) Guide#rockridge02 4_F_ANYA