Jump to content

How to create an item that spawns mobs/rb (ES/ENG version).


Recommended Posts

SPANISH VERSION (BELOW ENGLISH VERSION):

Buenas, después de tantos intentos, logre para OFF spawnear un rb mediante un ITEM, este método no es muy visto en los servidores actuales, es por eso que he decidido compartir esto con ustedes, espero que puedan darme los créditos <3.

 

Primero que nada, lo primero que todos sabemos es que hay muchos items o skills que spawnean objetos o summons, como los skills de necro o la flauta del dragon, tambien encontraremos otros en el ai.obj o en la programación base que tienen ciertas funciones para spawnear o sumonear.

 

Pero nos olvidamos que hay uno que especialmente spawnea un NPC por cierto tiempo, y este code se dedica a eso, estamos hablando del NPC de navidad, aunque en realidad es un ITEM que spawnea el NPC de navidad.

 

ID: 5560    ITEM NAME: Christmas Tree

 

Una vez sabiendo esto, para saber que tipo de skill usa este item, nos dirigimos a ItemData.txt (ubicado en script( y presionamos Ctrl + f, buscamos la ID 5560, automáticamente nos va a aparecer toda la información de este item:

 

item_begin    etcitem    5560    [x_mas_tree1]    item_type=etcitem    slot_bit_type={none}    armor_type=none    etcitem_type=potion    recipe_id=0    blessed=0    weight=0    default_action=action_skill_reduce    consume_type=consume_type_stackable    initial_count=1    maximum_count=20    soulshot_count=0    spiritshot_count=0    reduced_soulshot={}    reduced_spiritshot={}    reduced_mp_consume={}    immediate_effect=1    price=0    default_price=1    item_skill=[s_summon_x_mas_tree_a]   critical_attack_skill=[none]    attack_skill=[none]    magic_skill=[none]    item_skill_enchanted_four=[none]    material_type=paper    crystal_type=none    crystal_count=0    is_trade=1    is_drop=1    is_destruct=1    physical_damage=0    random_damage=0    weapon_type=none    can_penetrate=0    critical=0    hit_modify=0    avoid_modify=0    dual_fhit_rate=0    shield_defense=0    shield_defense_rate=0    attack_range=0    damage_range={}    attack_speed=0    reuse_delay=0    mp_consume=0    magical_damage=0    durability=0    damaged=0    physical_defense=0    magical_defense=0    mp_bonus=0    category={}    enchanted=0    html=[item_default.htm]    equip_pet={0}    magic_weapon=0    enchant_enable=0    can_equip_sex=-1    can_equip_race={}    can_equip_change_class=-1    can_equip_class={}    can_equip_agit=-1    can_equip_castle=-1    can_equip_castle_num={}    can_equip_clan_leader=-1    can_equip_clan_level=-1    can_equip_hero=-1    can_equip_nobless=-1    can_equip_chaotic=-1    item_end


Una vez que verificamos que skill esta usando (marcado en amarillo arriba), copiamos el nombre, en este caso es "item_skill=[s_summon_x_mas_tree_a]" -> "s_summon_x_mas_tree_a", realizamos el mismo proceso de busqueda, pero en este caso nos vamos al archivo llamado "SkilData.txt", lo abrimos y presionando Ctrl + F, buscamos s_summon_x_mas_tree_a.

 

Nos aparecera esta informacion, cabe aclarar que esta info es la creacion del skill y su efecto;

 

skill_begin    skill_name=[s_summon_x_mas_tree_a]    /* [쁼뀘 킸났 삌큘] */    skill_id=2137    level=1    operate_type=A1    magic_level=1    [color=yellow]effect={{i_summon_npc;[x_mas_tree_a];1}}[/color]    is_magic=0    mp_consume2=0    cast_range=-1    effective_range=-1    skill_hit_time=0    skill_cool_time=0    skill_hit_cancel_time=0    reuse_delay=0    attribute=attr_none    effect_point=0    target_type=self    affect_scope=single    affect_limit={0;0}    next_action=none    ride_state={@ride_none}    skill_end

 

Una vez encontrado, verán que hay una parte que dice "effect", esto seria que clase de llamado hace este skill, en este caso, esta llamando a spawnear un NPC (ustedes mismos pueden verificar el id de los skilles que quieran y buscarlos en este archivo, y veran los efectos), "effect={{i_summon_npc;[x_mas_tree_a];1}}".

 

[b]effect=[/b] -> hace referencia al efecto que va a producir
[b]{{i_summon_npc;[/b] -> hace referencia a que esta spawneando un npc.
[b][x_mas_tree_a];1[/b] -> hace refencia a la id del NPC entre corchetes y el ;1 hace referencia a la cantidad.  
 

una vez verificado esto, ahora ya tenemos la base para spawnear un mob, procederemos a hacer lo basico, crear un item con filedit (itemname, skillgrp, skillname, etc), en este caso les dejo el skillgrp/itemname/skillname:

EJEMPLOS DE COMO QUEDARIA:
 

skillgrp: 2138    1    0    0    -1    0    0.000000    0            icon.skill0000    0    0    0    0    -1    -1

skillname: 2138    1    Summon Special Boss    none    none    none

Itemname: 2138    Raid Boss - Random Bomb        Double-click to summon the Raid Boss. Beware: In case you move the raidboss into a peace zone, it will get despawned without warning!    -1                    0    0    0    

etcgrp: 2    2138    0    3    5    6    0    dropitems.drop_jewel_box_m00            dropitemstex.drop_jewel_box_t00            Raidboss.Bomb                    0    1    18    0    0    1        1        ItemSound.itemdrop_jewelbox        2    0    0

 

- Cambien las ID, porque son ID ramdoms. -


Una vez hecho esto, procedemos ir al DATAPACK, donde tendremos que crear el skill de 0 para que funcione correctamente, en mi caso, yo reemplace la id del npc del arbol y me funciona correctamente con ese item. Pero en este caso, lo que deberian hacer, es clonar el skilldata del arbol y el itemdata, es decir:


SKILLDATA:

 

skill_begin    skill_name=[s_NOMBRE_DE_SKILL]    /* [ꃠꀉ 킸났 삌큘] */    [skill_id=ID DEL SKILL    level=1    operate_type=A1    magic_level=1    effect={{i_summon_npc;[x_mas_tree_b];1}}    is_magic=0    mp_consume2=0    cast_range=-1    effective_range=-1    skill_hit_time=0    skill_cool_time=0    skill_hit_cancel_time=0    reuse_delay=0    attribute=attr_none    effect_point=0    target_type=self    affect_scope=single    affect_limit={0;0}    next_action=none    ride_state={@ride_none}    skill_end

 

ITEMDATA:

 

[code]item_begin    etcitem    (5560 ID DE ITEM)  [nombre_de_item]  item_type=etcitem    slot_bit_type={none}    armor_type=none    etcitem_type=potion    recipe_id=0    blessed=0    weight=0    default_action=action_skill_reduce    consume_type=consume_type_stackable    initial_count=1    maximum_count=20    soulshot_count=0    spiritshot_count=0    reduced_soulshot={}    reduced_spiritshot={}    reduced_mp_consume={}    immediate_effect=1    price=0    default_price=1    item_skill=[s_NOMBRE_DE_SKILL]    critical_attack_skill=[none]    attack_skill=[none]    magic_skill=[none]    item_skill_enchanted_four=[none]    material_type=paper    crystal_type=none    crystal_count=0    is_trade=1    is_drop=1    is_destruct=1    physical_damage=0    random_damage=0    weapon_type=none    can_penetrate=0    critical=0    hit_modify=0    avoid_modify=0    dual_fhit_rate=0    shield_defense=0    shield_defense_rate=0    attack_range=0    damage_range={}    attack_speed=0    reuse_delay=0    mp_consume=0    magical_damage=0    durability=0    damaged=0    physical_defense=0    magical_defense=0    mp_bonus=0    category={}    enchanted=0    html=[item_default.htm]    equip_pet={0}    magic_weapon=0    enchant_enable=0    can_equip_sex=-1    can_equip_race={}    can_equip_change_class=-1    can_equip_class={}    can_equip_agit=-1    can_equip_castle=-1    can_equip_castle_num={}    can_equip_clan_leader=-1    can_equip_clan_level=-1    can_equip_hero=-1    can_equip_nobless=-1    can_equip_chaotic=-1    item_end

 

SKILLPCH Y SKILLPCH2:

 

Deberan copiar el codigo de skilldata y meterlo en el "L2OFF GM PANEL", en donde lo tienen instalado, tienen un txt que se llama también "skilldata.txt", ahi pegan el codigo y guardan, luego de esto, abren el "L2OFF GM PANEL", tocando la opcion de "PCH Editor" y eso les abrira el generador, en el cual clickean "skilldata".
 

Les dejo imágenes para guiarse:
 

https://prnt.sc/qDghj9pL_I9d

https://gyazo.com/611a1bd80962cbadb56cec183ca50f28

https://gyazo.com/fe46c0b2e5f1a115aa541351640407e2


Espero que les haya servidor, att fa1thDEV/WaterColour.

-------------------------------------------------------------------------------------------------------------------------------------------

ENGLISH VERSION:


 

Good, after so many attempts, I managed to OFF spawn a rb using an ITEM, this method is not very seen in the current servers, that's why I decided to share this with you, I hope you can give me the credits <3.
 

First of all, the first thing we all know is that there are many items or skills that spawn objects or summons, like the necro skills or the dragon flute, we will also find others in the ai.obj or in the base programming that have certain functions to spawn or summon.
 

But we forget that there is one that especially spawns an NPC for a certain time, and this code is dedicated to that, we are talking about the Christmas NPC, although it is actually an ITEM that spawns the Christmas NPC.

 

ID: 5560    ITEM NAME: Christmas Tree

Once we know this, to know what type of skill this item uses, we go to ItemData.txt (located in script and press Ctrl + f, we look for the ID 5560, automatically all the information of this item will appear:

item_begin    etcitem    5560    [x_mas_tree1]    item_type=etcitem    slot_bit_type={none}    armor_type=none    etcitem_type=potion    recipe_id=0    blessed=0    weight=0    default_action=action_skill_reduce    consume_type=consume_type_stackable    initial_count=1    maximum_count=20    soulshot_count=0    spiritshot_count=0    reduced_soulshot={}    reduced_spiritshot={}    reduced_mp_consume={}    immediate_effect=1    price=0    default_price=1    item_skill=[s_summon_x_mas_tree_a]   critical_attack_skill=[none]    attack_skill=[none]    magic_skill=[none]    item_skill_enchanted_four=[none]    material_type=paper    crystal_type=none    crystal_count=0    is_trade=1    is_drop=1    is_destruct=1    physical_damage=0    random_damage=0    weapon_type=none    can_penetrate=0    critical=0    hit_modify=0    avoid_modify=0    dual_fhit_rate=0    shield_defense=0    shield_defense_rate=0    attack_range=0    damage_range={}    attack_speed=0    reuse_delay=0    mp_consume=0    magical_damage=0    durability=0    damaged=0    physical_defense=0    magical_defense=0    mp_bonus=0    category={}    enchanted=0    html=[item_default.htm]    equip_pet={0}    magic_weapon=0    enchant_enable=0    can_equip_sex=-1    can_equip_race={}    can_equip_change_class=-1    can_equip_class={}    can_equip_agit=-1    can_equip_castle=-1    can_equip_castle_num={}    can_equip_clan_leader=-1    can_equip_clan_level=-1    can_equip_hero=-1    can_equip_nobless=-1    can_equip_chaotic=-1    item_end
 

Once we verify which skill is being used (marked in yellow above), we copy the name, in this case it is "item_skill=[s_summon_x_mas_tree_a]" -> "item_skill=[s_summon_x_mas_tree_a]". -> "s_summon_x_mas_tree_a", we make the same search process, but in this case we go to the file called "SkilData.txt", we open it and pressing Ctrl + F, we look for s_summon_x_mas_tree_a.
 

This information will appear, it is important to clarify that this info is the creation of the skill and its effect;

skill_begin    skill_name=[s_summon_x_mas_tree_a]    /* [쁼뀘 킸났 삌큘] */    skill_id=2137    level=1    operate_type=A1    magic_level=1    effect={{i_summon_npc;[x_mas_tree_a];1}}    is_magic=0    mp_consume2=0    cast_range=-1    effective_range=-1    skill_hit_time=0    skill_cool_time=0    skill_hit_cancel_time=0    reuse_delay=0    attribute=attr_none    effect_point=0    target_type=self    affect_scope=single    affect_limit={0;0}    next_action=none    ride_state={@ride_none}    skill_end
 

Once found, you will see that there is a part that says "effect", this would be what kind of call this skill makes, in this case, it is calling to spawn an NPC (you can check the id of the skills you want and look for them in this file, and you will see the effects), "effect={{i_summon_npc;[x_mas_tree_a];1}}".
 

effect= -> refers to the effect you are going to produce.
{{i_summon_npc; -> refers to spawning an npc.
[x_mas_tree_a];1 -> refers to the NPC id in square brackets and the ;1 refers to the amount.  
 

once verified this, now we have the base to spawn a mob, we will proceed to do the basics, create an item with filedit (itemname, skillgrp, skillname, etc), in this case I leave you the skillgrp/itemname/skillname:

EXAMPLES HOW:
 

skillgrp: 2138    1    0    0    -1    0    0.000000    0            icon.skill0000    0    0    0    0    -1    -1

skillname: 2138    1    Summon Special Boss    none    none    none

Itemname: 2138    Raid Boss - Random Bomb        Double-click to summon the Raid Boss. Beware: In case you move the raidboss into a peace zone, it will get despawned without warning!    -1                    0    0    0    

etcgrp: 2    2138    0    3    5    6    0    dropitems.drop_jewel_box_m00            dropitemstex.drop_jewel_box_t00            Raidboss.Bomb                    0    1    18    0    0    1        1        ItemSound.itemdrop_jewelbox        2    0    0

 

- Change the IDs, because they are ID ramdoms. -


Once this is done, we proceed to DATAPACK, where we will have to create the skill from 0 to work correctly, in my case, I replaced the id of the npc of the tree and it works correctly with that item. But in this case, what you should do, is to clone the skilldata of the tree and the itemdata, that is to say:

 

SKILLDATA:

 

skill_begin    skill_name=[s_Name_SKILL]    /* [ꃠꀉ 킸났 삌큘] */    [skill_id=ID_SKILL    level=1    operate_type=A1    magic_level=1    effect={{i_summon_npc;[x_mas_tree_b];1}}    is_magic=0    mp_consume2=0    cast_range=-1    effective_range=-1    skill_hit_time=0    skill_cool_time=0    skill_hit_cancel_time=0    reuse_delay=0    attribute=attr_none    effect_point=0    target_type=self    affect_scope=single    affect_limit={0;0}    next_action=none    ride_state={@ride_none}    skill_end

 

ITEMDATA:

 

[code]item_begin    etcitem    (5560 ID ITEM)  [name_item]  item_type=etcitem    slot_bit_type={none}    armor_type=none    etcitem_type=potion    recipe_id=0    blessed=0    weight=0    default_action=action_skill_reduce    consume_type=consume_type_stackable    initial_count=1    maximum_count=20    soulshot_count=0    spiritshot_count=0    reduced_soulshot={}    reduced_spiritshot={}    reduced_mp_consume={}    immediate_effect=1    price=0    default_price=1    item_skill=[s_name_SKILL]    critical_attack_skill=[none]    attack_skill=[none]    magic_skill=[none]    item_skill_enchanted_four=[none]    material_type=paper    crystal_type=none    crystal_count=0    is_trade=1    is_drop=1    is_destruct=1    physical_damage=0    random_damage=0    weapon_type=none    can_penetrate=0    critical=0    hit_modify=0    avoid_modify=0    dual_fhit_rate=0    shield_defense=0    shield_defense_rate=0    attack_range=0    damage_range={}    attack_speed=0    reuse_delay=0    mp_consume=0    magical_damage=0    durability=0    damaged=0    physical_defense=0    magical_defense=0    mp_bonus=0    category={}    enchanted=0    html=[item_default.htm]    equip_pet={0}    magic_weapon=0    enchant_enable=0    can_equip_sex=-1    can_equip_race={}    can_equip_change_class=-1    can_equip_class={}    can_equip_agit=-1    can_equip_castle=-1    can_equip_castle_num={}    can_equip_clan_leader=-1    can_equip_clan_level=-1    can_equip_hero=-1    can_equip_nobless=-1    can_equip_chaotic=-1    item_end

 

SKILLPCH Y SKILLPCH2:


You should copy the code of skilldata and put it in the "L2OFF GM PANEL", where you have it installed, you have a txt that is also called "skilldata.txt", there paste the code and save, after this, open the "L2OFF GM PANEL", touching the option of "PCH Editor" and that will open the generator, in which you click "skilldata".


I leave images to guide you:


https://prnt.sc/qDghj9pL_I9d

https://gyazo.com/611a1bd80962cbadb56cec183ca50f28

https://gyazo.com/fe46c0b2e5f1a115aa541351640407e2

I hope you found it useful, att fa1thDEV/WaterColour.

BTW!, if there is any error, I am more than willing to fix or collaborate, greetings!

Edited by fa1thDEV
  • Like 1
Link to comment
Share on other sites

  • fa1thDEV changed the title to How to create an item that spawns mobs/rb (ES/ENG version).

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Posts

    • Athena x45 Features List -Rates: - x45 Experience - x55 Skill Points -x200 Adena - x25 Spoil - x5 Seal Stones - x1 Drop - Weapons Information: -Safe Enchant +3 -Maximum Enchant +20 -Magic Weapon 45% Enchant Rate -Warrior Weapon 60% Enchant Rate - Armors/Weapons and Jewels Information: -New Armors - Special Ability S-Grade, now you can upgrade your S grade armor with a S/A. Example: Draconic Leather Armor has 3 options , Evasion, Ranger , Assassin. -Mithril Mines (Center) monsters will drop a spoilable item (Blood of Chaos) this will allow the player to add Special Ability to a S Grade Armor. Maximum Armor enchant +8 -New Armors - Ancient Armors -Ancient Armors are dropable from Raidbosses with a low chance and can be upgraded to Eternal Epic Armors for some blood of chaos -Epic Armors are dropable from Grandbosses with a low chance -Armors and Jewels Safe Enchant +3 -Hard Enchant Rate -Shop about to B grades -A grade weapons/armors traded from ancient merchant for sort of adenas and ancient adenas -No A/S blessed grade scrolls in shop (Raid or spoil in custom zones) - Customized Zones: -Imperial Tomb Chaotic (72-78) Farm/PvP Area - This area was customized to a Chaotic Zone Area: -Players with Karma won't drop items when killed inside one of the rooms; -S Grade Weapons are obtained in this zone (Monsters inside the rooms will drop the weapons) - There's only this method to obtain S Grade Weapons -Blood of Chaos that are a material required for gear are also dropable only by Imperial Tomb Chaotic Monsters -Mithril Mines Entrance (61-74): -Leveling area (Recommended 65-75) -Seal Stones Farm (Green and Blue) -Mithril Mines Center (74-78): -Seal Stones Farm (Green, Blue and Red) -Blood of Chaos Farm(Spoil) - Item required to add Special Ability to an S Grade Armor Set - Mithril Mines Grounds (74-78): -Seal Stones Farm (Green, Blue and Red) -Level 80 Raidbosses were added to end of this zone (Thief Kelbar, Anakim and Lilith) -Customized Raidbosses - located in Mithril Mines -These Raidbosses drop Raid Letter, Ancient Weapons and misc items. -C5 Skills added. - NPC's Added: -Global Gatekeeper (Minerva) -Ancient Merchant: In this Merchant you exchange your Ancient Adena and add Special Ability to your Armor and Weapon -Exchange Raid Letters for Ancient Weapons -Purchase A Grade Armors / S Grade Armors -Purchase A Grade Jewels / S Grade Jewels -Add Special Ability to S Grade Weapons / Armor -Exchange Seal Stones for Ancient Adena -General Buffer: -The level of the buffs aren't maximized, giving the purpose and utility to Support Classes (Hierophant, Sword Muse, Eva Saint, Spectral Dancer, Shillen Saint, Doomcryer) -Available for S Grade Weapons only -Allows a player to receive a Prophecy. (Wind, Water, Fire & CoV) - Quests: -Subclass (Quest required) -Noblesse (Quest required)) - Olympiad: -Retail like every month heroes.. - Misc: -24 Buff Slots -Auto learn skills -Class Master -Offline shop system. -Buff Shop System.   Server is online.   Site: https://esl2.org/   Selling Source + full server pack.   if you interesting to buy it contact me at zoumhs999 skype.
    • Best Store to Buy Bulk Aged Facebook Accounts & Business Managers
    • The Glowy SKN Hydrating Cream   The Glowy SKN Hydrating Cream I'm embarrassed to recognize as a correct that I were given it. It changed into no longer till I struck age 50 that I concluded that it changed into the notable possibility in case you need to perform a few element and began out looking big enhancements in my skin. To summarize, I've splendid one single detail to communicate. Your perception may be advanced with the useful perusing skin care exams and empower you to select. What is wonderful is the manner which you need to get your subtleties from the vital enemy of maturing. In this manner, see the nice feasible surveys and pick be correct. These skin contamination flareups can be instead irritating, undesirable and for the maximum detail are pretty finding out to manipulate and neck can be disappointing in particular. Skin can be one's frame and character's photo. Subsequently, you want to take exceptional hobby of one's skin. You need to devour nourishment that could carry together.   https://atozsupplement.com/the-glowy-skn-hydrating-cream/ https://www.facebook.com/theglowysknhydratingcream/ https://the-glowy-skn-hydrating-cream.hp.peraichi.com/ https://theglowyskncream.wixsite.com/hydrating-cream https://the-glowy-skn-hydrating-cream.jimdosite.com/ https://the-glowy-skn-hydrating-cream.yolasite.com/ https://the-glowy-skn-hydrating-cream.company.site/ https://github.com/the-glowy-skn-hydrating-cream/ https://the-glowy-skn-hydrating-cream.webflow.io/ https://the-glowy-skn-hydrating-cream.tilda.ws/
    • Athena x45 Features List -Rates: - x45 Experience - x55 Skill Points -x200 Adena - x25 Spoil - x5 Seal Stones - x1 Drop - Weapons Information: -Safe Enchant +3 -Maximum Enchant +20 -Magic Weapon 45% Enchant Rate -Warrior Weapon 60% Enchant Rate - Armors/Weapons and Jewels Information: -New Armors - Special Ability S-Grade, now you can upgrade your S grade armor with a S/A. Example: Draconic Leather Armor has 3 options , Evasion, Ranger , Assassin. -Mithril Mines (Center) monsters will drop a spoilable item (Blood of Chaos) this will allow the player to add Special Ability to a S Grade Armor. Maximum Armor enchant +8 -New Armors - Ancient Armors -Ancient Armors are dropable from Raidbosses with a low chance and can be upgraded to Eternal Epic Armors for some blood of chaos -Epic Armors are dropable from Grandbosses with a low chance -Armors and Jewels Safe Enchant +3 -Hard Enchant Rate -Shop about to B grades -A grade weapons/armors traded from ancient merchant for sort of adenas and ancient adenas -No A/S blessed grade scrolls in shop (Raid or spoil in custom zones) - Customized Zones: -Imperial Tomb Chaotic (72-78) Farm/PvP Area - This area was customized to a Chaotic Zone Area: -Players with Karma won't drop items when killed inside one of the rooms; -S Grade Weapons are obtained in this zone (Monsters inside the rooms will drop the weapons) - There's only this method to obtain S Grade Weapons -Blood of Chaos that are a material required for gear are also dropable only by Imperial Tomb Chaotic Monsters -Mithril Mines Entrance (61-74): -Leveling area (Recommended 65-75) -Seal Stones Farm (Green and Blue) -Mithril Mines Center (74-78): -Seal Stones Farm (Green, Blue and Red) -Blood of Chaos Farm(Spoil) - Item required to add Special Ability to an S Grade Armor Set - Mithril Mines Grounds (74-78): -Seal Stones Farm (Green, Blue and Red) -Level 80 Raidbosses were added to end of this zone (Thief Kelbar, Anakim and Lilith) -Customized Raidbosses - located in Mithril Mines -These Raidbosses drop Raid Letter, Ancient Weapons and misc items. -C5 Skills added. - NPC's Added: -Global Gatekeeper (Minerva) -Ancient Merchant: In this Merchant you exchange your Ancient Adena and add Special Ability to your Armor and Weapon -Exchange Raid Letters for Ancient Weapons -Purchase A Grade Armors / S Grade Armors -Purchase A Grade Jewels / S Grade Jewels -Add Special Ability to S Grade Weapons / Armor -Exchange Seal Stones for Ancient Adena -General Buffer: -The level of the buffs aren't maximized, giving the purpose and utility to Support Classes (Hierophant, Sword Muse, Eva Saint, Spectral Dancer, Shillen Saint, Doomcryer) -Available for S Grade Weapons only -Allows a player to receive a Prophecy. (Wind, Water, Fire & CoV) - Quests: -Subclass (Quest required) -Noblesse (Quest required)) - Olympiad: -Retail like every month heroes.. - Misc: -24 Buff Slots -Auto learn skills -Class Master -Offline shop system. -Buff Shop System.   Server is Live mode but is easy to transfer the patch to classic mode if you change the server to classic mode.   And many more features you can test it ingame also with .menu.   Test Server is online.   Client:  https://www.mediafire.com/file/1d8xe18rvgi04lx/L2_Classic_Interlude_Client_V2.rar/file   Patch: https://www.mediafire.com/file/khho6lx60ft5iye/ESL2_Athena_X45_Classic_Patch_v4.0.rar/file   Register Account: https://esl2.org/valkyrie/ucp/?page=register   GM account: root pass root   If you want to test via another GM account send me DM.   if you interesting to buy it contact me at zoumhs999 skype.
    • Greetings Server Owner   we are happy to announce that we have just released a new Server Listing Platform   To provide the best possible server promotion for you, we are driving the platform forward by excessive SEO and an overall knowledge base about Lineage2 to draw many users to it, and we won't stop until our platform is the biggest and best known server list on the internet.   Some key facts that make us unique in comparison to other platforms: Free Register / Server adding (already with a big image for FREE) Backlink / votebanner is optional at the moment (not mandatory) All servers can add a big image for free for a good visibility / recognition Unique, FULLY automated advertisement booking system (you can even book ad-positions / promotions for the future) Server search by chronicle, rates and features Growing knowledgebase about the game (Weapons SA's, Soul crystal leveling, and we are currently working on a drop & spoil list) Optional Premium that doubles vote-gain Optional Platinum that triples vote-gain Possibility to buy votes (we try to keep this balanced, so regular votes are not worthless) Full responsive design (all possible devices) With a unique, card-like listing design Modern and beautiful voting banners (even more to come in the future) Great SEO that we constantly improve And of course Voting and Vote-Checks via API We are open for suggestions and improvements, just let us know Our Discord: https://discord.gg/55sSNPPZ Our Website: https://www.l2gamerguide.com/
  • Topics

×
×
  • Create New...