diff options
Diffstat (limited to 'npc/029-1/ferry_master.txt')
-rwxr-xr-x | npc/029-1/ferry_master.txt | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/npc/029-1/ferry_master.txt b/npc/029-1/ferry_master.txt new file mode 100755 index 00000000..8828ee71 --- /dev/null +++ b/npc/029-1/ferry_master.txt @@ -0,0 +1,19 @@ + +029-1,45,107,0 script Ferry Master#candor NPC138,{ + mes "[Ferry Master]"; + mes "\"Hello! Do you need something?\""; + goto L_Main; + +L_Main: + menu + "How do I use the ferry?", L_Explain, + "Nothing I guess", L_close; + +L_Explain: + mes "[Ferry Master]"; + callfunc "FerryHelp"; + goto L_Main; + +L_close: + close; +} |