Jump to content

Recommended Posts

Posted

Hello, I am creating a buffer in l2 off, my problem is that it buffers well, but when I want to create a scheme it tells me "invalid buff" and does not create the list, I will leave the htm so you can check what I am doing wrong.

 

Video 1: https://gyazo.com/89ec0299316ca606333f44c366a248f7

 

Code scheme (I used):

 

<html>
<head>
<title>:: Scheme Buffer :: Player</title>
</head>
<body>
<center>
<img src="L2UI_CH3.onscrmsg_pattern01_1" width=300 height=32 align=left><br>
<br>
Please choose a buff from the list:
<br>
<a action="bypass sb_b_p?id=1111554">Wind Walk</a>
<a action="bypass sb_b_p?id==1112067">Shield</a>
<a action="bypass sb_b_p?id==1112323">Might</a>
<a action="bypass sb_b_p?id==355587">Great Shield</a>
<a action="bypass sb_b_p?id==355331">Great Might</a>
<a action="bypass sb_b_p?id==1112580">Mental Shield</a>
<a action="bypass sb_b_p?id==1112838">Bless The Body</a>
<a action="bypass sb_b_p?id==1113094">Bless The Soul</a>
<a action="bypass sb_b_p?id==1113346">Magic Barrier</a>
<a action="bypass sb_b_p?id==1113604">Resist Shock</a>
<a action="bypass sb_b_p?id==1113862">Concentration</a>
<a action="bypass sb_b_p?id==1114114">Berserker Spirit</a>
<a action="bypass sb_b_p?id==1114374">Bless Shield</a>
<a action="bypass sb_b_p?id==1114628">Vampiric Rage</a>
<a action="bypass sb_b_p?id==1114883">Acumen</a>
<a action="bypass sb_b_p?id==1115139">Empower</a>
<a action="bypass sb_b_p?id==357635">Clarity</a>
<a action="bypass sb_b_p?id==333570">Wild Magic</a>
<a action="bypass sb_b_p?id==1115394">Haste</a>
<a action="bypass sb_b_p?id==1115651">Guidance</a>
<a action="bypass sb_b_p?id==1115907">Focus</a>
<a action="bypass sb_b_p?id==1116163">Death Whisper</a>
<a action="bypass sb_b_p?id==346881">Prophecy of Water</a>
<a action="bypass sb_b_p?id==347137">Prophecy of Fire</a>
<a action="bypass sb_b_p?id==347393">Prophecy of Wind</a>
<a action="bypass sb_b_p?id==348929">Chant of Victory</a>
<a action="bypass sb_b_p?id==69377">Dance of Warrior</a>
<a action="bypass sb_b_p?id==69889">Dance of Mystic</a>
<a action="bypass sb_b_p?id==70145">Dance of Fire</a>
<a action="bypass sb_b_p?id==70401">Dance of Fury</a>
<a action="bypass sb_b_p?id==70657">Dance of Concentration</a>
<a action="bypass sb_b_p?id==93441">Dance of Siren</a>
<a action="bypass sb_b_p?id==79361">Dance of Vampire</a>
<a action="bypass sb_b_p?id==67585">Song of Earth</a>
<a action="bypass sb_b_p?id==77825">Song of Vitality</a>
<a action="bypass sb_b_p?id==68353">Song of Warding</a>
<a action="bypass sb_b_p?id==68609">Song of Wind</a>
<a action="bypass sb_b_p?id==68865">Song of Hunter</a>
<a action="bypass sb_b_p?id==89345">Song of Renewal</a>
<a action="bypass sb_b_p?id==92929">Song of Meditation</a>
<a action="bypass sb_b_p?id==93185">Song of Champion</a>
<br>
<button value="Back" action="link menu_buffer001.htm" width=75 height=21 back="L2UI_ch3.Btn1_normalOn" fore="L2UI_ch3.Btn1_normal">
<br><br>
<img src="L2UI_CH3.onscrmsg_pattern01_1" width=300 height=32 align=left><br>
</center>
</body>
</html>

 

 

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

 

Scheme script guide:

 

