summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--world/map/npc/009-6/brodomir.txt9
1 files changed, 8 insertions, 1 deletions
diff --git a/world/map/npc/009-6/brodomir.txt b/world/map/npc/009-6/brodomir.txt
index c2743366..f60bef1d 100644
--- a/world/map/npc/009-6/brodomir.txt
+++ b/world/map/npc/009-6/brodomir.txt
@@ -105,8 +105,10 @@ L_Fool:
L_Pay:
mes "[Brodomir]";
- mes "\"How much money do you want to sponsor as price?\"";
+ mes "\"How much money do you want to sponsor as price? It should be at least 5000GP.\"";
input @brodomir_money;
+ if (@brodomir_money < 5000)
+ goto L_TooCheap;
if ($@BRODOMIR_PVP_STATUS == 1)
goto L_Wait;
if (getareausers("009-6.gat", 20, 20, 80, 80, 1) < 3)
@@ -210,6 +212,11 @@ L_NotEnoughMoney:
mes "\"You don't have enough money.\"";
goto L_Close;
+L_TooCheap:
+ mes "[Brodomir]";
+ mes "\"That's too cheap as a price.\"";
+ goto L_Close;
+
L_Cleanup:
pvpoff "009-5.gat";
set $@BRODOMIR_PVP_STATUS , 0;