Jump to content

Bin4ry

Members
  • Posts

    782
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Bin4ry

  1. Here I have a map that I've drew but not done with lighting, if anyone willing to do it for me I don't mind any use, re-release, modify or whatever of this map, you can also claim as your own map. Downloads Link removed - Solved.
  2. in LUA is fine to have comma in last line, that would prevent people from adding new entry forgets to add comma to previous line and in your status.c I don't see what is the different .__.
  3. Try move muchanage cases in skill_db to single target skill block.
  4. Try edit it's type in skill_db.txt first, if it doesn't work I will check in src.
  5. RMS is aegis information which is not always correct. rA follows official kRO information.
  6. Where do you get information about Overthrow as single-target skill? If info is true you can post to skill bug report section. skill.c line 3733 holding the AoE data.
  7. If your server runs renewal mode, move non-renewal heal formula to renewal block there.
  8. Healing formula is in skill.c, find: #ifdef RENEWAL /** * Renewal Heal Formula (from Doddler) * TODO: whats that( 1+ %Modifier / 100 ) ? currently using 'x1' (100/100) until found out * - Min = ( [ ( BaseLvl + INT ) / 5 ] * 30 ) * (1+( %Modifier / 100)) * (HealLvl * 0.1) + StatusMATK + EquipMATK - [(WeaponMATK * WeaponLvl) / 10] * - Max = ( [ ( BaseLvl + INT ) / 5 ] * 30 ) * (1+( %Modifier / 100)) * (HealLvl * 0.1) + StatusMATK + EquipMATK + [(WeaponMATK * WeaponLvl) / 10] **/ hp = ( ( ( ( status_get_lv(src) + status_get_int(src) ) / 5 ) * 3 ) * skill_lv + status_get_matk_min(src) + status_get_matk_max(src) - ( ( status_get_matk_max(src) * status_get_wlv(src) ) / 10 ) ) + rnd()%( ( ( ( status_get_lv(src) + status_get_int(src) ) / 5 ) * 3 ) * skill_lv + status_get_matk_min(src) + status_get_matk_max(src) + ( ( status_get_matk_max(src) * status_get_wlv(src) ) / 10 ) ); #else hp = ( status_get_lv(src) + status_get_int(src) ) / 8 * (4 + ( skill_id == AB_HIGHNESSHEAL ? ( sd ? pc_checkskill(sd,AL_HEAL) : 10 ) : skill_lv ) * 8);
  9. Do royalroom3 map exist in ur server?
  10. Bin4ry

    Skill

    Alright. Now I don't understand what Yggdrasil Berry has to do with Enchant Deadly Potion. They are 100% un-related. For Defender's SC Speed, open status.c and go to line 5086 find: if( sc->data[sC_DEFENDER] ) speed = max(speed, 200); Edit the speed value. It can be like "speed = 200;"
  11. Bin4ry

    Skill

    Sorry but I still don't understand... For Enchant Deadly Potion, you want to take off the Deadly Potion requirement? and for Paladin's Defender, I still don't get it.
  12. No need of that, you can make few selection like "Recover by entering email", "Recover by entering birthdate". Then let input and check with query_sql.
  13. Bin4ry

    Trade log

    MySQL is the server, and it contain the tables. Where were you talking about?
  14. You will have to contact them yourself https://harmonize.it/
  15. Bin4ry

    Skill

    /db/re/skill_db.txt or /db/prere/skill_db.txt 378,0,6,4,5,0x1,0,5,1,no,0,0,0,weapon,0, ASC_EDP,Enchant Deadly Poison Replace with //378,0,6,4,5,0x1,0,5,1,no,0,0,0,weapon,0, ASC_EDP,Enchant Deadly Poison For Paladin part, I don't understand what are you trying to say sorry
  16. If you are adding a custom skill for hatred reset, you can just uses this as skill effect: pc_resethate(sd); sd->hate_mob[i] = -1; pc_setglobalreg(sd,sg_info[i].hate_var,0);
  17. Because there aren't any error showing, I suggest you to make a copy of latest SVN and test with ur current client. Wouldn't take u much time tho
  18. Just add 1 more { to last line.
  19. Nope. Quest is not controlled by LUA yet. Go to /data/questid2display.txt and add an entry
  20. I don't see what's wrong. You have #Renewal_EXP enable in renewal.h? And you can always lower your Job EXP rate.
  21. @michealsoftman, as you can see from the video. The navigation auto executed after the conversation (Which is called by a script command).
  22. /db/re/skill_cast_db.txt or /db/prere/skill_cast_db.txt depends on what your server is running.
×
×
  • Create New...