Issue information

Issue ID
#6586
Status
Fixed
Severity
Fair
Started
Hercules Elf Bot
Aug 29, 2012 21:50
Last Post
Hercules Elf Bot
Aug 29, 2012 23:53
Confirmation
N/A

Hercules Elf Bot - Aug 29, 2012 21:50

Originally posted by [b]Vali[/b]
http://trac.rathena.org/browser/rathena/trunk/npc/re/quests/eden/56-70.txt

1-The ques (board and quest window) is asking for Trunks, but the script is checking for Bamboo_Cut.

2-The check for give information is not correct, because will not give you info if you have more than the necessary items in one case:

This:

[CODE]
if ((checkquest(3263) == 1) && (countitem(1021) < 30) && (countitem(7150) < 30)) {
[/CODE]

Should be like this:

[CODE]
if ((checkquest(3263) == 1) && (countitem(1021) < 30 || countitem(7150) < 30)) {
[/CODE]

This is happening in other parts of this script.

Vali~

Hercules Elf Bot - Aug 29, 2012 23:53

Originally posted by [b]Joseph[/b]
Fixed in [rev=16718], thanks Vali.