|
@@ -17,6 +17,8 @@
|
|
//= Christopher the blacksmith in Geffen. Edited some dialogue [kobra_k88]
|
|
//= Christopher the blacksmith in Geffen. Edited some dialogue [kobra_k88]
|
|
//= 1.3 New Payon Locations [Darkchild]
|
|
//= 1.3 New Payon Locations [Darkchild]
|
|
//= Corrected zeny subtraction thx to jpnmania77.[kobra_k88]
|
|
//= Corrected zeny subtraction thx to jpnmania77.[kobra_k88]
|
|
|
|
+//= 1.3a Temporary corrected an expliot. Need to check sources
|
|
|
|
+//= to fully fix bug [Shinigami]
|
|
//============================================================
|
|
//============================================================
|
|
|
|
|
|
|
|
|
|
@@ -80,11 +82,12 @@ geffen_in.gat,110,172,2 script Christopher 63,
|
|
sM_Furn:
|
|
sM_Furn:
|
|
mes "[Christopher Guillenrow]";
|
|
mes "[Christopher Guillenrow]";
|
|
mes "This is a prerequisite for Metal refining!!";
|
|
mes "This is a prerequisite for Metal refining!!";
|
|
- mes "So, how many do ye wish to buy? If you want to quit, please input the number '0'.";
|
|
|
|
|
|
+ mes "So, how many do ye wish to buy? If you want to quit, please input the number '0'. However, you the maximum amount you can buy is 1000";
|
|
set @input, 0;
|
|
set @input, 0;
|
|
input @input;
|
|
input @input;
|
|
next;
|
|
next;
|
|
if(@input < 1 ) goto sM_Menu1;
|
|
if(@input < 1 ) goto sM_Menu1;
|
|
|
|
+ if(@input > 1000 ) goto sM_Max;
|
|
if(Zeny < 150 * @input) goto L_NoZeny;
|
|
if(Zeny < 150 * @input) goto L_NoZeny;
|
|
set Zeny, Zeny - (150 * @input);
|
|
set Zeny, Zeny - (150 * @input);
|
|
getitem 612, @input;
|
|
getitem 612, @input;
|
|
@@ -104,6 +107,10 @@ geffen_in.gat,110,172,2 script Christopher 63,
|
|
set Zeny, Zeny - 5000;
|
|
set Zeny, Zeny - 5000;
|
|
getitem 615,1;
|
|
getitem 615,1;
|
|
goto L_Thanks;
|
|
goto L_Thanks;
|
|
|
|
+ sM_Max:
|
|
|
|
+ mes "[Christopher Guillenrow]";
|
|
|
|
+ mes "Sorry, you can't buy more than 1000 furnace at a time.";
|
|
|
|
+ close;
|
|
|
|
|
|
M_2:
|
|
M_2:
|
|
mes "[Christopher Guillenrow]";
|
|
mes "[Christopher Guillenrow]";
|