Recent content by Kenpachi

  1. Kenpachi

    jRO Exclusive Monsters

    View File jRO Exclusive Monsters All jRO Exclusive, Event and Special Episode monsters. This file was originally posted by @fxfreitas at Midgard-Community. The archive contains the following monster sprites: abyss_arthur (corridor of abyss special instance boss) AMELIT...
  2. Kenpachi

    @showdrop

    I guess you applied the changes manually and accidentally broke something. I used a untouched copy of Hercules and applied the patch file with TortoiseGit. -> No issue. ~Kenpachi
  3. Kenpachi

    @showdrop

    Hi. Unfortunately I were not able to create a plugin, because I couldn't hook at all required spots. But if you want to, you can use this patch:  Just tell me if something doesn't work as intended or needs modification. ~Kenpachi
  4. Kenpachi

    OnPCUseSkillEvent

    Hi. Compiles just fine for me, after adding those curly brackets. 😯 ~Kenpachi
  5. Kenpachi

    Duplicate NPC Commands

    Hi. (Additional parameter for duplicateremove() the to choose if mobs spawned by duplicate should be removed, too.) ~Kenpachi
  6. Kenpachi

    @follow change request

    Hi. Create a new zone in db/(pre-)re/map_zone_db.conf. For example: { name: "NoFollow" disabled_commands: { follow: 90 } } And add the maps where you want to disable @follow to npc/mapflag/zone.txt, For example: geffen mapflag zone NoFollow payon mapflag zone NoFollow yuno mapflag...
  7. Kenpachi

    cant use asura strike?

    Hi. Just update your server to the latest release. Alternatively you can apply this patch:  (How to apply a patch file.) ~Kenpachi
  8. Kenpachi

    OnPCSkillUseEvent + getskillname

    Hi. Untested; just converted to Hercules! ~Kenpachi
  9. Kenpachi

    Newbie question: how get an item ID by item name?

    As promised over at Discord, a patch to extend getiteminfo() script command, to get an item's ID by its name: Usage: .@item_id = getiteminfo("item name", ITEMINFO_ID); ~Kenpachi
  10. Kenpachi

    No gems for ADM

    Hi. In src/map/skill.c find function skill_get_requirement() and replace: (Should be line 15479.) if (itemid_isgemstone(req.itemid[i]) && skill_id != HW_GANBANTEIN) { with: if (itemid_isgemstone(req.itemid[i]) && sd->group->level >= 99) { /// Characters with group...
  11. Kenpachi

    No gems for ADM

    Hi. Quick, dirty and untested: diff --git a/src/map/pc.c b/src/map/pc.c index 179a4b78a..c77bfbc22 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -1359,6 +1359,10 @@ static bool pc_authok(struct map_session_data *sd, int login_id2, time_t expirat sd->sc_display = NULL...
  12. Kenpachi

    There is no command to delete items on Carts !!

    Hi. Quick and dirty. Partially tested. ~Kenpachi
  13. Kenpachi

    How does AEGIS read map cell data? (gat/rsw)

    Okay, before reading your post I did some improvements to my code. At first I noticed that return 0 if no RSW file was found and then ignoring it was stupid, sind 0 is an assumable value. So I changed it to float.NaN which brought slightly different results: After this I thought about bad...
  14. Kenpachi

    How does AEGIS read map cell data? (gat/rsw)

    Hi there. Long time no see. 😊 I'm currently working on a small server/client application just as a finger exercise for me. Therefor I'm using RO files and stumbled over the .gat cell types and their relation with the water level in .rsw files. According to *Athena and some other projects...
Back
Top