Jump to content

Recommended Posts

Posted (edited)

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
  • 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.
Note: Your post will require moderator approval before it will be visible.

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

    • Sweeper Festival allows you to collect all spoil from killed mobs with a single button, without having to click on each body.  This saves time, speeds up farming, and reduces routine.  For some of you, it will be a long-awaited convenience, for others — a step toward excessive simplification. It is important for us to understand what our community thinks before making a decision about introducing this feature. Let's discuss this in the Discord:  Discord server
    • START ALREADY - TOMORROW ! GRAND OPENING FROM - 15/08/2025, FRIDAY, 20:00 +3 GMT !
    • Looking for a Specialist to Upgrade Lineage II Interlude PTS to High Five Part 5 (We are also interested in upgrades to Garcia Final and Gracia Epilogue) Hello, and thank you for taking the time to view our listing! We are seeking an experienced specialist to help transfer and upgrade Lineage II server parts and core from the Interlude PTS chronicles to High Five, ensuring full functionality and stable operation. Responsibilities: Transfer and adapt all game resources and settings. Ensure correct operation and maintain the functionality of the PTS core according to High Five Part 5 chronicles. Optimize graphics, fonts, interface, and system files for High Five Part 5. Requirements: Deep understanding of the Lineage II client and server structure. Experience with PTS (L2OFF), system files, resources, and geodata. Attention to detail, accuracy, and ability to meet deadlines. Conditions: Remote work. Payment negotiable; prepayment possible. Opportunity for long-term cooperation.
    • Hello, and thank you for taking the time to check out our listing! We truly appreciate your interest and look forward to sharing more details about the project, the tasks involved, and our terms of collaboration. We are looking for an experienced specialist to port and adapt the Interlude PTS client to the Ertheia chronicles or newer. Responsibilities: Transfer and proper integration of all interface elements and client resources. Ensure compatibility with new chronicles without loss of functionality. Optimize graphics, fonts, system files, and interface elements for newer versions. Requirements: Deep understanding of the Lineage II client structure. Experience working with resources, system files, interface, and geodata. Attention to detail, accuracy, and ability to meet deadlines. Conditions: Remote work format. Payment negotiable, prepayment possible. Opportunity for long-term cooperation upon successful completion of the task.
    • SOCNET STORE — 一家销售各类数字账户和礼品卡(订阅服务)的商店,涵盖所有服务:TikTok、Instagram、Reddit、Twitter、Telegram、Facebook、LinkedIn、WhatsApp、Snapchat、YouTube、Google账户、Discord、电子邮箱(Outlook、Hotmail、Gmail、Rambler、Firstmail 等)、ChatGPT 5,以及众多服务的礼品卡(高级订阅),人人都能享受实惠价格! 可用的支付方式: 通过 PayPal、任意加密货币(+Binance Pay)、Telegram Stars、Cash App 或任意银行卡。 ⭐ 在线商店 ⭐ SOCNET.STORE ⭐ 社交媒体推广 SMM 面板 ⭐ SOCNET.PRO ⭐ Telegram 商店 ⭐ SOCNET.SHOP ⭐ 新闻:⭐ ➡ Telegram 频道: https://t.me/socnet_news 联系方式与支持: ➡ Telegram 支持: https://t.me/socnet_support ➡ Discord 支持: socnet_support ➡ Discord 服务器: https://discord.gg/y9AStFFsrh ➡ WhatsApp 支持: https://wa.me/79051904467 ➡ WhatsApp 频道: https://whatsapp.com/channel/0029Vau0CMX002TGkD4uHa2n ➡ 电子邮件 支持: solomonbog@socnet.store 我们经营已久,积累了大量关于我们工作的评价!我们网站上展示了大量真实、积极的客户好评!   ⭐ TELEGRAM ⭐   ㅤ ㅤ GROUPS/STARS/CHANNELS Telegram Stars on Posts | 1 star from $0.016 | Discounts for bulk orders | Delivery within 1 hour of purchase | Possible writing variations Telegram Stars | 1 star from $0.0149 | Discounts for bulk orders | Delivery within 1 hour of purchase Groups IMPORT and REAL | From 2014 to 2024 available! | For safe invitations | Low price and high quality! | Price from $4 Real old Telegram Channels (2022–2023: choose the year) | Real channels | Ownership transfer to your account | Price from $2.5 OLD ACCOUNTS Telegram USA/CANADA +1 | Auto-reg | Age 180+ days | TDATA+SESSION+JSON+2FA | +2FA enabled | Price from $2.5 Telegram Indonesia +62 | Auto-reg | Age 180+ days | TDATA+SESSION+JSON+2FA | +2FA enabled | Price from $2.5 Telegram South Africa +27 | Auto-reg | Age 180+ days | TDATA+SESSION+JSON+2FA | +2FA enabled | Price from $1.8 Telegram Philippines +63 | Auto-reg | Age 180+ days | TDATA+SESSION+JSON+2FA | +2FA enabled | Price from $2 Telegram Israel +972 | Auto-reg | Age 180+ days | TDATA+SESSION+JSON+2FA | +2FA enabled | Price from $2.5 NEW ACCOUNTS USA (+1) | Auto-reg | TDATA SESSION JSON 2FA | 2FA enabled | Price from $0.5 Canada (+1) | Auto-reg | TDATA SESSION JSON 2FA | 2FA enabled | Price from $0.5 Russia (+7) | Auto-reg | TDATA | No spam block | 2FA enabled (if enabled!) | Price from: $2 Brazil (+55) | Auto-reg | TDATA SESSION JSON 2FA | 2FA enabled | Price from: $2.5 United Kingdom (+44) | Auto-reg | Age from 3 days | TDATA SESSION JSON 2FA | 2FA enabled | Price from: $1.3 Germany (+49) | Auto-reg | Age from 3 days | TDATA SESSION JSON 2FA | 2FA enabled | Price from: $4 Myanmar (+95) | Auto-reg | TDATA SESSION JSON 2FA | 2FA enabled | Price from: $0.38 Bangladesh (+880) | Auto-reg | TDATA SESSION+JSON 2FA | 2FA enabled | Price from: $0.4 Indonesia (+62) | Auto-reg | Age from 3 days | TDATA SESSION+JSON 2FA | 2FA enabled | Price from: $0.5 Chile (+56) | Auto-reg | TDATA SESSION JSON 2FA | 2FA enabled | Price from: $0.8 Philippines (+63) | Auto-reg | TDATA SESSION JSON 2FA | 2FA enabled | Price from: $0.64   ⭐ FACEBOOK ⭐   Verified Facebook account with old Meta version and active blue checkmark | Subscription paid 1 month in advance + account verified with documents | Price from: $69 Facebook accounts | GEO: USA/Europe (Germany, France, UK, Italy, Spain, etc.) | Registered on a real Android device with a real phone number | SMS, cookies, photos, posts | Price from: $0.49 Facebook accounts | GEO: Europe (UK, Italy, France, Germany, Ukraine, etc.) | Age: from 6 months to 1 year | Registered on a real Android device with a real phone number | Format: login + password + UserAgent + cookies | Price from: $1 Facebook KING USA/Canada/Europe with 1-2 BM + Marketplace + Fan Page | Verified phone and email (included) | Manually farmed with ACTIVATED BUSINESS MANAGER | Filled-out profile, FUN PAGE + FARMed for 7+ days | Two-factor authentication enabled | Price from: $4.5 Facebook KING USA/Canada/Europe with 1-2 BM | Verified phone and email (included) | Manually farmed with ACTIVATED BUSINESS MANAGER | Filled-out profile, FUN PAGE + FARMed for 7+ days | Two-factor authentication enabled | Price from: $3 Facebook KING+FP 2022 | GEO: Europe (Ukraine, UK, France, Italy, Germany) | Friends: 30–100+ | Verified by phone and email (included) | Filled-out FunPage + FARMed for 7+ days | Two-factor authentication enabled | Price from: $8 Facebook Business Manager (BM) | Linked to an account with connected Business Manager | $50 limit (first day) + $250 (following days) + email confirmation | Ads Manager created | Price from: $40 OLD Facebook account (2010–2020) | Year of your choice | Filled-out profile and added friends | Email included (may not work) | Real accounts | Price from: $6 OLD Facebook account (2010–2022) with friends (50–500+) and activity | GEO: Europe and USA | Year of your choice | Filled-out profile and added friends | Email included (may not work) | Real accounts | Price from: $3 BM Facebook account with unlocked ad account limit $250, YEAR 2025 (NO RESTRICTIONS) | Facebook | 4 ACCOUNTS | EACH WITH $250 FROM START | NO DROPS IN LIMIT | Price from: $60 BM Facebook account with unlocked ad cabinet | GEO: Europe (Poland, Ukraine) | Facebook | FARMED: 7+ DAYS | 1–3 photos + email access + cookies + ad ban passed | 1–2 Business Managers | Documents included | Price from: $4.5 Old Facebook account (2008–2023) with linked ad account and $250 limit | Price from: $65 Verified Facebook Business Manager 250$ with $50 limit | GEO: USA | Verified by company | Price from: $29 OLD Facebook FanPage (2010–2023), converted to new type. Creation year: 2010–2023 | With real followers from 20 to 1000 (choose the number) | MORE TRUST THAN AD BAN | Price from: $10.5 Old Facebook FanPages (created in 2017–2022) — name can be changed | Price from: $7 Old Facebook accounts | GEO: Asia (India, Philippines, Vietnam, Indonesia, Malaysia) — choose your country | Age: 2010–2020 | Friends: from 20+ | Registered on real Android device with real number | Username | Password | 2FA Key | Email access | Backup Hotmail | DOB | Price from $8 Verified Facebook Business Manager (BM) account with open WhatsApp Account Manager and ability to link up to 2 WhatsApp numbers to your profile | Price from $89 Facebook account with ad ban. Age: 2022–2023. Country: USA/Europe (UK, France, Poland) — your choice. Ad account closed. Marketplace available (optional). Includes Mail + Ava + EAAB token + Cookies + UserAgent + 2FA (optional) | Price from $1   ⭐ TWITTER ⭐   Twitter Premium X/Premium+ subscription on your Twitter account for 1 month/1 year (your choice). Authorization in your Twitter account is required. Price from: $13 per month Twitter Premium Plus subscription with GROK AI assistant on your Twitter account for 1 year. Authorization in your Twitter account is required. Price from: $55 Twitter | New and clean accounts | AUTHORIZATION TOKEN | Email + 2FA TOKEN | Price from: $0.2 Twitter accounts filled with NFT and crypto content | IP EUROPE/ASIA | 1–5 follows | 1–5 followers | avatar + banner + geo + bio + authorization token | suitable for following, liking, reposting – everything | Price from: $0.5 Super promoted Twitter accounts with 100–10,000+ real followers | Full access (via email, login, and token) | Complete profile (avatar set, possibly cover and posts in account, regular username) | Refill: 30 days | Price from: $1 Twitter | Aged clean accounts (6+ months) | Login, password, email, and token included | Price from: $0.5 Old Twitter accounts 2009–2023 (YEAR OF YOUR CHOICE) | Verified by phone number and email | Access via login, email, and token | Price from: $1.2 Old Twitter accounts 2010–2020 with real followers from 1,000 to 20,000+ (followers of your choice) | Access via email, password, and token | Price from: $10 Old Twitter accounts 2010–2023 with BLUE Regular Tick for Tier 1/2/3 countries | Full access with login, password, and token included! | Price from: $16 Old Twitter accounts 2010–2023 with BLUE Regular Tick and real followers: 100–20,000 (your choice) Tier 1/2/3 countries | Full access with login, password, and token included | Refill: from 30 days | Price from: $17 Old Twitter NFT accounts 2010–2023 with BLUE Regular Tick Tier 1/2/3 countries | Full access with login, password, and token included! | Price from: $17 Old Twitter NFT accounts 2010–2023 with BLUE Regular Tick and high-quality real followers: 100–20,000 (your choice) Tier 1/2/3 countries | Full access with login, password, and token included | Refill: from 30 days | Price from: $18   ⭐ GOOGLE/YOUTUBE ⭐   Gmail.com | Registered from MIX IP address | Clean and without messages | Valid for 2–3 days | Invalid accounts are replaced | Format: email:password:submail | SMS verification not required | IMAP ON | Submail included | Price from: $0.15 Old Gmail.com | Age: from 2005 to 2023 (real accounts) – YEAR OF YOUR CHOICE | Accounts may contain messages | Registered from MIX IP | Invalid accounts are replaced | Format: email:password:submail | SMS verification not required | IMAP ON | Submail included | Price from: $0.85 Old Gmail.com | Registered from US IP address | Age: from 2010 to 2023 – YEAR OF YOUR CHOICE | Accounts can send messages | Format: email:password:submail | SMS verification not required | IMAP ON | Submail included | Price from: $1.89 Google Voice Accounts (GMAIL US NEW) | Age/Year: Random 2024 | Phone Verified: Yes | Price from: $15 GOOGLE ADS ACCOUNT USA/EUROPE (UK, Germany, France, etc.) | Manually farmed 7+ days | Google Ads account created | Includes two-factor authentication (2FA), backup codes, backup email with access, UserAgent and cookies | Price from: $13 GOOGLE ADS ACCOUNT USA/EUROPE (UK, Germany, France, etc.) | VERIFICATION COMPLETED — €10 BALANCE | Manually farmed 7+ days | Ads created | Includes two-factor authentication (2FA), backup email with access, UserAgent and cookies | Price from: $55 Google Ads Account Europe/USA with ad campaigns and spend of $100/$500/$1000 | Advertiser verification not completed | Full access and account setup | Price from: $200 Google Ads Account Europe/USA with ad campaigns and spend of $100/$500/$1000 | Advertiser verification completed | Full access and account setup | Price from: $400   ⭐ YOUTUBE CHANNELS ⭐   YouTube channel accounts | Age: 2006–2020 (year of your choice) | With or without videos (your choice) | Price from: $1 YouTube channel accounts | Age: 2006–2020 (year of your choice) | With videos and views (views of your choice) | Price from: $23 Organic YouTube channels with real subscribers (year of your choice) – and organic views (10K–1M) – both customizable | Price from: $24   ⭐ DISCORD ⭐   Discord – email:password:token with attached working email | Activated via SMS | 1 order = 3 accounts | Price from: $0.44 DISCORD Real Android Devices | Verified on RAMBLER.RU or FIRSTMAIL, working email, phone SMS verified | Age 3+ months | Suitable for all purposes | Accounts without restrictions and SMS | Price from: $0.5 DISCORD Account | 1 order = 3 accounts, only verified email (@rambler.ru/@firstmail (working) included), Gender MIX | Price from: $0.5 DISCORD Account | Real Android device | 1 order = 3 accounts | Verified via RAMBLER.RU or FIRSTMAIL | Working email included | Phone verified | Age from 1 month | Suitable for all purposes | Accounts without restrictions and SMS | Price from: $0.75 DISCORD Account | Real Android devices | Verified on RAMBLER.RU or FIRSTMAIL | Email included (may not work) | Phone verified | Age from 1 year | Suitable for all purposes | Accounts without restrictions and SMS | Price from: $0.8 DISCORD NITRO   Discord Nitro Classic (Basic) GIFT | 1/12 MONTHS | NO ACCOUNT LOGIN REQUIRED | Full duration guarantee | Price from: $3.15 Discord Nitro FULL | 1/12 MONTHS | NO ACCOUNT LOGIN REQUIRED | Full duration guarantee | Price from: $6.8   ⭐ REDDIT ⭐   Reddit Karma Brute Account | 1 KARMA | Access via cookies only (password may not work) | Cheapest account | Price from: $1 Reddit Karma Brute Account | KARMA from 20–100 POSTS & COMMENTS | Registered via MIX IP | FORMAT: USERNAME: PASSWORD:EMAIL:MAILPASS | Price from: $5 Reddit Karma Brute Account | KARMA from 500/1000/2000/5000/10000/20000 POSTS & COMMENTS (YOUR CHOICE) | Registered via MIX IP | FORMAT: USERNAME: PASSWORD:EMAIL:MAILPASS | Price from: $9+   ⭐ INSTAGRAM ⭐   Old verified Instagram Meta account with active blue checkmark | Subscription already paid for 1 month ahead + account verified by documents | Price from: $69 OLD Instagram accounts (2011–2020) | Clean and quality account | Country: MIX | Email included! | Price from: $1.1 New Instagram accounts | PREMIUM Auto-reg quality (API FRESH) | Registered via SMS | Completely new | Up to 24 hours | Format: login | password | cookies (for InstAccountsManager) | Price from: $0.05 OLD Instagram accounts (2011–2020) | NO FLAG | Suitable for follower boosting | Country: MIX | Email included | Price from: $1.15 OLD Instagram accounts (2011–2015) | Clean and quality account | Country: MIX | Email included! | Price from: $1.3 OLD Instagram accounts (2011–2020) with followers | 100/500/1000/5000/10000+ followers (YOUR CHOICE) | Country: MIX | Email included! | Price from: $1.35 OLD Instagram accounts (2011–2015) with followers | 100 followers | Country: MIX | Email included! | Price from: $1.45 OLD Instagram accounts (2011–2020) | Clean and quality account | Country: Europe and USA | Email included! | Price from: $2 OLD Instagram accounts (2011–2020) | Clean and quality account | Country: USA | Email included! | Price from: $2.5 OLD Instagram accounts (2011–2020) with followers | 100/500/1000/5000/10000+ followers (YOUR CHOICE) | Country: Europe and USA | Email included! | Price from: $3 OLD Instagram accounts (2011–2020) with followers | 100/500/1000/5000/10000+ followers (YOUR CHOICE) | Country: USA | Email included! | Price from: $2.75 OLD Instagram accounts (2010–2020) | Account ready for purchase | META VERIFIED | The account has posts | Price from: $4.99 OLD Instagram META account (2010–2020) with 100/500/1000/5000/10000 followers (YOUR CHOICE) | Account ready for purchase | META VERIFIED | Account has posts | Price from: $5.99   ⭐ PROXIES / VPN / VIRTUAL SERVERS ⭐   IPv6 PROXIES | Individual IPv6 proxy protocol | Format: HTTP/SOCKS5 | Any country | 30 days | Unlimited traffic | Price from: $0.35 IPv4 DATACENTER PROXIES | Individual IPv4 protocol | Format: HTTP/SOCKS5 | Any country | 30 days | Unlimited traffic | Price from: $1 DYNAMIC IPv4 PROXIES (with time-based rotation) | Any country | Format: HTTP/SOCKS5 | 30 days | Price per 1GB traffic | Price from: $3 RESIDENTIAL IPv4 PROXIES | Any country | Format: HTTP/SOCKS5 | 30 days | UNLIMITED TRAFFIC | HIGH SPEED UP TO 1 GB/s | Price from: $2.5 Private mobile proxies | Unlimited traffic | Any GEO (your choice) | Duration: 1/30/365 days (your choice) | Speed up to 30 MB/s | Price from: $10 OutLine VPN | Any country of your choice | Works on all devices and in any country (including Russia!) | Duration: 30 days | Price from: $2.5 WireGuard VPN | Any country of your choice | Works on all devices and in any country (including Russia!) | Duration: 30 days | Price from: $2.5 VDS (1–12 months) | GEO: USA, UK, Canada, Germany, India, France, Australia | RAM: 2–16 GB | Disk space (SSD): 60 GB – 8 TB | Custom configuration! | Lowest price! | Price from: $3   ⭐ TIKTOK ⭐   TIKTOK – Clean (wiped) auto-reg accounts II VERIFIED @RAMBLER.RU/@FIRSTMAIL II EMAIL INCLUDED, registered with RU IP | Price from: $0.1 TikTok auto-reg account II Verified via rambler.ru email, email included II Gender: MIX II Latin name II Empty profile II Registered with MIX IP | Price from: $0.1 TikTok auto-reg account II 100/1000/5000/10000+ followers (your choice) II Email verified @hotmail/@outlook/@firstmail/@rambler, email included (working) II Gender: MIX II Latin name II Registered with MIX IP | Price from: $1 ㅤ ㅤ ADVERTISING ACCOUNTS TIKTOK AD ACCOUNTS | GEO: USA/EUROPE | PREPAID | Manual registration | Email access + Cookies + VAT info | Price from: $1 TIKTOK AD ACCOUNTS | GEO: USA/EUROPE | Business verified + POSTPAY | Manual registration | Email access + Cookies + VAT info | Price from: $3.5 TIKTOK AD ACCOUNTS | GEO: USA/EUROPE | POSTPAY + BUSINESS CENTER | 3 ad accounts for running ads + 1 personal | Possible ad coupons from $20 to $100 | Manual registration | Email access + Cookies + VAT info | Price from: $8   ⭐ LINKEDIN & SNAPCHAT ⭐   Linkedin.com accounts | Email included: @outlook/@hotmail/@firstmail | Male or Female | Partially filled profiles | Registered from US/Europe/MIX IP | Price from: $2.5 LinkedIn Old Brute account with real connections (0 connections) | Mixed GEO | Filled profile | Registered on real device | Price from: $10 LinkedIn Premium Brute account (Premium) with active Premium subscription for 1 month | GEO: MIX | Registered on real device | Full access to account | Price from: $20 LinkedIn Old Brute account with real connections (50/100/500/1000+ connections) – YOUR CHOICE | Mixed GEO | Filled profile | Registered on real device | Price from: $20 Verified LinkedIn Brute account with confirmed documents | GEO: MIX | Registered on real device | Full access to account | Price from: $89 Snapchat Brute Old Account with real activity and score (from 0/10k/20k/50k/100k+ points) | GEO: USA, UK, Saudi Arabia, Dubai, India | Real accounts with real posts and followers (random amount) | Price from: $15   ⭐ WHATSAPP ⭐   WhatsApp real accounts | USA (+1 code) | High-quality accounts | QR-code or code from phone: from $3   ⭐ EMAIL ACCOUNTS ⭐   Outlook.com auto-reg account | Age: from 6 months | Registered on random IPs, IMAP and POP3 enabled | Valid for a long time and suitable for any purpose | Price from: $0.1 Firstmail.ltd auto-reg account | 1 order = 10 inboxes | IMAP enabled | High quality and functionality on all sites | Domains: maillerbox.com, fmailler.com, fmailnex.com, fmailler.net and others | Price from: $0.04 Rambler.ru auto-reg account | NEVER USED BEFORE | High quality and functionality on all sites | Price from: $0.02 Onet.pl auto-reg account | Email format: @ONET | Gender: mixed | SMTP, POP3, IMAP enabled | Price from: $0.1 Gazeta.pl auto-reg account | Email format: email@gazeta.pl | Gender: mixed | SMTP, POP3, IMAP enabled | Price from: $0.1 GMX.net / GMX.com auto-reg account | Email format: email@gmx.com/.at/.ch/.de/.net | Gender: mixed | SMS verification (+49) | SMTP, POP3, IMAP enabled | Price from: $0.05 GMX OLD account 2020–2023 | Email format: email@gmx.com/.at/.ch/.de/.net | Gender: mixed | Verified via SMS (+49) | SMTP, POP3, IMAP enabled | Price from: $0.3 Yahoo.com auto-reg account | IP and gender: MIX | Verified via SMS | IMAP, POP3, SMTP enabled | Phone and IMAP password included | Price from: $0.15 Auto-registered accounts Protonmail.com / Proton.me auto-reg account | Age: from 10 days | English first and last names | MIX IPs | Price from: $0.15 Web.de OLD account 2020–2023 | Email format: @web.de | Gender: MIX | Verified via SMS (+49) | SMTP, POP3, IMAP enabled | Price from: $0.4   ⭐ OTHER SERVICES & PREMIUM SUBSCRIPTIONS ⭐   ㅤ ㅤ DISCORD NITRO Discord Nitro Classic (Basic) GIFT | 1/12 MONTHS | NO LOGIN OR PASSWORD NEEDED | Full subscription guarantee | Price from: $3.15 Discord Nitro FULL | 1/12 MONTHS | NO LOGIN OR PASSWORD NEEDED | Full subscription guarantee | Price from: $6.8 SPOTIFY PREMIUM Individual Spotify Premium plan for 1 month ON YOUR ACCOUNT | Available worldwide | Price from: $2.49 Family Spotify Premium plan for 1 month ON YOUR ACCOUNT | Works in any country | Price from: $3.75 Personal YouTube Premium Music on your account | 1 month | Ad-free YouTube | Price from: $3.75 Family YouTube Premium Music on your account | 1 month | Ad-free YouTube | Price from: $4.35 TELEGRAM PREMIUM Telegram Premium subscription for 1 month on your account | Authorization required (via TDATA or phone number) | Price from: $6 Telegram Premium subscription for 3 months on your account | No account authorization required | Guaranteed for full period | Price from: $17 Telegram Premium subscription for 6 months on your account | No account authorization required | Guaranteed for full period | Price from: $22 Telegram Premium subscription for 12 months on your account | No account authorization required | Guaranteed for full period | Price from: $37 GOOGLE VOICE Google Voice Accounts (GMAIL US NEW) | Age/Year: Random 2024 | Phone Verified: Yes | Price from: $13 TWITTER(X) PREMIUM Twitter Premium X subscription on your Twitter account for 1 month/1 year (your choice). Authorization in your Twitter account is required. Price from: $13 per month Twitter X Premium Plus subscription with GROK AI on your Twitter account for 1 month/1 year (your choice). Authorization in your Twitter account is required. Price from: $55 NETFLIX PREMIUM Netflix Premium subscription for 1 month on your personal account for any country, renewable after expiration | Price from: $10 CANVA PRO CANVA PRO subscription for 1 month via invitation to your email | Price from: $1 CHATGPT 5 Shared ChatGPT 5 Plus account FOR 2/5 USERS | Price from: $5 / $10 Group ChatGPT 5 Plus subscription on your own email address for 1 month | Price from: $5 Personal ChatGPT 5 Plus account FOR 1 USER or CHAT GPT PLUS subscription on your own account | Price from: $18 ChatGPT 5 PRO account with UNLIMITED REQUESTS | Dedicated personal account FOR 1 USER ONLY or ON YOUR ACCOUNT | Works in any country or region | Price from: $220   注意: 此文本块并不代表我们的全部产品范围;如需更多详情,请访问下方相关链接! 如果您有任何问题,我们的客服团队随时准备为您提供帮助! 可用的支付方式: 通过 PayPal、任意加密货币(+Binance Pay)、Telegram Stars、Cash App 或任意银行卡。 ⭐ 在线商店 ⭐ SOCNET.STORE ⭐ 社交媒体推广 SMM 面板 ⭐ SOCNET.PRO ⭐ Telegram 商店 ⭐ SOCNET.SHOP ⭐ 新闻:⭐ ➡ Telegram 频道: https://t.me/socnet_news 联系方式与支持: ➡ Telegram 客服: https://t.me/socnet_support ➡ Discord 客服: socnet_support ➡ Discord 服务器: https://discord.gg/y9AStFFsrh ➡ WhatsApp 客服: https://wa.me/79051904467 ➡ WhatsApp 频道: https://whatsapp.com/channel/0029Vau0CMX002TGkD4uHa2n ➡ 电子邮件 客服: solomonbog@socnet.store ⭐ 10% – 20% 折扣 或 $1 奖励 用于您的 注册 ⭐ 如果您想在 注册 后获得 $1 奖励,或在 首次购买 时获得 10% – 20% 折扣,只需留言: "发送我的奖励, 我的用户名是..." 您还可以在我们所有商店使用现成的优惠码:"SOCNET"(15% 折扣!) ⭐ 我们邀请您合作 并与我们一起赚钱 ⭐ 想在我们的商店销售您的产品或服务并赚钱吗? 想成为我们的合作伙伴或提出互利的合作建议吗? 您可以通过本帖中列出的联系方式与我们联系。 常见问题与退款政策 如果您有任何问题或疑问,我们的快速客户支持将随时为您服务! 对于未完全符合说明要求或质量的服务,只有在商品描述中明确标注了保障和期限的情况下才会退款。在所有其他情况下,将不予全额退款!购买此类服务即表示您自动同意我们的未提供服务退款政策。 我们目前接受 CRYPTOMUS、Payeer、NotPayments、Perfect Money、俄罗斯和乌克兰银行卡、支付宝、BinancePay、CryptoBot、信用卡以及 PayPal。 注册奖励 $1 仅可用于购物,且仅限首次注册任何 SOCNET 项目后使用一次。 我们重视每一位客户,并通过联系方式在账号无效时提供替换! 附注:购物奖励可用于任何 SOCNET 项目:网页商店或 Telegram 机器人。
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock