summaryrefslogtreecommitdiff
path: root/npc/functions
diff options
context:
space:
mode:
Diffstat (limited to 'npc/functions')
-rw-r--r--npc/functions/banker.txt7
-rw-r--r--npc/functions/barber.txt12
-rw-r--r--npc/functions/game_rules.txt2
3 files changed, 14 insertions, 7 deletions
diff --git a/npc/functions/banker.txt b/npc/functions/banker.txt
index b10806cc..79a57738 100644
--- a/npc/functions/banker.txt
+++ b/npc/functions/banker.txt
@@ -5,7 +5,10 @@ function script Banker {
mes "\"Welcome to the bank!";
mes "How can I help you?\"";
next;
- menu "Deposit",L_Dep,"Withdraw",L_With,"Check my balance",L_Balance,"Nevermind",L_Nev;
+ menu "Deposit", L_Dep,
+ "Withdraw", L_With,
+ "Check my balance", L_Balance,
+ "Nevermind", L_Nev;
L_Dep:
mes "[" + @npcName$ + "]";
@@ -66,7 +69,7 @@ D_All:
goto L_Deposit;
L_Deposit:
- if (zeny < @Ammount) goto L_NoMoney;
+ if (zeny < @Amount) goto L_NoMoney;
set zeny, zeny - @Amount;
set BankAccount, BankAccount + @Amount;
goto L_Balance;
diff --git a/npc/functions/barber.txt b/npc/functions/barber.txt
index ceba8fd8..03ce9a53 100644
--- a/npc/functions/barber.txt
+++ b/npc/functions/barber.txt
@@ -11,7 +11,7 @@ function script Barber {
L_Style:
menu
"Bald", -,
- "Ponytail", -,
+ "Flat ponytail", -,
"Bowl cut", -,
"Combed back", -,
"Emo", -,
@@ -23,12 +23,15 @@ L_Style:
"Pigtails", -,
"Long and curly", -,
"Parted", -,
- "Supprise me", -,
+ "Perky ponytail", -,
+ "Wave", -,
+ "Mane", -,
+ "Bun", -,
"Nah, I'm fine", L_Done;
L_Process_Style:
set @style, @menu - 1;
- if (@style == 13) set @style, rand(13);
+ if (@style == 17) set @style, rand(17);
setlook 1, @style;
return;
@@ -44,10 +47,11 @@ L_Color:
"Light red", -,
"Blue", -,
"Dark purple", -,
+ "Black", -,
"Supprise me", -,
"Nah, I'm fine", L_Done;
set @color, @menu - 1;
- if (@color == 10) set @color, rand(10);
+ if (@color == 11) set @color, rand(11);
setlook 6, @color;
return;
diff --git a/npc/functions/game_rules.txt b/npc/functions/game_rules.txt
index dfb1182f..2870a46d 100644
--- a/npc/functions/game_rules.txt
+++ b/npc/functions/game_rules.txt
@@ -135,7 +135,7 @@ L_Polish:
goto L_End;
L_Italian:
- mes "I giocatori che infrangeranno le seguenti regole saranno bannati (anche permanentemente) o saranno resettati, a discrezione dei Game Masters:"
+ mes "I giocatori che infrangeranno le seguenti regole saranno bannati (anche permanentemente) o saranno resettati, a discrezione dei Game Masters:";
mes "1. Vietato abusare degli altri giocatori (insulti, imprecazioni e simili, diretti verso una particolare persona o gruppi di persone)";
mes "2. Vietato usare bot (ossia effettuare QUALSIASI attività quando non si è presenti alla tastiera)";
mes "3. Vietato spammare / postare ripetutamente messaggi inutili (incluso spam di richieste di scambio)";