Issue information

Issue ID
#6305
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Jul 24, 2012 6:39
Last Post
Ind
Jan 29, 2013 20:20
Confirmation
Yes (7)
No (0)

Hercules Elf Bot - Jul 24, 2012 6:39

Originally posted by [b]Brynner[/b]
rune knight class cannot use brandish spear. because it needs a peco. but rune knight don't have peco. they only have dragon mount. that's why it can't be used by rune knight. but if i use lord knight. i can use brandish spear without a problem.

Hercules Elf Bot - Jul 24, 2012 8:39

Originally posted by [b]Kenpachi[/b]
Indeed, in script_require_db.txt the field [i]RequiredState [/i]can't hold more than one state but for Brandish Spear it should be [i]riding[/i] AND [i]dragon[/i].

BTW; The legend is outdated. please edit it along with fixxing the bug.

Hercules Elf Bot - Jul 24, 2012 8:52

Originally posted by [b]Brynner[/b]
thanks for the confirm

This post has been edited by Brynner on Jul 24, 2012 8:54

Hercules Elf Bot - Jul 26, 2012 17:08

Originally posted by [b]Brynner[/b]
any update for this?

Hercules Elf Bot - Jul 27, 2012 8:14

Originally posted by [b]Brynner[/b]
bump for this

Hercules Elf Bot - Jul 27, 2012 9:44

Originally posted by [b]Kenpachi[/b]
Dude, seriously. We are no machines....

Hercules Elf Bot - Jul 30, 2012 19:54

Originally posted by [b]Brynner[/b]
[quote name='Kenpachi' timestamp='1343382290' post='12574']
Dude, seriously. We are no machines....
[/quote]

since there is no one fix the brandish spear bug. here is my fix for this bug.

This post has been edited by Brynner on Jul 30, 2012 22:07

Hercules Elf Bot - Jul 30, 2012 20:30

Originally posted by [b]Euphy[/b]
@Brynner: That's quite a workaround for a single skill edit. What Kenpachi stated was that a field value should be expanded, not that the "Riding" status itself should be changed...

Hercules Elf Bot - Jul 30, 2012 20:42

Originally posted by [b]Brynner[/b]
[quote name='Euphy' timestamp='1343680220' post='12737']
@Brynner: That's quite a workaround for a single skill edit. What Kenpachi stated was that a field value should be expanded, not that the "Riding" status itself should be changed...
[/quote]


[b] Brandish Spear bug for rune knight is now working if you are using dragon mount. which means rune knight cannot use brandish spear because they are not using peco anymore. but on the solution that i made the brandish spear can now be use even you are riding on dragon.[/b]

Hercules Elf Bot - Aug 4, 2012 4:24

Originally posted by [b]malufett[/b]
Euphy has a point..
anyway I'll make it so support multiple state as sir Kenpachi suggested...

Hercules Elf Bot - Aug 15, 2012 14:16

Originally posted by [b]hendra814[/b]
any update for this problem, beside using patch?

Hercules Elf Bot - Aug 18, 2012 14:39

Originally posted by [b]hendra814[/b]
bump

Hercules Elf Bot - Aug 24, 2012 4:53

Originally posted by [b]hendra814[/b]
need update fot this bug.
Thanks

Hercules Elf Bot - Oct 14, 2012 9:10

Originally posted by [b]AppleGirl[/b]
buuump please fix..

Hercules Elf Bot - Oct 28, 2012 17:55

Originally posted by [b]Jhedzkie[/b]
are there any fix for this yet? :) thanks

Hercules Elf Bot - Nov 12, 2012 1:53

Originally posted by [b]hendra814[/b]
bump... please fix this problem
Thanks

Hercules Elf Bot - Nov 12, 2012 4:10

Originally posted by [b]MarkZD[/b]
There's no need to make it use more than one state as any skill you can use in peco you can use in Ferus.

In scr/map/skill.c
[b]Just change:[/b]
[CODE]
case ST_RIDING:
if(!pc_isriding(sd)) {
clif_skill_fail(sd,skill,USESKILL_FAIL_LEVEL,0);
return 0;
}
[/CODE]
[b]To:[/b]
[CODE]
case ST_RIDING:
if(!(pc_isriding(sd) || pc_isridingdragon(sd))) {
clif_skill_fail(sd,skill,USESKILL_FAIL_LEVEL,0);
return 0;
}
[/CODE]

This post has been edited by MarkZD on Nov 12, 2012 4:19

Hercules Elf Bot - Nov 13, 2012 6:54

Originally posted by [b]hendra814[/b]
how about this
[url="http://code.google.com/p/idathena/source/detail?r=281"]http://code.google.com/p/idathena/source/detail?r=281[/url]

Hercules Elf Bot - Nov 13, 2012 7:29

Originally posted by [b]exneval[/b]
it's just same, i made that since rA still working on expanding the RequireState

This post has been edited by exneval on Nov 13, 2012 7:29

Hercules Elf Bot - Nov 13, 2012 7:30

Originally posted by [b]hendra814[/b]
ok, i'm wait the fixing for this bug.
Thanks Exneval

This post has been edited by hendra814 on Nov 13, 2012 7:37

Ind - Jan 29, 2013 20:11

[quote name="Kenpachi" timestamp="1343119180"]
Originally posted by [b]Kenpachi[/b]
Indeed, in script_require_db.txt the field [i]RequiredState [/i]can't hold more than one state but for Brandish Spear it should be [i]riding[/i] AND [i]dragon[/i].

BTW; The legend is outdated. please edit it along with fixxing the bug.[/quote]its not AND, its OR D: but i was mislead as well I didnt think it fully, wrote a faux fix :{ [url="http://herc.ws/board/blog/1/entry-3-wasted-time-t-t/"]http://herc.ws/board/blog/1/entry-3-wasted-time-t-t/[/url]

Ind - Jan 29, 2013 20:20

Fixed in [url="https://github.com/HerculesWS/Hercules/commit/e15fe6131c970f8f7574d38f3a3cc62e1873a072"]https://github.com/HerculesWS/Hercules/commit/e15fe6131c970f8f7574d38f3a3cc62e1873a072[/url]