Hello. not sure about some functions, but I'll give a try. hope it helps anything. any issue just let me know
if you want to correct the level < 60 to heal
about the vip and class
if (.@price && !vip_status(1))
to
set @eah, eaclass;
if ( !vip_status(1)) && @eah&EAJL_2
About the buff thing, you can add another condition here, like
if (.Buffs) {
specialeffect2 EF_INCAGILITY;
sc_start SC_INCREASEAGI,600000,10;
specialeffect2 EF_BLESSING;
sc_start SC_BLESSING,600000,10;
}
to
if (.Buffs) {
specialeffect2 EF_INCAGILITY;
sc_start SC_INCREASEAGI,600000,10;
specialeffect2 EF_BLESSING;
sc_start SC_BLESSING,600000,10;
}
if(vip_status(1)) {
//add buffs here
}
about the daily thing I don't understood very well time commands and not sure exactly what you want.
hope helped a little