//Bypass description:
//sb_b_p?id=SKILL_PCH_ID - buff player
//sb_b_s?id=SKILL_PCH_ID - buff summon
//sb_a_p?id=SKILL_PCH_ID - add buff to player's buff list
//sb_a_s?id=SKILL_PCH_ID - add buff to summon's buff list
//sb_u_p - use player's buff list
//sb_u_s - user summon's buff list
//sb_c_p - clear player's buff list
//sb_c_s - clear summon's buff list
//sb_r_p - recover player's hp/mp/cp
//sb_r_s - recover summon's hp/mp
//sb_d_p - dispel all player's buffs
//sb_d_s - dispel all summon's buffs
//sb_u_mp?name=MACRO_NAME - use macro player
//sb_u_ms?name=MACRO_NAME - use macro summon
//Remote bypasses - can be used in buff coin etc (works without talking with npc)
//sb_r_b_p?id=SKILL_PCH_ID - buff player
//sb_r_b_s?id=SKILL_PCH_ID - buff summon
//sb_r_a_p?id=SKILL_PCH_ID - add buff to player's buff list
//sb_r_a_s?id=SKILL_PCH_ID - add buff to summon's buff list
//sb_r_u_p - use player's buff list
//sb_r_u_s - user summon's buff list
//sb_r_c_p - clear player's buff list
//sb_r_c_s - clear summon's buff list
//sb_r_r_p - recover player's hp/mp/cp
//sb_r_r_s - recover summon's hp/mp
//sb_r_d_p - dispel all player's buffs
//sb_r_d_s - dispel all summon's buffs
//sb_r_u_mp?name=MACRO_NAME - use macro player
//sb_r_u_ms?name=MACRO_NAME - use macro summon
//Setting params description:
//allow_pk - can be used by player killer
//allow_guilty - can be used by flagged player (in pvp mode)
//allow_combat - can be used by player in combat mode
//buff_delay - delay between buffs in miliseconds (used in timer)
//use_delay - flood protection (in ms)
//peacezone_only - if set to 1 players wont be able to use scheme buffer outside peace zone
//allow_cursedweapon - allows cursed weapon owner to use scheme buffer

setting_begin enabled=1    allow_pk=0    allow_guilty=0    allow_combat=0    allow_olympiad=0    allow_cursedweapon=0    use_delay=0    peacezone_only=0    buff_delay=0    low_level_msg=2454    high_level_msg=2455    not_enough_adena_msg=2456    add_to_list_msg=2408    add_to_summon_list_msg=2409    setting_end

//Buff params description:
//pch_id - skill id from skill_pch.txt
//price_id / price_amount - consumed price
//min_level - minimum player level
//max_level - max player level
//abnormal_time - custom buff time
//required_item_id/required_item_amount - not consumed

