Jump to content

  •  

Bug Tracker Migration

June 3rd
Good news everyone! The staff has decided that it is time to slowly kill off this Bug Tracker. We will begin the process of slowly migrating from this Bug Tracker over to our Github Issues which can be found here: https://github.com/HerculesWS/Hercules/issues

Over the next couple of days, I will be closing off any opportunity to create new reports. However, I still will keep the opportunity to reply to existing Bug Reports. Doing this will allow us to slowly fix any bug reports we have listed here so that we can easily migrate over to our Issue Tracker.

Update - June 7th 2015: Creating new bug posts has been disabled. Please use our https://github.com/HerculesWS/Hercules/issues tracker to post bugs. Users are still able to reply to existing bug posts.

- Administration

Issue Information

  • #006679

  • 0 - None Assigned

  • New

Issue Confirmations

  • Yes (0)No (1)
Photo

ArchBishop Quirks

Posted by Hercules Bot on 12 September 2012 - 08:26 AM

Originally posted by Genius
Expiatio does not work. Cannot cast it on players to give them the buff. Can only be casted on monsters for no effect.

Adoramus, Clearance, Epiclesis, High Heal, Lauda Agnus, and Lauda Ramus descriptions are out of date.

Duple Light does not list success chance of the spheres helping.

Epiclesis is supposed to heal hp and sp of people in frenzy and overweight. It does not do either of these. Does not detect hidden people every five seconds, but is not supposed to detect people using Invisibility or Stealth. Increase and heals the hp of Mechanics with Magic Gears, even though they are not in the party.

Highness heal does not heal 3.2x against undead mobs.

Renavatio does not heal players in frenzy, as it should. Renavatio does not deal damage continuously every five seconds to undead monsters as it should with this formula: (Caster's Base Level x 10) + (Caster's INT)

When trying to cast Ancilla with three Ancilla's, the player receives a red message saying: "No MSG 02" instead of actually listing why the player cannot do this.

Originally posted by malufett

Adoramus, Clearance, Epiclesis, High Heal, Lauda Agnus, and Lauda Ramus descriptions are out of date.

Duple Light does not list success chance of the spheres helping.

When trying to cast Ancilla with three Ancilla's, the player receives a red message saying: "No MSG 02" instead of actually listing why the player cannot do this.


we can't do anything about this...this are client related so better post on Client Request/Support...

and for others let me check first...

:meow:

Originally posted by nanakiwurtz
-Highness Heal
1) Description: Lv 1 = Heal x 2, Lv 2 = Heal x 2.3 and so on until Lv 5.
Actual src: [c]heal = heal * ( 15 + 5 * skilllv ) / 10;[/c]
2) Against Undead:
if (sd && battle_check_undead(tstatus->race,tstatus->def_ele)) {
if (battle_check_target(src, bl, BCT_ENEMY) < 1) {
clif_skill_fail(sd,skillid,USESKILL_FAIL_LEVEL,0);
return 0;
}
return skill_castend_damage_id (src, bl, skillid, skilllv, tick, flag);
}
I didn't find any damage calculation because it's already calculated in 'skill_castend_nodamage_id'.
Probably that's why you didn't get the 3.2x damage, because current Highness Heal skill in src is [c]//Highness Heal: starts at 1.5 boost + 0.5 for each level[/c]

-Duple Light:
[LV 1]Pysical Attack Power + 110% Magical Attack Power + 220%
[LV 2]Pysical Attack Power + 120% Magical Attack Power + 240%
[LV 3]Pysical Attack Power + 130% Magical Attack Power + 260%
Update your client's skilldesctable.txt?

-Ancilla:
Skill.c: [c]clif_skill_fail(sd, skill, USESKILL_FAIL_ANCILLA_NUMOVER, 0);[/c], clif.c: [c]0 = "skill failed" MsgStringTable[159][/c]
So it's likely that you have to update your client's msgstringtable.txt

-Epiclesis:
1) Detect hidden players.
In 'skill_unit_onplace_timer':
// Reveal hidden players every 5 seconds.
if( sg->val2 % 5 == 0 ) {
// TODO: check if other hidden status can be removed.
status_change_end(bl,SC_HIDING,INVALID_TIMER);
status_change_end(bl,SC_CLOAKING,INVALID_TIMER);
}
2) About Madogears:
if( status_isimmune(bl) ||
(dstmd && (dstmd->class_ == MOBID_EMPERIUM || mob_is_battleground(dstmd))) ||
(dstsd && pc_ismadogear(dstsd)) )//Mado is immune to heal
heal=0;
3) I don't know about Epliclesis' effect on Frenzied and Overweighted char.

-Renovatio against Undead:
I don't know if it works like 'Poison' for undead mobs, can someone confirm this?

Edit: Why does my [c][/c] tags isn't working?

Edited by nanakiwurtz, 12 September 2012 - 08:36 PM.


Originally posted by Lighta
Change
status_heal(bl, hp, sp, 2);
in
status_heal(bl, hp, sp, 3);
As the heal restriction from freezy status is defined in status_heal; btw I think should be the same for Madogear since it's at least more coherent.

moved issue from Skills