Jump to content

Alayne

Members
  • Content Count

    345
  • Joined

  • Last visited

  • Days Won

    22

Posts posted by Alayne


  1. Devil Tower


    Hello peoples,

    I've been asked recently to create official instances that aren't release on rathena yet. So I decided to merge them to hercules too.

    So here's my version of Devil Tower instance, based over infos took here and there, videos and divine-pride database, and DanielArt initial script.

    In the rar, you'll find all you need, including Instance file, mob, item and quest db.

    You'll still need up to date client (I personnaly use 20160201) to ensure the mobs are created client side.

    Have fun.

    Please, leave the credits and do not claim my work as yours.


     


  2. Charleston Crisis


    Hello peoples,

    I've been asked recently to create official instances that aren't release on rathena yet. So I decided to merge them to hercules too.

    So here's my version of Charleston Crisis instance, based over infos took here and there, videos and divine-pride database, and ziu initial script.

    In the rar, you'll find all you need, including Instance file, mob, item and quest db.

    You'll still need up to date client (I personnaly use 20160201) to ensure the mobs are created client side.

    Have fun.

    Please, leave the credits and do not claim my work as yours.


     


  3. Sarah And Fenrir


    Hello peoples,

    I've been asked recently to create official instances that aren't release on rathena yet. So I decided to merge them to hercules too.

    So here's my version of Sarah And Fenrir instance, based over infos took here and there, videos and divine-pride database.

    In the rar, you'll find all you need, including Instance file, mob, item and quest db.

    You'll still need up to date client (I personnaly use 20160201) to ensure the mobs are created client side.

    Have fun.

    Please, leave the credits and do not claim my work as yours.


     


  4. Airship Assault


    Hello peoples,

    I've been asked recently to create official instances that aren't release on rathena yet. So I decided to merge them to hercules too.

    This is a version of Airship Assault instance, corrected from Ziu initial script.

    It has been fully translated to english, reworked to be more clean and tested.

    You'll find everything needed in the rar, including instance file, mob, item and quest db.

    You'll still need up to date client (I personnaly use 20160201) to ensure the mobs are created client side.

    Have fun.


     


  5. Poring Village


    Hello peoples,

    I've been asked recently to create official instances that aren't release on rathena yet. So I decided to merge them to hercules too.

    So here's my version of Poring Village instance, based over infos took here and there, videos and divine-pride database.

    In the rar, you'll find all you need, including Instance file, mob, item and quest db.

    You'll still need up to date client (I personnaly use 20160201) to ensure the mobs are created client side.

    Have fun.

    Please, leave the credits and do not claim my work as yours.


     


  6. Sky Fortress


    Hello peoples,

    I've been asked recently to create official instances that aren't release on rathena yet. SO I decided to merge them to Hercules too.

    So here's my version of Sky Fortress instance, based over infos took here and there, videos and divine-pride database.

    In the rar, you'll find all you need, including Instance file, mob, item and quest db.

    You'll still need up to date client (I personnaly use 20160201) to ensure the mobs are created client side.

    Have fun.

    Please, leave the credits and do not claim my work as yours.


     


  7. Last Room


    Hello peoples,

    I've been asked recently to create official instances that aren't release on rathena yet. I've then decided to merge them to hercules too.

    So here's my version of Last Room instance, based over infos took here and there, videos and divine-pride database.

    In the rar, you'll find all you need, including Instance file, mob, item and quest db.

    You'll still need up to date client (I personnaly use 20160201) to ensure the mobs are created client side.

    Have fun.

    Please, leave the credits and do not claim my work as yours.


     


  8. Faceworm Nest


    Hello peoples,

    I've been asked recently to create official instances that aren't release on rathena yet.

    Therefor, I've decided to modify or create those for hercules too.

    In the rar, you'll find all you need:

    Instance file, mob, item and quest db.

    You'll still need up to date client (I personnaly use 20160201) to ensure the mobs are created client side.

    Have fun.


     


  9. Hello peoples,

    I've been asked recently to create official instances that aren't release on rathena yet.

    Therefor, I've decided to modify or create those for hercules too.

    I'll start to release the two existing in rathena that are still missing in Hercules, Horror Toy Factory and Faceworm Nest.

    For those, I wouldn't ask for anything, as I made really few edits, only enough to allow them to work on Hercules.

    On the other hand, if you're interested into any of the following list, on hercules or rathena, please feel free to contact me!

    Here's the list of instances I've rewritten:

    • Airship Assault
    • Charleston Crisis
    • Devil Tower
    • Endless Cellar (rathena only pour le moment)
    • Infinite Space (rathena only pour le moment)
    • Last Room
    • Morse Cave
    • Overlook Water Dungeon
    • Poring Village
    • Room of Consciousness
    • Sarah And Fenrir
    • Sky Fortress
    • Temple of Demon God


    And i've also rewritten the quest and stuff enchant for Sarah And Fenrir, Poring Village and Infinite Space.


    And the General warper to instances entrance.

     

    Please note that this instances are developped other videos, irowiki and database I have found (for mobs and items). Therefor, they might be not exactly the same as official. But they're as close as possible!


  10. Horror Toy Factory


    Hello peoples,

    I've been asked recently to create official instances that aren't release on rathena yet.

    Therefor, I've decided to modify or create those for hercules too.

    In the rar, you'll find all you need:

    Instance file, mob, item and quest db.

    You'll still need up to date client (I personnaly use 20160201) to ensure the mobs are created client side.

    Have fun.


     


  11. Hi peoples,

    I'm currently working on a bunch of instances. 

    For one of those, I have to pop a certain amount of monsters, which can then pop a skill on a boss one.

    For that, when invoking those monsters, I get their ideas from areamonster command's output, store them in a custom array, and use those as base for a unitskill. The problem is that when one of monsters died, I then got an error on unitskill command cause the mob's dead, and therefor, not available for command application.

    So I'd like to clean the array when a mobs died. but I can't find a way to get the GID of a monster that died to pop it out of the array, killedrid in the NPCKillEvent being the monster's class.

    Is there's a way to do so?


  12. Here's the basic loop for an identifier. Just add this in a healer npc.

    getinventorylist;
    for( set .@i,0; .@i < @inventorylist_count; set .@i, .@i + 1 ) {
    	if ( @inventorylist_identify[.@i] == 1 ) continue;
    	delitem2 @inventorylist_id[.@i],1,0,0,0,0,0,0,0;
    	getitem @inventorylist_id[.@i],1;
    }

     

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.