diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-02-02 14:24:09 +0000 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-02-02 14:24:09 +0000 |
commit | 3cf5f7045bbb432885e465485cedd05778b9597c (patch) | |
tree | 623dba915cc9adbadaecb19161a37a051cac4c61 /npc/functions/banker.txt | |
parent | 28cb576f5bdcb1533cd13b1c467c49764ca5cf06 (diff) | |
download | serverdata-3cf5f7045bbb432885e465485cedd05778b9597c.tar.gz serverdata-3cf5f7045bbb432885e465485cedd05778b9597c.tar.bz2 serverdata-3cf5f7045bbb432885e465485cedd05778b9597c.tar.xz serverdata-3cf5f7045bbb432885e465485cedd05778b9597c.zip |
Disable bank deposits for now
Diffstat (limited to 'npc/functions/banker.txt')
-rw-r--r-- | npc/functions/banker.txt | 8 |
1 files changed, 7 insertions, 1 deletions
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 |