Auraset

You aren't using latest Hercules

 
Hi @@Dastgir I'm getting this sscanf error while compiling is it ok to replace it with sscanf_s as stated?

b6b3a7c0-6db5-11e5-8da5-9e70b50100fc.png


 
There's a bug in the latest version of auraset plugin.

  • Unable to use buffs/debuffs to monsters (ex. Lex Aterna, Blessings, Inc Agi, etc). It is being casted but there's no effect

 
There's a bug in the latest version of auraset plugin.

[*]Unable to use buffs/debuffs to monsters (ex. Lex Aterna, Blessings, Inc Agi, etc). It is being casted but there's no effect
yeah confirm, I use priest to cast lex aeterna on poring, no effect shown
the problem is inside 'status_change_start_postAura' function

https://github.com/HerculesWS/Hercules/blob/master/src/map/status.c#L6888

return 0 means no effect applied

return 1 means successfully applied

but this auraset has a code here

if (bl->type != BL_PC){ return 0; }which even if the pet/homun/monster/elementals should have shown an effect, but this function forcefully return 0
I believe this function should replaced with 'status_change_start_preAura'

and if (bl->type == BL_PC), and detected hidden status, hookStop()

EDIT for below, yeah that's easier

 
Last edited by a moderator:
Why not just change that exact

return 0;
to

return retVal;
I think that'd be easier than rewriting the hook to pre
default_tongue.png


 
Last edited by a moderator:
Why not just change that exact

return 0;
to

return retVal;
I think that'd be easier than rewriting the hook to pre
default_tongue.png
Do you think it would produce another bug after changing that? I'll try and test.

 
Why not just change that exact

return 0;to
Code:
return retVal;
I think that'd be easier than rewriting the hook to pre
default_tongue.png
Another bug occured tss

@@Dastgir

CASH SHOP not working. No items appear.

 
Last edited by a moderator:
I didn't get that kind of problem though

Code:
prontera,155,185,5	cashshop	sdjfsdfkjkd	1_F_MARIA,501:10,502:20prontera,155,188,5	script	kjdshfks	1_F_MARIA,{	aura 586;}
screenRuru_Server022.jpg
 
auraset doesn't touch cashshop code

no way it can give bug to that location

screenRuru_Server026.jpg

 
Maybe some other plugin is causing it? Or your cashshop db is giving error?

 
Thanks for this plugin !

I just want a know if somebody know how to change the default aura ID.

Make the default aura 0 0 0 to a another id ?

Because I've this "normal hit" on 0 that I want a change by a void effect like ID 105.

 
Last edited by a moderator:
Good day Sir,

Im having errors whenever I try to recompile the plugin on my centos server, below is the console error.

I hope someone can help me out with this. Thank you guys.

Capture.PNG

 
Back
Top