summaryrefslogtreecommitdiff
path: root/npc/003-1
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-05-30 23:58:34 -0300
committerJesusaves <cpntb1@ymail.com>2018-05-30 23:58:34 -0300
commit52bb14a05013cfa64d778f652ea1dfc40069c7f7 (patch)
tree7ee061e08493434c1577383e2256f8fa787594de /npc/003-1
parent2b102393713342bfcd77492e00d3c693b49ca6e0 (diff)
downloadserverdata-52bb14a05013cfa64d778f652ea1dfc40069c7f7.tar.gz
serverdata-52bb14a05013cfa64d778f652ea1dfc40069c7f7.tar.bz2
serverdata-52bb14a05013cfa64d778f652ea1dfc40069c7f7.tar.xz
serverdata-52bb14a05013cfa64d778f652ea1dfc40069c7f7.zip
Move Tamiloc
Diffstat (limited to 'npc/003-1')
-rw-r--r--npc/003-1/_import.txt1
-rw-r--r--npc/003-1/tamiloc.txt72
2 files changed, 0 insertions, 73 deletions
diff --git a/npc/003-1/_import.txt b/npc/003-1/_import.txt
index 6e62a1685..19146fc93 100644
--- a/npc/003-1/_import.txt
+++ b/npc/003-1/_import.txt
@@ -34,7 +34,6 @@
"npc/003-1/silvia.txt",
"npc/003-1/soul-menhir.txt",
"npc/003-1/swezanne.txt",
-"npc/003-1/tamiloc.txt",
"npc/003-1/tinris.txt",
"npc/003-1/wateranimation.txt",
"npc/003-1/well.txt",
diff --git a/npc/003-1/tamiloc.txt b/npc/003-1/tamiloc.txt
deleted file mode 100644
index f6812288f..000000000
--- a/npc/003-1/tamiloc.txt
+++ /dev/null
@@ -1,72 +0,0 @@
-// TMW2 scripts.
-// Authors:
-// Saulc
-// Jesusalva
-// Reid
-// Travolta
-// Description:
-// For a while, the Barber will be Tamiloc, until we decide to either move it or keep it.
-
-003-1,49,43,0 script Tamiloc NPC_ELVEN_FEMALE_ARMOR_SHOP,{
- function setRace {
- clear;
- setnpcdialogtitle l("Debug - Modify Race");
- mes l("Race") + ": " + $@allraces$[Class];
- next;
- mes l("Please select the desired race.");
- switch (select("Human:Ukar:Redy:Elf:Orc:Raijin:Tritan"))
- {
- 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?"),
- rif(is_staff(), l("I am a GM, and 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;
-}