|
@@ -57,6 +57,7 @@ geffen_in.gat,110,172,2 script Christopher#1::Chris 63,{
|
|
|
|
|
|
sM_Anvil:
|
|
sM_Anvil:
|
|
if(Zeny < 30000) goto L_NoZeny;
|
|
if(Zeny < 30000) goto L_NoZeny;
|
|
|
|
+ if(checkweight(986,1) == 0 ) goto L_OverWeight;
|
|
set Zeny, Zeny - 30000;
|
|
set Zeny, Zeny - 30000;
|
|
getitem 986,1;
|
|
getitem 986,1;
|
|
mes "[Christopher Guillenrow]";
|
|
mes "[Christopher Guillenrow]";
|
|
@@ -65,6 +66,7 @@ geffen_in.gat,110,172,2 script Christopher#1::Chris 63,{
|
|
goto L_Thanks;
|
|
goto L_Thanks;
|
|
sM_OriAnvil:
|
|
sM_OriAnvil:
|
|
if(Zeny < 120000) goto L_NoZeny;
|
|
if(Zeny < 120000) goto L_NoZeny;
|
|
|
|
+ if(checkweight(987,1) == 0 ) goto L_OverWeight;
|
|
set Zeny, Zeny - 120000;
|
|
set Zeny, Zeny - 120000;
|
|
getitem 987,1;
|
|
getitem 987,1;
|
|
mes "[Christopher Guillenrow]";
|
|
mes "[Christopher Guillenrow]";
|
|
@@ -73,6 +75,7 @@ geffen_in.gat,110,172,2 script Christopher#1::Chris 63,{
|
|
goto L_Thanks;
|
|
goto L_Thanks;
|
|
sM_GolAnvil:
|
|
sM_GolAnvil:
|
|
if(Zeny < 300000) goto L_NoZeny;
|
|
if(Zeny < 300000) goto L_NoZeny;
|
|
|
|
+ if(checkweight(988,1) == 0 ) goto L_OverWeight;
|
|
set Zeny, Zeny - 300000;
|
|
set Zeny, Zeny - 300000;
|
|
mes "[Christopher Guillenrow]";
|
|
mes "[Christopher Guillenrow]";
|
|
mes "This is the best anvil in my workshop! With this ye'll be the best Blasksmith in no time.";
|
|
mes "This is the best anvil in my workshop! With this ye'll be the best Blasksmith in no time.";
|
|
@@ -104,21 +107,25 @@ geffen_in.gat,110,172,2 script Christopher#1::Chris 63,{
|
|
if(@input < 1 ) goto sM_Menu1;
|
|
if(@input < 1 ) goto sM_Menu1;
|
|
if(@input > 1000 ) goto sM_Max;
|
|
if(@input > 1000 ) goto sM_Max;
|
|
if(Zeny < 150 * @input) goto L_NoZeny;
|
|
if(Zeny < 150 * @input) goto L_NoZeny;
|
|
|
|
+ if(checkweight(612,@input) == 0 ) goto L_OverWeight;
|
|
set Zeny, Zeny - (150 * @input);
|
|
set Zeny, Zeny - (150 * @input);
|
|
getitem 612, @input;
|
|
getitem 612, @input;
|
|
goto L_Thanks;
|
|
goto L_Thanks;
|
|
sM_IrHam:
|
|
sM_IrHam:
|
|
if(Zeny < 1000) goto L_NoZeny;
|
|
if(Zeny < 1000) goto L_NoZeny;
|
|
|
|
+ if(checkweight(613,1) == 0 ) goto L_OverWeight;
|
|
set Zeny, Zeny - 1000;
|
|
set Zeny, Zeny - 1000;
|
|
getitem 613,1;
|
|
getitem 613,1;
|
|
goto L_Thanks;
|
|
goto L_Thanks;
|
|
sM_GldHam:
|
|
sM_GldHam:
|
|
if(Zeny < 3000) goto L_NoZeny;
|
|
if(Zeny < 3000) goto L_NoZeny;
|
|
|
|
+ if(checkweight(614,1) == 0 ) goto L_OverWeight;
|
|
set Zeny, Zeny - 3000;
|
|
set Zeny, Zeny - 3000;
|
|
getitem 614,1;
|
|
getitem 614,1;
|
|
goto L_Thanks;
|
|
goto L_Thanks;
|
|
sM_OriHam:
|
|
sM_OriHam:
|
|
if(Zeny < 5000) goto L_NoZeny;
|
|
if(Zeny < 5000) goto L_NoZeny;
|
|
|
|
+ if(checkweight(615,1) == 0 ) goto L_OverWeight;
|
|
set Zeny, Zeny - 5000;
|
|
set Zeny, Zeny - 5000;
|
|
getitem 615,1;
|
|
getitem 615,1;
|
|
goto L_Thanks;
|
|
goto L_Thanks;
|
|
@@ -151,6 +158,11 @@ geffen_in.gat,110,172,2 script Christopher#1::Chris 63,{
|
|
emotion 4;
|
|
emotion 4;
|
|
close;
|
|
close;
|
|
|
|
|
|
|
|
+ L_OverWeight:
|
|
|
|
+ mes "[Christopher Guillenrow]";
|
|
|
|
+ mes "You don't seem to have enough strength to carry this.";
|
|
|
|
+ close;
|
|
|
|
+
|
|
L_Thanks:
|
|
L_Thanks:
|
|
mes "[Christopher Guillenrow]";
|
|
mes "[Christopher Guillenrow]";
|
|
mes "Thank you for shopping at my workshop. Feel free to come anytime whenever you need.";
|
|
mes "Thank you for shopping at my workshop. Feel free to come anytime whenever you need.";
|