From 28cb576f5bdcb1533cd13b1c467c49764ca5cf06 Mon Sep 17 00:00:00 2001 From: Jared Adams Date: Mon, 2 Feb 2009 13:55:29 +0000 Subject: Fix typo --- npc/functions/banker.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'npc/functions') diff --git a/npc/functions/banker.txt b/npc/functions/banker.txt index b10806cc..4c70ff77 100644 --- a/npc/functions/banker.txt +++ b/npc/functions/banker.txt @@ -66,7 +66,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; -- cgit v1.2.3-70-g09d2 From 3cf5f7045bbb432885e465485cedd05778b9597c Mon Sep 17 00:00:00 2001 From: Jared Adams Date: Mon, 2 Feb 2009 14:24:09 +0000 Subject: Disable bank deposits for now --- npc/functions/banker.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'npc/functions') diff --git a/npc/functions/banker.txt b/npc/functions/banker.txt index 4c70ff77..ec4983f4 100644 --- a/npc/functions/banker.txt +++ b/npc/functions/banker.txt @@ -5,10 +5,16 @@ 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$ + "]"; + mes "\"I'm sorry, but we're not taking any new deposits right now.\""; + close; + mes "\"How much would you like to deposit?\""; next; menu -- cgit v1.2.3-70-g09d2 From 83e7af0ddc358e85324a650686dc8e82ea15f2ad Mon Sep 17 00:00:00 2001 From: Jared Adams Date: Tue, 3 Feb 2009 06:17:49 +0000 Subject: Add missing ';' --- npc/functions/game_rules.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'npc/functions') 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)"; -- cgit v1.2.3-70-g09d2 From 1242ad1ce0e8033075433d85419578b8f61bcca9 Mon Sep 17 00:00:00 2001 From: Jared Adams Date: Wed, 11 Feb 2009 10:15:47 +0000 Subject: Reenable bank deposits (now that trade is fixed) --- npc/functions/banker.txt | 3 --- 1 file changed, 3 deletions(-) (limited to 'npc/functions') diff --git a/npc/functions/banker.txt b/npc/functions/banker.txt index ec4983f4..79a57738 100644 --- a/npc/functions/banker.txt +++ b/npc/functions/banker.txt @@ -12,9 +12,6 @@ function script Banker { L_Dep: mes "[" + @npcName$ + "]"; - mes "\"I'm sorry, but we're not taking any new deposits right now.\""; - close; - mes "\"How much would you like to deposit?\""; next; menu -- cgit v1.2.3-70-g09d2 From ef7a69afc170e8c60af91583d7c1488a7590fcab Mon Sep 17 00:00:00 2001 From: Jared Adams Date: Sat, 14 Feb 2009 14:19:06 +0000 Subject: Add new hair styles and color --- npc/functions/barber.txt | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'npc/functions') 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; -- cgit v1.2.3-70-g09d2