summaryrefslogtreecommitdiff
path: root/npc/012-4/craft.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-12-23 03:44:18 -0300
committerJesusaves <cpntb1@ymail.com>2021-12-23 03:44:18 -0300
commitdca56a9eb535ba762df4b98636efe3e987c93e52 (patch)
treeb0d52256143205a5c9fd8be72080f979079bcce2 /npc/012-4/craft.txt
parent4f8705e3cfc0de3a22319682f2eff6fa406f1bf0 (diff)
downloadserverdata-dca56a9eb535ba762df4b98636efe3e987c93e52.tar.gz
serverdata-dca56a9eb535ba762df4b98636efe3e987c93e52.tar.bz2
serverdata-dca56a9eb535ba762df4b98636efe3e987c93e52.tar.xz
serverdata-dca56a9eb535ba762df4b98636efe3e987c93e52.zip
Modify the pricing system for premium alchemy services.
Diffstat (limited to 'npc/012-4/craft.txt')
-rw-r--r--npc/012-4/craft.txt42
1 files changed, 27 insertions, 15 deletions
diff --git a/npc/012-4/craft.txt b/npc/012-4/craft.txt
index ccf366376..be788e9a9 100644
--- a/npc/012-4/craft.txt
+++ b/npc/012-4/craft.txt
@@ -5,25 +5,36 @@
// Rentable Alchemy Bench
012-4,27,31,0 script Alchemy Cauldron NPC_NO_SPRITE,{
+ mesc l("What will you brew today?");
+ mesc l("It costs %d GP to use.", .price), 1;
+ mesc l("This tax must be paid now, and you can brew as much as you wish after payment."), 1;
+ if (Zeny < .price)
+ close;
+ next;
+ select
+ l("Pay"),
+ l("Don't pay.");
+ mes "";
+ if (@menu == 2) { closeclientdialog; close; }
+ clear;
+ if (Zeny < .price) {
+ mesc l("WARNING, you have been detected cheating and thus, violating Tulimshar Anti-Theft Policy."), 1;
+ mesc l("You were jailed and now need a GM to get you out of there."), 1;
+ logmes "WARNING, "+strcharinfo(0)+" found out cheating, only had "+Zeny+"/300 GP for alchemy table. Jailed.", LOGMES_ATCOMMAND;
+ consoleinfo("%s jailed - no money when brewing.", strcharinfo(0));
+ atcommand("@jail "+strcharinfo(0));
+ // Apply a more realistic penalty
+ Zeny=0;
+ CRAFTSYS_CURRENT=0;
+ close;
+ }
+ Zeny-=.price;
+
do {
mesc l("What will you brew today?");
- mesc l("It costs %d GP to use.", 300), 1;
- if (Zeny < 300)
- close;
+ mes "";
if (AlchemySystem(CRAFT_PLAYER)) {
- if (Zeny < 300) {
- mesc l("WARNING, you have been detected cheating and thus, violating Tulimshar Anti-Theft Policy."), 1;
- mesc l("You were jailed and now need a GM to get you out of there."), 1;
- logmes "WARNING, "+strcharinfo(0)+" found out cheating, only had "+Zeny+"/300 GP for alchemy table. Jailed.", LOGMES_ATCOMMAND;
- consoleinfo("%s jailed - no money when brewing.", strcharinfo(0));
- atcommand("@jail "+strcharinfo(0));
- // Apply a more realistic penalty
- Zeny=0;
- CRAFTSYS_CURRENT=0;
- close;
- }
- Zeny-=300;
mesc l("Success!"), 3;
} else {
mesc l("That didn't work!"), 1;
@@ -36,6 +47,7 @@
OnInit:
.distance=3;
+ .price=1500;
end;
}