Issue information

Issue ID
#5429
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Mar 11, 2012 18:29
Last Post
Hercules Elf Bot
Apr 13, 2012 8:03
Confirmation
N/A

Hercules Elf Bot - Mar 11, 2012 18:29

Originally posted by [b]Vali[/b]
Hi,

One player reported it, He is stuck in the Maestro job change quest.

The npc [b]prt_in,94,172,4 script Karian#job_min3 480[/b] is asking him all the time to use their skills points, but he already do not has skill points to use.

This is the part that is causing the problem:

[CODE]
if (job_min == 27 || SkillPoint != 0){
mes "[Karian]";
mes "Hey... Don't you know how to use your skill points?";
mes "You should use them.";
close;
[/CODE]

Vali~

Hercules Elf Bot - Mar 11, 2012 19:42

Originally posted by [b]MarkZD[/b]
It's problem is in job_min condition:

If you can test, edit it to:

[CODE]
if (job_min < 27 || SkillPoint != 0){
[/CODE]

As job_min != 27, would occur probably because the player should not be there or there's some other error like extra weight, job level and base level lower than should.

job_min 27 is only set if he doesn't have those problem, so i think it would fix.

This post has been edited by MarkZD on Mar 11, 2012 19:43

Hercules Elf Bot - Apr 3, 2012 19:47

Originally posted by [b]MarkZD[/b]
Bump.
There's a lot of "new" bugs stopped in here.

Hercules Elf Bot - Apr 4, 2012 3:23

Originally posted by [b]JayPee[/b]
Fixed at r[url="http://sourceforge.net/apps/trac/rathena/browser/?rev=15832"]15832[/url]