Issue information

Issue ID
#6117
Status
Working as Intended
Severity
None
Started
Hercules Elf Bot
Jun 26, 2012 17:26
Last Post
Hercules Elf Bot
Jul 1, 2012 13:14
Confirmation
Yes (0)
No (2)

Hercules Elf Bot - Jun 26, 2012 17:26

Originally posted by [b]Yum[/b]
9011#Life as a Knight#SG_FEEL#QUE_NOIMAGE#
'Sir Edmond' tells you to find 'Sir Gray' for the final test.#
Speak to Sir Gray#

[spoiler][code]switch(select("About ^3355FFClaymore^000000:Buy Claymore:End Conversation")) {
case 1:
mes "[Sir Gray]";
mes "Claymore, one of the best among the famous swords you can attain in Rune-Midgarts's Prontera!! Its value is priceless when considered by a Knight.";
next;
mes "[Sir Gray]";
mes "Now, the Prontera Chivalry is making these fabulous Claymores. For Knights, they are only ^3355FF74,000^000000 Zeny.";
next;
mes "[Sir Gray]";
mes "But not only that, you need";
mes "1 ^3355FFSteel^000000 because of the Claymore's characteristics. If you like, I can create one for you. For the honor of the Prontera Chivalry!";
close;
case 2:
set .@now_weight,MaxWeight-Weight;
if (.@now_weight < 1800) {
mes "[Sir Gray]";
mes "Oh no...";
mes "It seems that you are carrying too many things. You don't have enough space for a heavy Claymore in your inventory.";
next;
mes "[Sir Gray]";
mes "Why don't you";
mes "go and organize";
mes "your items first.";
close;
}
else {
if (Zeny > 73999 && countitem(999) > 0 && BaseJob == Job_Knight) {
mes "[Sir Gray]";
mes "You are ready!";
mes "You must know the";
mes "true value of";
mes "a Claymore!";
mes "I shall make";
mes "it right now!!";
next;
mes "[Sir Gray]";
mes "The basics of";
mes "making the Claymore";
mes "is easy. Watch~!";
next;
mes "^3355FF*Stir Stir*^000000";
mes "^3355FF*Ooncha Ooncha*^000000";
next;
mes "[Sir Gray]";
mes "Okay, it's ready!";
mes "Every Knight's pride:";
mes "a fine ^3355FFClaymore^000000.";
mes "You attained a reliable item.";
mes "It'll be a good companion on your adventures.";
delitem 999,1; //Steel
set zeny,zeny-74000;
getitem 1163,1; //Claymore
close;
}
mes "[Sir Gray]";
mes "I realize you may really want a Claymore, but I can't make it without the materials.";
mes "^3355FF74,000 zeny^000000 and ^3355FF1 Steel!^000000.";
next;
mes "[Sir Gray]";
mes "Come back when";
mes "you have everything";
mes "ready. I shall be";
mes "waiting...";
close;
}
case 3:
mes "[Sir Gray]";
mes "Any Knight should be able to wield a Claymore as if it were an extension of their body. I used to look forward to brandishing my Claymore in battle...";
close;
}[/code][/spoiler]


[code]delitem 999,1; //Steel
set zeny,zeny-74000;
getitem 1163,1; //Claymore[/code]

I believe that is missing a set to identify the player made ​​the claymore, not to pass this part is in this phase of claymore forever.

Hercules Elf Bot - Jul 1, 2012 13:14

Originally posted by [b]Masao[/b]
Everything looks correct to me and I was able to finish the job change quest without any problems.