for the gemstone change this in skill.c
{
if( sd->special_state.no_gemstone )
{ //Make it substract 1 gem rather than skipping the cost.
if( --req.amount[i] < 1 )
req.itemid[i] = 0;
}
change it to 'req.amount <= 1' or 'req.amount < 2'
for the Kiel..if your using clients 2012 or later 2011 the client has a fixed cast delay of 100~200 milliseconds so even changing the settings in the server it won't apply and I hope you are not confuse with the animation of after-cast delay and cooldown..but I assure you its pretty working fine
even you remove it or change it that way still it won't work cause
int fixed = skill_get_fixed_cast(skill_id, skill_lv);
is inside another macro and definitely you can get compilation error..
better remove all Macro inside 'skill_castfix_sc'...but still none sense because its like you enable renewal casting...
it is the way how you execute main.sql, log.sql and etc...
open mysql query browser or any sql software you are using...open the script or the sql then execute....(but first select your RO schema)
the code above in clif.c is the one that makes the target under manhole to stop them from attacking...
and to stop targets to use item @pc.c
//Prevent mass item usage. [skotlex]
if( DIFF_TICK(sd->canuseitem_tick, tick) > 0 ||
(itemdb_iscashfood(sd->status.inventory[n].nameid) && DIFF_TICK(sd->canusecashfood_tick, tick) > 0)
)
return 0;
if( sd->sc.count && (
sd->sc.data[sC_BERSERK] ||
(sd->sc.data[sC_GRAVITATION] && sd->sc.data[sC_GRAVITATION]->val3 == BCT_SELF) ||
sd->sc.data[sC_TRICKDEAD] ||
sd->sc.data[sC_HIDING] ||
sd->sc.data[sC__SHADOWFORM] ||
(sd->sc.data[sC_NOCHAT] && sd->sc.data[sC_NOCHAT]->val1&MANNER_NOITEM)
))
return 0;
just add 'sd->sc.data[sC__MANHOLE]'