git-svn-id: https://svn.code.sf.net/p/rathena/svn/athena@57 54d463be-8e91-2dee-dedb-b68131a5f0ec

This commit is contained in:
Shinigami 2004-11-08 02:25:21 +00:00
parent 319758f358
commit e705f8673f

View File

@ -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]";