diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-02-14 20:13:09 +0000 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-02-14 20:13:09 +0000 |
commit | 481d1eca66e38154063b078b84fe76a830e5ac0d (patch) | |
tree | 936e79882218d32d4075f46ad85aff7cec199d2a /npc/functions | |
parent | fe02011f477c57c7461b2bc25456bd9426e98cd7 (diff) | |
parent | ef7a69afc170e8c60af91583d7c1488a7590fcab (diff) | |
download | classic-serverdata-481d1eca66e38154063b078b84fe76a830e5ac0d.tar.gz classic-serverdata-481d1eca66e38154063b078b84fe76a830e5ac0d.tar.bz2 classic-serverdata-481d1eca66e38154063b078b84fe76a830e5ac0d.tar.xz classic-serverdata-481d1eca66e38154063b078b84fe76a830e5ac0d.zip |
Merge commit 'mainline/master'
Conflicts:
db/item_db.txt
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/banker.txt | 7 | ||||
-rw-r--r-- | npc/functions/barber.txt | 12 | ||||
-rw-r--r-- | npc/functions/game_rules.txt | 2 |
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)"; |