Issue information

Issue ID
#5397
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Mar 6, 2012 21:19
Last Post
Hercules Elf Bot
May 14, 2012 13:06
Confirmation
Yes (1)
No (0)

Hercules Elf Bot - Mar 6, 2012 21:19

Originally posted by [b]Dies Irae[/b]
According to [b][url="http://irowiki.org/wiki/Mechanic#The_Magic_Gear_.28MadoGear.29"]iRO Wiki Mechanic page[/url][/b]:
[quote][b]The Magic Gear (MadoGear)[/b]
In order to hire a MadoGear [...] protection while leveling.

See [url="http://irowiki.org/wiki/Pile_Bunker_quest"]Pile Bunker quest[/url] for information on obtaining a Pile Bunker.[/quote]

According to [b][url="http://irowiki.org/wiki/Pile_Bunker_quest"]iRO Wiki Pile Bunker quest page[/url][/b]:
[quote][b]Pile Bunker quest[/b]
[b]Requirements[/b]
[b]Base Level:[/b] Any
[b]Class:[/b] [url="http://irowiki.org/wiki/Mechanic"]Mechanic[/url]
[b]tem(s) (Consumed):[/b]
1 [url="http://db.irowiki.org/db/item-info/1415/"]Brocca[/url],
50 [url="http://db.irowiki.org/db/item-info/999/"]Steel[/url],
30 [url="http://db.irowiki.org/db/item-info/7325/"]Flexible Tube[/url]
[b]I[/b][b]tem(s) (Not Consumed):[/b]
150 [url="http://db.irowiki.org/db/item-info/999/"]Steel[/url]
[b]Rewards[/b]
[b]Item(s):[/b]
1 [url="http://db.irowiki.org/db/item-info/1549/"]Pile Bunker[/url],
1 [url="http://db.irowiki.org/db/item-info/1360/"]Two-Handed Axe [1][/url]

1. Talk with Gomer in [url="http://irowiki.org/wiki/Juno"]Juno[/url] (179, 174) and choose the option '[b]I brought the materials[/b]'.[/quote]

The quest is missing.
[b]Screen:[/b] [spoiler][img]http://s14.postimage.org/4bcubv7lb/screen_Ragna_Roar002.jpg[/img][/spoiler]

This post has been edited by Dies Irae on Mar 6, 2012 21:19

Hercules Elf Bot - Mar 9, 2012 18:49

Originally posted by [b]JayPee[/b]
Here is the script. Hope I got it right.
[codebox]

//===== rAthena Script =======================================
//= Pile Bunker Quest
//===== By: ==================================================
//= JayPee Mateo
//===== Current Version: =====================================
//= 1.0
//===== Compatible With: =====================================
//= rAthena SVN
//===== Description: =========================================
//= A Pile Bunker quest based on iRO WiKi.
//= iRO WiKi Link: http://irowiki.org/wiki/Pile_Bunker_quest
//===== Additional Comments: =================================

yuno,179,174,5 script Gomer 63,{
set .npcName$,"Gomer";
mes .npcName$;
mes "Hi!, I'm Gomer I make Pile Bunker's. How may I help you?";
menu "Required items for Pile Bunker",PBQ_INFO,"I bought the materials",PBQ_CHECK;
end;

PBQ_INFO:
next;
mes .npcName$;
mes "This are the required items:\n";
mes "[1 pc(s).] - Brocca";
mes "[50 pc(s).] - Steel";
mes "[30 pc(s).] - Flexible Tube";
close;

PBQ_CHECK:
if(countitem(1415)<1 || countitem(999)<50 || countitem(7325)<30)
goto PBQ_INC;

next;
mes .npcName$;

//Required Items consuming
delitem 1415,1;
delitem 999,50;
delitem 7325,30;
//Rewards
getitem 1549,1;
getitem 1360,1;
mes "Congratulatiosn, you just finished the quest. Here is your reward.";
close;

PBQ_INC:
next;
mes .npcName$;
mes "You dont have all the required items. Just talk to me when you have all the requirements.";
close;

}
[/codebox]

Hercules Elf Bot - May 14, 2012 12:39

Originally posted by [b]Masao[/b]
Fixed in [rev=16112] .