Issue information

Issue ID
#6495
Status
Invalid
Severity
None
Started
Hercules Elf Bot
Aug 18, 2012 17:18
Last Post
Hercules Elf Bot
Dec 9, 2012 18:43
Confirmation
Yes (2)
No (1)

Hercules Elf Bot - Aug 18, 2012 17:18

Originally posted by [b]Lunar[/b]
There is some trouble with the No Renewal System :

[CODE]
static unsigned short status_calc_dmotion(struct block_list *bl, struct status_change *sc, int dmotion)
{
if( !sc || !sc->count || map_flag_gvg(bl->m) || map[bl->m].flag.battleground )
return cap_value(dmotion,0,USHRT_MAX);
/**
* It has been confirmed on official servers that MvP mobs have no dmotion even without endure
**/
if( sc->data[SC_ENDURE] || ( bl->type == BL_MOB && (((TBL_MOB*)bl)->status.mode&MD_BOSS) ) )
return 0;
if( sc->data[SC_CONCENTRATION] )
return 0;
if( sc->data[SC_RUN] || sc->data[SC_WUGDASH] )
return 0;
return (unsigned short)cap_value(dmotion,0,USHRT_MAX);
}
[/CODE]

[CODE]
/**
* It has been confirmed on official servers that MvP mobs have no dmotion even without endure
**/
if( sc->data[SC_ENDURE] || ( bl->type == BL_MOB && (((TBL_MOB*)bl)->status.mode&MD_BOSS) ) )
return 0;
[/CODE]

Yes, it does, but it is a Renewal config doesn't it ?
A Renewal define is missing for user doesn't want Renewal system.

It cause Miniboss monster like Necromancer has Endure effect.

This post has been edited by Lunar on Aug 18, 2012 17:21

Hercules Elf Bot - Aug 18, 2012 17:50

Originally posted by [b]Ind[/b]
need confirmation, as far as i know it is present in pre-re as well as re.

Hercules Elf Bot - Aug 18, 2012 17:53

Originally posted by [b]Lunar[/b]
All my player (pre-re players) complain about this, I think it is not.

Hercules Elf Bot - Dec 9, 2012 0:37

Originally posted by [b]mkbu95[/b]
Can anyone confirm it?

Hercules Elf Bot - Dec 9, 2012 11:47

Originally posted by [b]Angezerus[/b]
[quote name='Ind' timestamp='1345312259' post='13475']
need confirmation, as far as i know it is present in pre-re as well as re.
[/quote]

Both pre and re has this. I can confirm that

Hercules Elf Bot - Dec 9, 2012 18:43

Originally posted by [b]mkbu95[/b]
Thanks for confirming Ind's statement.
Issue is, thus, invalid.