diff options
author | Jesusaves <cpntb1@ymail.com> | 2023-06-30 23:16:02 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2023-06-30 23:16:02 -0300 |
commit | 4df5a7396cac11a600f3acfb69649a2ab977ceca (patch) | |
tree | 7ad8ced05ea33498ea03c90dfb24544321f476c5 /npc/033-5 | |
parent | 01111a347ba3546b941c73c8ad70e9507b8d1f9b (diff) | |
download | serverdata-4df5a7396cac11a600f3acfb69649a2ab977ceca.tar.gz serverdata-4df5a7396cac11a600f3acfb69649a2ab977ceca.tar.bz2 serverdata-4df5a7396cac11a600f3acfb69649a2ab977ceca.tar.xz serverdata-4df5a7396cac11a600f3acfb69649a2ab977ceca.zip |
Add Magic System
Diffstat (limited to 'npc/033-5')
-rw-r--r-- | npc/033-5/_import.txt | 1 | ||||
-rw-r--r-- | npc/033-5/tamiloc.txt | 83 |
2 files changed, 84 insertions, 0 deletions
diff --git a/npc/033-5/_import.txt b/npc/033-5/_import.txt index d6b8ba2..c6e4a1f 100644 --- a/npc/033-5/_import.txt +++ b/npc/033-5/_import.txt @@ -2,3 +2,4 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. "npc/033-5/_warps.txt", "npc/033-5/shop.txt", +"npc/033-5/tamiloc.txt", diff --git a/npc/033-5/tamiloc.txt b/npc/033-5/tamiloc.txt new file mode 100644 index 0000000..e43635b --- /dev/null +++ b/npc/033-5/tamiloc.txt @@ -0,0 +1,83 @@ +// TMW2 scripts. +// Authors: +// Saulc +// Jesusalva +// Reid +// Travolta +// Description: +// We also need specific barbers for other games I guess? This is ML's. + +033-5,46,22,0 script Tamiloc NPC_ELVEN_FEMALE_ARMOR_SHOP,{ + function setRace { + clear; + setnpcdialogtitle l("%s - Modify Race", .name$); + mes l("Race") + ": " + get_race(); + next; + mes l("Please select the desired race."); + select + l("Kaizei Human"), + l("Argaes Human"), + l("Tonori Human"), + l("Elf"), + l("Orc"), + l("Raijin"), + l("Tritan"), + l("Ukar"), + l("Redy"), + l("Savior"); + switch (@menu) + { + default: + jobchange max(0, @menu-1); + } + return; + } + + + mesn; + mesq l("Hi! Do you want a hair cut?"); + + do + { + select + l("What is my current hairstyle and hair color?"), + l("I'd like to get a different style."), + l("Can you do something with my color?"), + l("I want to change my Race!"), + l("I'm fine for now, thank you."); + + switch (@menu) + { + case 1: + BarberSayStyle 3; + break; + case 2: + BarberChangeStyle; + speech S_FIRST_BLANK_LINE | S_LAST_NEXT, + l("Enjoy your new style."); + l("Anything else?"); + break; + case 3: + BarberChangeColor; + speech S_FIRST_BLANK_LINE | S_LAST_NEXT, + l("I hope you like this color."); + l("Anything else?"); + break; + case 4: + setRace; + break; + case 5: + speech S_FIRST_BLANK_LINE | S_LAST_NEXT, + l("Feel free to come visit me another time."); + + goodbye; + } + } while (1); + close; + + +OnInit: + .sex = G_FEMALE; + .distance = 5; + end; +} |