summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJessica Tölke <jtoelke@mail.upb.de>2012-08-28 22:34:39 +0200
committerJessica Tölke <jtoelke@mail.upb.de>2012-08-28 22:34:39 +0200
commitcebbbb580cfcc7addba356d960a63f4eee2e2c5a (patch)
tree88dbbcd2f13666652e4a699ee738e4124866d403
parent9339134ec5355ece3fed7e85c61d639864f07f35 (diff)
downloadserverdata-cebbbb580cfcc7addba356d960a63f4eee2e2c5a.tar.gz
serverdata-cebbbb580cfcc7addba356d960a63f4eee2e2c5a.tar.bz2
serverdata-cebbbb580cfcc7addba356d960a63f4eee2e2c5a.tar.xz
serverdata-cebbbb580cfcc7addba356d960a63f4eee2e2c5a.zip
PvPEvent: Replace 'price' with 'prize' in dialogue.
-rw-r--r--world/map/npc/009-6/brodomir.txt16
1 files changed, 8 insertions, 8 deletions
diff --git a/world/map/npc/009-6/brodomir.txt b/world/map/npc/009-6/brodomir.txt
index f60bef1d..e7621287 100644
--- a/world/map/npc/009-6/brodomir.txt
+++ b/world/map/npc/009-6/brodomir.txt
@@ -12,8 +12,8 @@
// time when the players will be warped into the fight cave
// $@BRODOMIR_PLAYERS: number of players taking part in the event
-// $@BRODOMIR_ITEM$: Item that was given by the sponsor as price
-// $@BRODOMIR_ITEM_AMOUNT: Amount of price items
+// $@BRODOMIR_ITEM$: Item that was given by the sponsor as prize
+// $@BRODOMIR_ITEM_AMOUNT: Amount of prize items
// $@BRODOMIR_SPONSOR: player ID of sponsor that gave the item
// $@BRODOMIR_MONEY: Amount of money given by the sponsor
@@ -48,18 +48,18 @@ L_Longtalk:
mes "\"When my shelter was no longer required I started to wander around. Now I ended up here old and wrinkly. I'm only able to drive away those weak creatures who try to enter my home all the time. Slowly they learn to leave me alone or I'll squish them.\"";
next;
mes "\"I am sorry but I cannot teach you anything anymore. I am too old. But I am still quite good with my pickaxe and I made a cave where you can fight against your friends.\"";
- mes "\"The only things you need is to sponsor some price money and at least two of your friends. If you pay me I will give you about five minutes and after that I will bring you to the cave where you can fight. I will reward the winner. Do you want to give it a shot?\"";
+ mes "\"The only things you need is to sponsor some prize money and at least two of your friends. If you pay me I will give you about five minutes and after that I will bring you to the cave where you can fight. I will reward the winner. Do you want to give it a shot?\"";
goto L_Menu;
L_Shorttalk:
- mes "Well... I'm sorry I cannot remember. I'm old. I hope you can forgive me. Well then. Do you want to fight with your friends in my cave? All you need is to sponsor some price money and at least two of your friends.";
+ mes "Well... I'm sorry I cannot remember. I'm old. I hope you can forgive me. Well then. Do you want to fight with your friends in my cave? All you need is to sponsor some prize money and at least two of your friends.";
goto L_Menu;
L_Menu:
menu
"No.", L_Exit,
"Yes.", L_Pay,
- "I'd like this item to be the price.", L_Item;
+ "I'd like this item to be the prize.", L_Item;
L_Exit:
mes "[Brodomir]";
@@ -77,7 +77,7 @@ L_Item:
if (@brodomir_item_amount < 1)
goto L_Fool;
mes "[Brodomir]";
- mes "\"So the price should be " + @brodomir_item_amount + " " + @brodomir_item$ + "?\"";
+ mes "\"So the prize should be " + @brodomir_item_amount + " " + @brodomir_item$ + "?\"";
mes "\"In case there aren't enough people to start the fight, I'll try to give it back to you. If you're not here then... well, then I'll keep it for myself.\"";
menu
"Ok.", -,
@@ -105,7 +105,7 @@ L_Fool:
L_Pay:
mes "[Brodomir]";
- mes "\"How much money do you want to sponsor as price? It should be at least 5000GP.\"";
+ mes "\"How much money do you want to sponsor as prize? It should be at least 5000GP.\"";
input @brodomir_money;
if (@brodomir_money < 5000)
goto L_TooCheap;
@@ -214,7 +214,7 @@ L_NotEnoughMoney:
L_TooCheap:
mes "[Brodomir]";
- mes "\"That's too cheap as a price.\"";
+ mes "\"That's too cheap as a prize.\"";
goto L_Close;
L_Cleanup: