Jump to content

malufett

Members
  • Posts

    554
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by malufett

  1. its already fixed @ r16316 and as I test it and looking at the latest revision and its still there and working fine....
  2. did you contrast the result with the calculator? or compute using the given formula?
  3. the sprites are on your grf..if you have at least an update grf files..
  4. hmm..did you consider the chance?
  5. what do you mean by cast delay effect of mandragora? AFAIK it only contributes to the fixed casting..BTW are you using PRE-RE??
  6. 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
  7. just above '#ifdef RENEWAL_CAST' if( sc->data[sC_MANDRAGORA] && (skill_id >= SM_BASH && skill_id <= RETURN_TO_ELDICASTES) ) time += 2000;
  8. copy the code for mandragora then change 'fixed' to 'time' and put it outside the RENEWAL_CAST macro or beside the other status change....
  9. 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...
  10. ow..sorry sorry....hehehe.. anyway if you using 2012 clients or later 2011..then we could not do anything since its defined in the client...
  11. copy?? why not just use fresh rAthena..its already all in one..PRE-RE, RENEWAL, 3rd jobs and etc... then just follow the wiki and your done...
  12. @status.c if in RENEWAL mode no need to change cause it already give 2 vit = 1 def but in PRE RENEWAL change it to status->def2 += status->vit/2;
  13. try this 8048,Homunculus_Clip,Homunculus_Clip,5,30000,10,1000,,,,2,0xFFFFFFFF,7,2,136,,1,,,{ skill "AM_CALLHOMUN",1; skill "AM_REST",1; skill "AM_RESURRECTHOMUN",1;},{},{ atcommand "@useskill 244 1 " + strcharinfo(0); }
  14. there is a wiki in eAthena..however you need to use xray....in ragexeRE sorry you can't but you can replace existing one.....
  15. are you using the latest revision?
  16. malufett

    Manhole Bug

    if you were using the latest revision this will be solved....
  17. Mysterious you gonna catch them all....
  18. 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)
  19. malufett

    Manhole Bug

    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]'
  20. malufett

    big problem!

    client date = version...yup...
  21. malufett

    why ?

    click the small circle then check all.. the circle between rectangle and the double greater than symbol
  22. malufett

    big problem!

    what client version are you using?? and your server's packet version??
×
×
  • Create New...