//s_agit_wind_walk2
buff_begin    pch_id=1111554    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agit_shield3
buff_begin    pch_id=1112067    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agit_might3
buff_begin    pch_id=1112323    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agit_mental_shield4
buff_begin    pch_id=1112580    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agit_bless_the_body6
buff_begin    pch_id=1112838    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agit_bless_the_soul6
buff_begin    pch_id=1113094    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agit_magic_barrier2
buff_begin    pch_id=1113346    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agit_resist_shock4
buff_begin    pch_id=1113604    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agit_concentration6
buff_begin    pch_id=1113862    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agit_berserker_spirit2
buff_begin    pch_id=1114114    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agit_bless_shield6
buff_begin    pch_id=1114374    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agit_vampiric_rage4
buff_begin    pch_id=1114628    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agit_arcane_acumen3
buff_begin    pch_id=1114883    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agit_empower3
buff_begin    pch_id=1115139    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agit_haste2
buff_begin    pch_id=1115394    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agit_guidance3
buff_begin    pch_id=1115651    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agit_focus3
buff_begin    pch_id=1115907    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agit_death_whisper3
buff_begin    pch_id=1116163    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_elemental_protection1
buff_begin    pch_id=346113    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_divine_protection1
buff_begin    pch_id=346369    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_arcane_protection1
buff_begin    pch_id=346625    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_advance_block
buff_begin    pch_id=333827    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_wild_magic2
buff_begin    pch_id=333570    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//s_agility3
buff_begin    pch_id=278275    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    buff_end
//dances
buff_begin    pch_id=69377    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_dance_of_warrior]    buff_end
buff_begin    pch_id=69633    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_dance_of_inspiration]    buff_end
buff_begin    pch_id=69889    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_dance_of_mystic]    buff_end
buff_begin    pch_id=70145    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_dance_of_fire]    buff_end
buff_begin    pch_id=70401    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_dance_of_fury]    buff_end
buff_begin    pch_id=70657    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_dance_of_concentration]    buff_end
buff_begin    pch_id=70913    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_dance_of_light]    buff_end
buff_begin    pch_id=78593    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_dance_of_aqua_guard]    buff_end
buff_begin    pch_id=79105    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_dance_of_earth_guard]    buff_end
buff_begin    pch_id=79361    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_dance_of_vampire]    buff_end
buff_begin    pch_id=79617    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_dance_of_protection]    buff_end
buff_begin    pch_id=93441    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_dance_of_siren1]    buff_end
buff_begin    pch_id=93697    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_dance_of_shadow1]    buff_end
buff_begin    pch_id=93953    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_dance_of_medusa1]    buff_end
//song
buff_begin    pch_id=67585    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_song_of_earth]    buff_end
buff_begin    pch_id=67841    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_song_of_life]    buff_end
buff_begin    pch_id=68097    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_song_of_water]    buff_end
buff_begin    pch_id=68353    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_song_of_warding]    buff_end
buff_begin    pch_id=68609    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_song_of_wind]    buff_end
buff_begin    pch_id=68865    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_song_of_hunter]    buff_end
buff_begin    pch_id=69121    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_song_of_invocation]    buff_end
buff_begin    pch_id=77825    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_song_of_vitality]    buff_end
buff_begin    pch_id=78081    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_song_of_vengeance]    buff_end
buff_begin    pch_id=78337    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_song_of_flame_guard]    buff_end
buff_begin    pch_id=78849    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_song_of_storm_guard]    buff_end
buff_begin    pch_id=89345    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_song_of_renewal1]    buff_end
buff_begin    pch_id=92929    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_song_of_meditation1]    buff_end
buff_begin    pch_id=93185    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_song_of_champion1]    buff_end
buff_begin    pch_id=111873    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_song_of_silence]    buff_end
//OTHERS
buff_begin    pch_id=1202957    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_blessing_of_queen13]        buff_end
buff_begin    pch_id=1203213    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_gift_of_queen13]            buff_end
buff_begin    pch_id=1203725    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_blessing_of_seraphim13]        buff_end
buff_begin    pch_id=1203981    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_gift_of_seraphim13]            buff_end
buff_begin    pch_id=338689    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_blessing_of_noblesse]        buff_end
buff_begin    pch_id=267009    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_holy_weapon1]        buff_end
buff_begin    pch_id=348929    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_chant_of_victory1]            buff_end
buff_begin    pch_id=346881    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_prophecy_of_water1]            buff_end
buff_begin    pch_id=347137    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_prophecy_of_fire1]            buff_end
buff_begin    pch_id=347393    price_id=57    price_amount=0    min_level=1    max_level=80    abnormal_time=3600    name=[s_prophecy_of_wind1]            buff_end

 

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • Hello Everyone  I hope you missed Old nostalgia BNB , is time to come back and be ready for the new journey  L2 BnB C3 Website: https://l2bnb.eu/ Discord: https://discord.gg/jaCJKYXgYZ Max Level 75 Max Grade (A) Safe:3 , Max:16 Anti-Botting. Auto learning skills , Auto Loot , Auto Create Account Subclass (NO) quest. Retail Buffs/DS Time ,Need Buffer Char (NO NPC Buffer) OfflineShop,OfflineCraft,ChangePass No GM Shop,No Global Gk,No Donate,Free Teleport only LVL 1 commands: .offline , .changepassword 99+% Retail 1+1 Window Per Pc BASIC FEATURES: Exp/SP: x 3 Adena: x3 Drop: х3 Spoil: x3 Support 24/7 GLOBAL COMMUNITY
    • 亲爱的朋友们,我们很高兴向您介绍我们的全新服务 —— KYC 实名认证,适用于任何平台!️ 我们为加密货币交易所、在线市场、社交网络、主机服务商、赌场及其他合法网站提供实名认证服务。认证可通过护照或驾驶证完成。不支持任何涉及非法活动的网站。 可用国家: 东欧:俄罗斯、乌克兰、白俄罗斯、乌兹别克斯坦、亚美尼亚、吉尔吉斯斯坦、哈萨克斯坦 — $30–33 欧盟(西欧,通常为拉脱维亚和爱沙尼亚) — $80–88 非洲:尼日利亚、肯尼亚 — $30–33 如果您需要注册并验证您的账户,总金额将额外收取 10% 手续费。 如需申请 KYC 认证或咨询其他问题,请通过以下方式联系我们: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ 邮箱: solomonbog@socnet.store SOCNET 商店有效链接: 数字商品商店(网站):进入 商店 Telegram 机器人:进入 – 通过 Telegram 消息应用便捷访问商店。 Telegram 星星购买机器人:进入 – 快速且优惠地购买 Telegram 星星。 SMM 面板:进入 – 推广您的社交媒体账户。 我们为您准备了最新的促销与特别优惠,用于购买我们的产品与服务: 1. 使用优惠码 OCTOBER2025(8% 折扣)即可在 9 月于我们的商店(网站或机器人)购物享受优惠!首次购买还可使用优惠码 SOCNET(15% 折扣)。 2. 获得 $1 商店余额或 10–20% 折扣 —— 只需在网站注册后按照以下格式留言:"SEND ME BONUS, MY USERNAME IS..." – 在我们的论坛帖中发布即可! 3. 首次试用 SMM 面板可获得 $1 奖励 —— 只需在网站(支持)提交标题为 “Get Trial Bonus” 的工单。 4. 每周在我们的 Telegram 频道及星星购买机器人中举行 Telegram 星星赠送活动! 新闻资讯: ➡ Telegram 频道: https://t.me/accsforyou_shop ➡ WhatsApp 频道: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ➡ Discord 服务器: https://discord.gg/y9AStFFsrh
    • 亲爱的朋友们,我们很高兴向您介绍我们的全新服务 —— KYC 实名认证,适用于任何平台!️ 我们为加密货币交易所、在线市场、社交网络、主机服务商、赌场及其他合法网站提供实名认证服务。认证可通过护照或驾驶证完成。不支持任何涉及非法活动的网站。 可用国家: 东欧:俄罗斯、乌克兰、白俄罗斯、乌兹别克斯坦、亚美尼亚、吉尔吉斯斯坦、哈萨克斯坦 — $30–33 欧盟(西欧,通常为拉脱维亚和爱沙尼亚) — $80–88 非洲:尼日利亚、肯尼亚 — $30–33 如果您需要注册并验证您的账户,总金额将额外收取 10% 手续费。 如需申请 KYC 认证或咨询其他问题,请通过以下方式联系我们: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ 邮箱: solomonbog@socnet.store SOCNET 商店有效链接: 数字商品商店(网站):进入 商店 Telegram 机器人:进入 – 通过 Telegram 消息应用便捷访问商店。 Telegram 星星购买机器人:进入 – 快速且优惠地购买 Telegram 星星。 SMM 面板:进入 – 推广您的社交媒体账户。 我们为您准备了最新的促销与特别优惠,用于购买我们的产品与服务: 1. 使用优惠码 OCTOBER2025(8% 折扣)即可在 9 月于我们的商店(网站或机器人)购物享受优惠!首次购买还可使用优惠码 SOCNET(15% 折扣)。 2. 获得 $1 商店余额或 10–20% 折扣 —— 只需在网站注册后按照以下格式留言:"SEND ME BONUS, MY USERNAME IS..." – 在我们的论坛帖中发布即可! 3. 首次试用 SMM 面板可获得 $1 奖励 —— 只需在网站(支持)提交标题为 “Get Trial Bonus” 的工单。 4. 每周在我们的 Telegram 频道及星星购买机器人中举行 Telegram 星星赠送活动! 新闻资讯: ➡ Telegram 频道: https://t.me/accsforyou_shop ➡ WhatsApp 频道: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ➡ Discord 服务器: https://discord.gg/y9AStFFsrh
    • 亲爱的朋友们,我们很高兴向您介绍我们的全新服务 —— KYC 实名认证,适用于任何平台!️ 我们为加密货币交易所、在线市场、社交网络、主机服务商、赌场及其他合法网站提供实名认证服务。认证可通过护照或驾驶证完成。不支持任何涉及非法活动的网站。 可用国家: 东欧:俄罗斯、乌克兰、白俄罗斯、乌兹别克斯坦、亚美尼亚、吉尔吉斯斯坦、哈萨克斯坦 — $30–33 欧盟(西欧,通常为拉脱维亚和爱沙尼亚) — $80–88 非洲:尼日利亚、肯尼亚 — $30–33 如果您需要注册并验证您的账户,总金额将额外收取 10% 手续费。 如需申请 KYC 认证或咨询其他问题,请通过以下方式联系我们: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ 邮箱: solomonbog@socnet.store SOCNET 商店有效链接: 数字商品商店(网站):进入 商店 Telegram 机器人:进入 – 通过 Telegram 消息应用便捷访问商店。 Telegram 星星购买机器人:进入 – 快速且优惠地购买 Telegram 星星。 SMM 面板:进入 – 推广您的社交媒体账户。 我们为您准备了最新的促销与特别优惠,用于购买我们的产品与服务: 1. 使用优惠码 OCTOBER2025(8% 折扣)即可在 9 月于我们的商店(网站或机器人)购物享受优惠!首次购买还可使用优惠码 SOCNET(15% 折扣)。 2. 获得 $1 商店余额或 10–20% 折扣 —— 只需在网站注册后按照以下格式留言:"SEND ME BONUS, MY USERNAME IS..." – 在我们的论坛帖中发布即可! 3. 首次试用 SMM 面板可获得 $1 奖励 —— 只需在网站(支持)提交标题为 “Get Trial Bonus” 的工单。 4. 每周在我们的 Telegram 频道及星星购买机器人中举行 Telegram 星星赠送活动! 新闻资讯: ➡ Telegram 频道: https://t.me/accsforyou_shop ➡ WhatsApp 频道: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ➡ Discord 服务器: https://discord.gg/y9AStFFsrh
  • 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