Jump to content

Hunger

Premium
  • Posts

    356
  • Joined

  • Last visited

  • Days Won

    3
  • Feedback

    0%

Everything posted by Hunger

  1. Aye, you are maybe right. Usefull script tho. Thanks for release.
  2. I mean to see the equiped gear in real-time on your character such as armour/weapon/hairstyle.
  3. You can use this to create a cool inventory window xD same as WoW.
  4. Looking for Finalongju2 Client. Anyone can help me out with it? Regards
  5. How does it looks like? You can find the original one on game wiki.
  6. I have them but i want the succes, cameon etc ones that Plechito posted.
  7. Where i can find this animations for all characters? The ones that Plechito posted? Including the additional ones?
  8. I have solved the problem myself, in case somebody is looking for the same thing, the resistances are applied in length.h in common folder. Basically the official servers absolutely cancelled the defence against arrows for monsters and they replaced them with the elemental bonuses so: You have them in length.h like this : enum { SKILL_ATTR_TYPE_NORMAL = 1, SKILL_ATTR_TYPE_MELEE, SKILL_ATTR_TYPE_RANGE, SKILL_ATTR_TYPE_MAGIC /* SKILL_ATTR_TYPE_FIRE, SKILL_ATTR_TYPE_ICE, SKILL_ATTR_TYPE_ELEC, SKILL_ATTR_TYPE_DARK, */ }; And you need to comment RANGE which is the defence against arrows required by archers and enable the elemental which are commented. enum { SKILL_ATTR_TYPE_NORMAL = 1, SKILL_ATTR_TYPE_MELEE, /* SKILL_ATTR_TYPE_RANGE, */ SKILL_ATTR_TYPE_MAGIC, SKILL_ATTR_TYPE_FIRE, SKILL_ATTR_TYPE_ICE, SKILL_ATTR_TYPE_ELEC, SKILL_ATTR_TYPE_DARK, }; Please mind the comma after MAGIC. In char skill find the case below: case SKILL_ATTR_TYPE_RANGE: dt = DAMAGE_TYPE_RANGE; iDam = iDam * (100 - pkChrVictim->GetPoint(POINT_RESIST_BOW)) / 100; break; And comment : iDam = iDam * (100 - pkChrVictim->GetPoint(POINT_RESIST_BOW)) / 100; How the case should look like after: case SKILL_ATTR_TYPE_RANGE: dt = DAMAGE_TYPE_RANGE; // 으아아아악 // 예전에 적용안했던 버그가 있어서 방어력 계산을 다시하면 유저가 난리남 //iDam -= pkChrVictim->GetPoint(POINT_DEF_GRADE); //iDam = iDam * (100 - pkChrVictim->GetPoint(POINT_RESIST_BOW)) / 100; break; Regards, Cara
  9. ITEM_SMALL_DESCR_MAX_LEN = 256, in src/common/item_length.h? Make sure you do the same for dump_proto src / dump_proto.cpp and gamelib/itemdata.h.
  10. I was wondering where is the bonus "defence against arrows" required by this type of monsters in the source.
  11. I am in my bed atm i will check them tomorrow. Thanks for your answer tho.
  12. Hello devs! I am trying to set the elemental bonuses on all mobs (only the defence against certain monsters). So, for setaou i have DEVIL,ATT_ELEC which is fine so far, but the bonus against lightning does absolutely nothing on their damage, strong against arrows still required by them. And my question is: How the hell is this thing working after all? I see nothing about arrows in mob proto or source code for setaou monsters. Does any of you share the same problem with me? Best regards, Cara Mark as solved / closed please. I found the solution for it.
  13. Hi there devs! I am trying to copy the teleporter quest from the official servers. My only issue is, the yang required to teleport based on player's level. Any ideas? Best regards, Cara
  14. Maybe you don't have the animation for horse riding? Check your errorlog.
  15. Will you reverse the noticebar aswell, Penger? Thanks for the release. Edit: I am using the script for demon tower run. Here is my "devilish" counter.
  16. Wtf dude you can use the code from the actual HP bar when you use red or blue potions. No need to pay for that lol. Edit: I'll make it public tonite tho.
  17. Ok, let's say somebody will answer you to that question. But mine is: what the f* you gonna do with it once you know that? You gonna ask for more and more and more. This is not a "how to" topic as penger said above.
  18. Isn't the skill overlay loading the same thing, Penger?
  19. I can't find that texture ... at all. The old monk armour texture.
  20. I will restart my old project again xD i was working on this beta sh1t for awhile.
  21. M2 Download Center Download Here ( Internal ) Hi there! Just some simple icons for this gorgeous mount that i love so much. Hope you guys enjoy them! Kind regards, Cara
  22. That was only the beta version and only koreans could try that unfortunately. Never been published.
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.