Issue information

Issue ID
#1355
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Apr 13, 2008 13:42
Last Post
Hercules Elf Bot
Apr 13, 2008 13:42
Confirmation
N/A

Hercules Elf Bot - Apr 13, 2008 13:42

Originally posted by [b]Hawkin[/b]
http://www.eathena.ws/board/index.php?autocom=bugtracker&showbug=1355

Hi, I couldn't change my Job to Rogue and checked the script.
Quote from EuphRO forums:


------------------

So, looking at the eA rev 12566 Rogue jobchange code confuses me. The script is buggy but doesn't trigger while it should (maybe Euph doesn't have it yet or something).

1.) \npc\jobs\2-2\rogue.txt Line 647
QUOTE
if (ROGUE_Q == 3) callsub S_CheckItems,510,10,932,10,957,10,958,10;

should be
QUOTE
if (ROGUE_Q == 3) callsub S_CheckItems,510,6,932,10,957,10,958,10;

Source: http://irowiki.org/wiki/Rogue http://ratemyserver.net/quest_db.php?type=...0&qid=60020

2.) \npc\jobs\2-2\rogue.txt Line 930
QUOTE
if (Zeny > 99999 || countitem(getarg(0)) >= getarg(1) || countitem(getarg(2)) >= getarg(3) || countitem(getarg(4)) >= getarg(5) || countitem(getarg(6)) >= getarg(7)) {

should be
QUOTE
if (Zeny > 9999 && countitem(getarg(0)) >= getarg(1) && countitem(getarg(2)) >= getarg(3) && countitem(getarg(4)) >= getarg(5) && countitem(getarg(6)) >= getarg(7)) {


I don't know what svn euphro uses though.

I also don't have 100k zeny to check it (IMG:style_emoticons/default/tongue.gif)

------------------

On 12575 it's Line 646 and 930.