Issue information

Issue ID
#5879
Status
Working as Intended
Severity
None
Started
Hercules Elf Bot
May 31, 2012 9:56
Last Post
Mysterious
Mar 27, 2014 21:34
Confirmation
N/A

Hercules Elf Bot - May 31, 2012 9:56

Originally posted by [b]QQfoolsorellina[/b]
skill_check_condition_castbegin

[code]
case SR_FALLENEMPIRE:
if( !(sc && sc->data[SC_COMBO] && sc->data[SC_COMBO]->val1 == SR_DRAGONCOMBO) )
return 0;
break;
[/code]

shoulde be

[code]
case SR_FALLENEMPIRE:
if(sc && sc->data[SC_COMBO] && sc->data[SC_COMBO]->val1 == SR_DRAGONCOMBO)
return 1;
return 0;
[/code]

This post has been edited by QQfoolsorellina on May 31, 2012 9:58

Hercules Elf Bot - May 31, 2012 10:50

Originally posted by [b]Anna[/b]
thnk you so much.!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

This post has been edited by Anna on May 31, 2012 10:58

Hercules Elf Bot - May 31, 2012 11:24

Originally posted by [b]malufett[/b]
fallen empire is working fine...you must chain it with dragon combo to work and take note high aspd contributes to the chaining...

and I don't recommend to use that code since it cause exploit to your server(FE is required to have spiritballs to cast)...

Hercules Elf Bot - May 31, 2012 13:44

Originally posted by [b]QQfoolsorellina[/b]
you are right , I forgot the spirit ball requirement /hum