Jump to content

Question

Posted (edited)

First of all: if you don't want to help or if u would say: You can get it from me for money... then don't write anything and lock the topic immediately. I want to see if SOMEBODY  ( doesnt have to ) it's his free will, to help me with this....I don't want any drama.....
 
 
 
 
 
I am actually having a problem that i can't solve xD..... i wanna transforom 1 code into another but i am not successing it......it's about kamaels.... i created a npc with quest items for 1st class and 2 nd class, that ppl can buy it and use it.... so they can skip doing class quests ......... when other chars buy it and use it it works fine, but when kamaels do it they can't get the class, because they HAVE TO do the quest, the code requires that from them..... here is the code of the dwarf  and it success taking a item without completed quest ... I want to make some version of code for kamael .....  ( the code is under )
 
 

/*

 * Copyright © 2004-2016 L2J DataPack

 * 

 * This file is part of L2J DataPack.

 * 

 * L2J DataPack is free software: you can redistribute it and/or modify

 * it under the terms of the GNU General Public License as published by

 * the Free Software Foundation, either version 3 of the License, or

 * (at your option) any later version.

 * 

 * L2J DataPack is distributed in the hope that it will be useful,

 * but WITHOUT ANY WARRANTY; without even the implied warranty of

 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU

 * General Public License for more details.

 * 

 * You should have received a copy of the GNU General Public License

 * along with this program. If not, see <http://www.gnu.org/licenses/>.

 */

package village_master.DwarfWarehouseChange1;

 

import ai.npc.AbstractNpcAI;

 

import com.l2jserver.gameserver.enums.CategoryType;

import com.l2jserver.gameserver.model.actor.L2Npc;

import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;

import com.l2jserver.gameserver.model.base.ClassId;

 

/**

 * Dwarf class transfer AI.

 * @author Adry_85

 */

public final class DwarfWarehouseChange1 extends AbstractNpcAI

{

// NPCs

private static int[] NPCS =

{

30498, // Moke

30503, // Rikadio

30594, // Ranspo

32092, // Alder

};

 

// Items

private static final int SHADOW_ITEM_EXCHANGE_COUPON_D_GRADE = 8869;

private static final int RING_OF_RAVEN = 1642;

// Class

private static final int SCAVENGER = 54;

 

private DwarfWarehouseChange1()

{

super(DwarfWarehouseChange1.class.getSimpleName(), "village_master");

addStartNpc(NPCS);

addTalkId(NPCS);

}

 

@Override

public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)

{

String htmltext = null;

switch (event)

{

case "30498-01.htm": // warehouse_chief_moke003f

case "30498-02.htm": // warehouse_chief_moke006fa

case "30498-03.htm": // warehouse_chief_moke007fa

case "30498-04.htm": // warehouse_chief_moke006fb

case "30503-01.htm": // warehouse_chief_rikadio003f

case "30503-02.htm": // warehouse_chief_rikadio006fa

case "30503-03.htm": // warehouse_chief_rikadio007fa

case "30503-04.htm": // warehouse_chief_rikadio006fb

case "30594-01.htm": // warehouse_chief_ranspo003f

case "30594-02.htm": // warehouse_chief_ranspo006fa

case "30594-03.htm": // warehouse_chief_ranspo007fa

case "30594-04.htm": // warehouse_chief_ranspo006fb

case "32092-01.htm": // warehouse_chief_older003f

case "32092-02.htm": // warehouse_chief_older006fa

case "32092-03.htm": // warehouse_chief_older007fa

case "32092-04.htm": // warehouse_chief_older006fb

{

htmltext = event;

break;

}

case "54":

{

htmltext = ClassChangeRequested(player, npc, Integer.valueOf(event));

break;

}

}

return htmltext;

}

 

private String ClassChangeRequested(L2PcInstance player, L2Npc npc, int classId)

{

String htmltext = null;

if (player.isInCategory(CategoryType.SECOND_CLASS_GROUP))

{

htmltext = npc.getId() + "-06.htm"; // fnYouAreSecondClass

}

else if (player.isInCategory(CategoryType.THIRD_CLASS_GROUP))

{

htmltext = npc.getId() + "-07.htm"; // fnYouAreThirdClass

}

else if (player.isInCategory(CategoryType.FOURTH_CLASS_GROUP))

{

htmltext = "30498-12.htm"; // fnYouAreFourthClass

}

else if ((classId == SCAVENGER) && (player.getClassId() == ClassId.dwarvenFighter))

{

if (player.getLevel() < 20)

{

if (hasQuestItems(player, RING_OF_RAVEN))

{

htmltext = npc.getId() + "-08.htm"; // fnLowLevel11

}

else

{

htmltext = npc.getId() + "-09.htm"; // fnLowLevelNoProof11

}

}

else if (hasQuestItems(player, RING_OF_RAVEN))

{

takeItems(player, RING_OF_RAVEN, -1);

player.setClassId(SCAVENGER);

player.setBaseClass(SCAVENGER);

// SystemMessage and cast skill is done by setClassId

player.broadcastUserInfo();

giveItems(player, SHADOW_ITEM_EXCHANGE_COUPON_D_GRADE, 15);

htmltext = npc.getId() + "-10.htm"; // fnAfterClassChange11

}

else

{

htmltext = npc.getId() + "-11.htm"; // fnNoProof11

}

}

return htmltext;

}

 

@Override

public String onTalk(L2Npc npc, L2PcInstance player)

{

String htmltext = null;

if (player.isInCategory(CategoryType.BOUNTY_HUNTER_GROUP))

{

htmltext = npc.getId() + "-01.htm"; // fnClassList1

}

else

{

htmltext = npc.getId() + "-05.htm"; // fnClassMismatch

}

return htmltext;

}

 

public static void main(String[] args)

{

new DwarfWarehouseChange1();

}

}

 
 
 
_____________________________________________________________________________________________________________________________________________________
 
 
and then here is the Kamael code that doesn't work, I  wanna make it that it doesn't require to take make the quest..... i want to make it ifplayerhasitems to take them and give him the class by it's id.....not that he ' has to do ' the quest.....  :( .... heres the code of stupid kamael....
 
 
 
 

/*
 * Copyright © 2004-2016 L2J DataPack
 * 
 * This file is part of L2J DataPack.
 * 
 * L2J DataPack is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * L2J DataPack is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */
package village_master.KamaelChange1;
 
import quests.Q00062_PathOfTheTrooper.Q00062_PathOfTheTrooper;
import quests.Q00063_PathOfTheWarder.Q00063_PathOfTheWarder;
import ai.npc.AbstractNpcAI;
 
import com.l2jserver.gameserver.data.xml.impl.CategoryData;
import com.l2jserver.gameserver.enums.CategoryType;
import com.l2jserver.gameserver.enums.Race;
import com.l2jserver.gameserver.model.actor.L2Npc;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.model.base.ClassId;
import com.l2jserver.gameserver.model.quest.QuestState;
 
/**
 * Kamael class transfer AI.
 * @author Adry_85
 */
public final class KamaelChange1 extends AbstractNpcAI
{
// NPCs
private static int[] NPCS =
{
32191, // Hanarin
32193, // Yeniche
32196, // Gershwin
32199, // Holst
32202, // Khadava
};
 
// Items
private static final int SHADOW_ITEM_EXCHANGE_COUPON_D_GRADE = 8869;
private static final int GWAINS_RECOMMENDATION = 9753;
private static final int STEELRAZOR_EVALUATION = 9772;
 
private KamaelChange1()
{
super(KamaelChange1.class.getSimpleName(), "village_master");
addStartNpc(NPCS);
addTalkId(NPCS);
}
 
@Override
public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
{
String htmltext = null;
switch (event)
{
case "32191-02.htm": // master_all_kamael003m
case "32191-03.htm": // master_all_kamael006ma
case "32191-04.htm": // master_all_kamael007ma
case "32191-05.htm": // master_all_kamael007mait
case "32191-06.htm": // master_all_kamael003f
case "32191-07.htm": // master_all_kamael006fa
case "32191-08.htm": // master_all_kamael007fa
case "32191-09.htm": // master_all_kamael007fa
{
htmltext = event;
break;
}
case "125":
case "126":
{
htmltext = ClassChangeRequested(player, Integer.valueOf(event));
break;
}
}
return htmltext;
}
 
private String ClassChangeRequested(L2PcInstance player, int classId)
{
String htmltext = null;
if (CategoryData.getInstance().isInCategory(CategoryType.KAMAEL_SECOND_CLASS_GROUP, classId))
{
if (player.isInCategory(CategoryType.KAMAEL_SECOND_CLASS_GROUP))
{
htmltext = "32191-10.htm"; // master_all_kamael004a
}
else if (player.isInCategory(CategoryType.KAMAEL_THIRD_CLASS_GROUP))
{
htmltext = "32191-11.htm"; // master_all_kamael005a
}
else if (player.isInCategory(CategoryType.KAMAEL_FOURTH_CLASS_GROUP))
{
htmltext = "32191-12.htm"; // master_all_kamael100a
}
else if ((classId == 125) && (player.getClassId() == ClassId.maleSoldier))
{
QuestState qs = player.getQuestState(Q00062_PathOfTheTrooper.class.getSimpleName());
if (player.getLevel() < 20)
{
if ((qs != null) && qs.isCompleted())
{
htmltext = "32191-13.htm"; // master_all_kamael009ma
}
else
{
htmltext = "32191-14.htm"; // master_all_kamael008ma
}
}
else if ((qs == null) || !qs.isCompleted())
{
htmltext = "32191-15.htm"; // master_all_kamael010ma
}
else
{
takeItems(player, GWAINS_RECOMMENDATION, -1);
player.setClassId(125);
player.setBaseClass(125);
// SystemMessage and cast skill is done by setClassId
player.broadcastUserInfo();
giveItems(player, SHADOW_ITEM_EXCHANGE_COUPON_D_GRADE, 15);
htmltext = "32191-16.htm"; // master_all_kamael011ma
}
}
else if ((classId == 126) && (player.getClassId() == ClassId.femaleSoldier))
{
QuestState qs = player.getQuestState(Q00063_PathOfTheWarder.class.getSimpleName());
if (player.getLevel() < 20)
{
if ((qs != null) && qs.isCompleted())
{
htmltext = "32191-17.htm"; // master_all_kamael008fa
}
else
{
htmltext = "32191-18.htm"; // master_all_kamael009fa
}
}
else if ((qs == null) || !qs.isCompleted())
{
htmltext = "32191-19.htm"; // master_all_kamael010fa
}
else
{
takeItems(player, STEELRAZOR_EVALUATION, -1);
player.setClassId(126);
player.setBaseClass(126);
// SystemMessage and cast skill is done by setClassId
player.broadcastUserInfo();
giveItems(player, SHADOW_ITEM_EXCHANGE_COUPON_D_GRADE, 15);
htmltext = "32191-20.htm"; // master_all_kamael011fa
}
}
}
return htmltext;
}
 
@Override
public String onTalk(L2Npc npc, L2PcInstance player)
{
String htmltext = null;
if (player.getRace() != Race.KAMAEL)
{
htmltext = "32191-01.htm"; // master_all_kamael002a
}
else if (player.isInCategory(CategoryType.KAMAEL_FIRST_CLASS_GROUP))
{
if (player.getClassId() == ClassId.maleSoldier)
{
htmltext = "32191-02.htm"; // master_all_kamael003m
}
else if (player.getClassId() == ClassId.femaleSoldier)
{
htmltext = "32191-06.htm"; // master_all_kamael003f
}
}
else if (player.isInCategory(CategoryType.KAMAEL_SECOND_CLASS_GROUP))
{
htmltext = "32191-10.htm"; // master_all_kamael004a
}
else if (player.isInCategory(CategoryType.KAMAEL_THIRD_CLASS_GROUP))
{
htmltext = "32191-11.htm"; // master_all_kamael005a
}
else
{
htmltext = "32191-12.htm"; // master_all_kamael100a
}
return htmltext;
}
 
public static void main(String[] args)
{
new KamaelChange1();
}
}

 

 
 
 
 
 
Thanks in advance. Keep in mind i don't want any drama....
 If you want to help then help, if you don't want to help, ignore or lock the topic/delete... whatever..... thanks........
 
 
P.S. I am sorry, i am just tired of this kind of comments.... why to make it when you can simply avoid it.... 

 

Edited by Celestine

5 answers to this question

Recommended Posts

  • 0
Posted

Wrong section.. You should post it here. I will ask for move.

 

Edit your topic and add

 (without space) or use pastebin.com for your code to be more readable... 

 

 

  • 0
Posted

Wrong section.. You should post it here. I will ask for move.

 

Edit your topic and add

 (without space) or use pastebin.com for your code to be more readable... 

 

Done + edited the topic.

  • 0
Posted
		else if ((classId == 125) && (player.getClassId() == ClassId.maleSoldier))
		{
-			QuestState qs = player.getQuestState(Q00062_PathOfTheTrooper.class.getSimpleName());
-			if (player.getLevel() < 20)
-			{
-				if ((qs != null) && qs.isCompleted())
-				{
-					htmltext = "32191-13.htm"; // master_all_kamael009ma
-				}
-				else
-				{
-					htmltext = "32191-14.htm"; // master_all_kamael008ma
-				}
-			}
-			else if ((qs == null) || !qs.isCompleted())
-			{
-				htmltext = "32191-15.htm"; // master_all_kamael010ma
-			}
-			else
-			{
				takeItems(player, GWAINS_RECOMMENDATION, -1);
				player.setClassId(125);
				player.setBaseClass(125);
				// SystemMessage and cast skill is done by setClassId
				player.broadcastUserInfo();
				giveItems(player, SHADOW_ITEM_EXCHANGE_COUPON_D_GRADE, 15);
				htmltext = "32191-16.htm"; // master_all_kamael011ma
-			}
		}
		else if ((classId == 126) && (player.getClassId() == ClassId.femaleSoldier))
		{
-			QuestState qs = player.getQuestState(Q00063_PathOfTheWarder.class.getSimpleName());
-			if (player.getLevel() < 20)
-			{
-				if ((qs != null) && qs.isCompleted())
-				{
-					htmltext = "32191-17.htm"; // master_all_kamael008fa
-				}
-				else
-				{
-				htmltext = "32191-18.htm"; // master_all_kamael009fa
-				}
-			}
-			else if ((qs == null) || !qs.isCompleted())
-			{
-				htmltext = "32191-19.htm"; // master_all_kamael010fa
-			}
-			else
-			{
				takeItems(player, STEELRAZOR_EVALUATION, -1);
				player.setClassId(126);
				player.setBaseClass(126);
				// SystemMessage and cast skill is done by setClassId
				player.broadcastUserInfo();
				giveItems(player, SHADOW_ITEM_EXCHANGE_COUPON_D_GRADE, 15);
				htmltext = "32191-20.htm"; // master_all_kamael011fa
-			}
		}

try this one

  • 0
Posted (edited)

can i use  if ((qs != null) && qs.isCompleted]())  and then  takeItems(player, STEELRAZOR_EVALUATION -1);

                player.setClassId(126);

               player.setBaseClass(126);

                // SystemMessage and cast skill is done by setClassId

               player.broadcastUserInfo();

                giveItems(player, SHADOW_ITEM_EXCHANGE_COUPON_D_GRADE, 15);

            }

        }

Edited by milosvamp
Guest
This topic is now closed to further replies.


  • Posts

    • 我们商店的新产品: ➡Telegram 乌克兰 +380 | 未使用过 | 清洁账户 | TDATA | 无垃圾邮件封锁 | 包含 2FA | 年龄: 从 3 天起 | 价格从 $3.2 起 ➡Facebook 老账号 2020–2023 | 地区: EU+ASIA | 年龄: 2020–2023 | 资料填充真实好友: 50+ | 包含邮箱 + 2FA | 真实账号 | 价格从 $4.5 起 ➡SORA 2 | 为您的账号或现成 ChatGPT 账号提供邀请代码 + Sora 2(请阅读产品说明)| 价格从 $2 起 ➡Instagram 真正的老账号 (2010–2013) 带/不带 2FA 访问 | 国家: 混合 | 包含 Submail | 价格从 $4 起 ➡Reddit 用于 ONLYFANS 的 Karma 老账号 | 1,000–10,000 KARMA(可选择)| 混合 IP 注册 | 高质量账号,适合 ONLYFANS 工作者 | 价格从 $4 起 ➡Mail.tm (临时邮箱) 自动注册账号 | 混合 IP 和混合性别 | 支持 IMAP、POP3、SMTP | 价格从 $0.005 起 ➡ShadowSocks、VLESS、Trojan VPN 客户端 | 可选择任何国家 | 支持所有设备和国家(包括俄罗斯!) | 有效期: 30/90/180/360 天 | 价格从 $3 起 ➡TIKTOK ADS 已验证账号 | 地区: 亚洲/美国/欧洲、非洲、阿拉伯国家、南美 | 亚洲/美国/欧洲公司认证 + POSTPAY | 完全访问 | 价格从 $20 起 ➡TIKTOK ADS 账号 | 地区: 欧洲 + 澳大利亚(可选) | 商业认证 + POSTPAY + $6000 优惠券 | 手动注册 | 邮箱访问 + Cookies + VAT 信息 | 价格从 $6 起 ➡Telegram API/HASH 美国 +1 自动注册 1+ 月龄 TDATA + SESSION + JSON + 2FA + API/HASH ID | 价格从 $0.95 起 ➡KYC 商业验证服务 | 适用于任何服务 | 可用地区: 欧洲、美国、亚洲公司 | 价格从 $300 起 ➡Telegram 美国/加拿大 +1 带 ACTIVE PREMIUM 到 2025.12.01 自动注册 | 年龄: 6+ 月 | TDATA + SESSION + JSON + 2FA + PREMIUM | 价格从 $0.65 起 ➡Telegram 美国/加拿大 +1 带 ACTIVE PREMIUM(30 天)自动注册 | 年龄: 6+ 月 | TDATA + SESSION + JSON + 2FA + PREMIUM 30 天 | 价格从 $5 起 可在我们网站商店或通过 Telegram 机器人购买! 有效链接: 数字商品商店 (网站): 前往 商店 Telegram 机器人: 前往 – 通过 Telegram 便捷访问商店。 其他服务: 虚拟号码服务: 前往 购买 Telegram Stars 的机器人: 前往 – 在 Telegram 中快速且有利地购买 Stars。 SMM 面板: 前往 – 推广您的社交媒体账号。 我们想向您展示当前购买我们服务产品和服务的 促销和特惠 列表: 1. 首次购买可使用促销代码: SOCNET (15% 折扣) 2. 在商店余额获得 $1 或 10–20% 折扣 — 注册后发送用户名,模板: "SEND ME BONUS, MY USERNAME IS..." — 请在我们的论坛帖子中填写! 3. SMM 面板首次试用可获得 $1 — 在我们网站(支持)创建主题为 “Get Trial Bonus” 的工单。 4. 每周在 Telegram 频道及 Stars 购买机器人中赠送 Telegram Stars! 新闻: ➡ Telegram 频道: https://t.me/accsforyou_shop ➡ WhatsApp 频道: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ➡ Discord 服务器: https://discord.gg/y9AStFFsrh 联系方式和支持: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ 邮箱: solomonbog@socnet.store
    • New products in our store: ➡Telegram Ukraine +380 | NO USED BEFORE | CLEAR ACCOUNTS | TDATA | No Spam Block | 2FA included | Age: from 3 days | Price from $3.2 ➡Facebook OLD Account 2020–2023 | Geo: EU+ASIA | Age: 2020–2023 | Profile filled with real friends: 50+ | Email Included + 2FA included | Real accounts | Price from $4.5 ➡SORA 2 | Invite code for YOUR account or a READY ChatGPT account + Sora 2 (read the product description) | Price from $2 ➡Instagram REALLY OLD accounts (2010–2013) with/without 2FA access | Country: MIX | Submail included | Price from $4 ➡Reddit FOR ONLYFANS Karma OLD Accounts | 1,000–10,000 KARMA (your choice) | MIX IP Registered | High-Quality Accounts for ONLYFANS WORKERS | Price from $4 ➡Mail.tm (temporary mails) AutoReg Account | Mixed IPs and Mixed Gender | IMAP, POP3, and SMTP Enabled | Price from $0.005 ➡ShadowSocks, VLESS, Trojan VPN Client | Any Country of Your Choice | Works on All Devices and in Any Country (Including Russia!) | Duration: 30/90/180/360 days | Price from $3 ➡TIKTOK ADS VERIFIED ACCOUNTS | GEO: ASIA/USA/EUROPE, AFRICA, ARABIC COUNTRIES, SOUTH AMERICA | Business Verified On ASIA/USA/EUROPE Company + POSTPAY | FULL ACCESS | Price from: $20 ➡TIKTOK ADS ACCOUNTS | GEO: Europe + Australia (your choice) | Business Verified + POSTPAY + BONUS COUPON for $6000 | Manual Registration | Email access + Cookies + VAT Info | Price from: $6 ➡Telegram API/HASH USA +1 Autoreg 1+ month age TDATA + SESSION + JSON + 2FA + API/HASH ID | Price from: $0.95 ➡KYC Business Verification Services | Verification for any service | Available geo: EUROPE, USA, ASIA Companies | Price from $300 ➡Telegram USA/Canada +1 with ACTIVE PREMIUM UP TO 01.12.2025 Autoreg | Age: from 6+ months | TDATA + SESSION + JSON + 2FA + PREMIUM | Price from $0.65 ➡Telegram USA/Canada +1 with ACTIVE PREMIUM (30 DAYS) Autoreg | Age: from 6+ months | TDATA + SESSION + JSON + 2FA + PREMIUM for 30 DAYS | Price from $5 Available for purchase in our store on the website or via the Telegram bot! Active links: Digital goods store (Website): Go to Store Telegram bot: Go to – convenient access to the store through the Telegram messenger. Other services: Virtual numbers service: Go to Telegram bot for purchasing Telegram Stars: Go to – fast and profitable purchase of Stars in Telegram. SMM Panel: Go to – promotion of your social media accounts. We want to present you the current list of promotions and special offers for purchasing our service’s products and services: 1. You can use a promo code for your first purchase: SOCNET (15% discount) 2. Get $1 on your store balance or a 10–20% discount — simply send your username after registering on our website using the following template: "SEND ME BONUS, MY USERNAME IS..." — you need to write this in our forum thread! 3. Get $1 for the first trial start of the SMM Panel: just open a ticket with the subject “Get Trial Bonus” on our website (Support). 4. Weekly Telegram Stars giveaways in our Telegram channel and in our bot for purchasing stars! News: ➡ Telegram channel: https://t.me/accsforyou_shop ➡ WhatsApp channel: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ➡ Discord server: https://discord.gg/y9AStFFsrh Contacts and Support: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ Email: solomonbog@socnet.store
    • New products in our store: ➡Telegram Ukraine +380 | NO USED BEFORE | CLEAR ACCOUNTS | TDATA | No Spam Block | 2FA included | Age: from 3 days | Price from $3.2 ➡Facebook OLD Account 2020–2023 | Geo: EU+ASIA | Age: 2020–2023 | Profile filled with real friends: 50+ | Email Included + 2FA included | Real accounts | Price from $4.5 ➡SORA 2 | Invite code for YOUR account or a READY ChatGPT account + Sora 2 (read the product description) | Price from $2 ➡Instagram REALLY OLD accounts (2010–2013) with/without 2FA access | Country: MIX | Submail included | Price from $4 ➡Reddit FOR ONLYFANS Karma OLD Accounts | 1,000–10,000 KARMA (your choice) | MIX IP Registered | High-Quality Accounts for ONLYFANS WORKERS | Price from $4 ➡Mail.tm (temporary mails) AutoReg Account | Mixed IPs and Mixed Gender | IMAP, POP3, and SMTP Enabled | Price from $0.005 ➡ShadowSocks, VLESS, Trojan VPN Client | Any Country of Your Choice | Works on All Devices and in Any Country (Including Russia!) | Duration: 30/90/180/360 days | Price from $3 ➡TIKTOK ADS VERIFIED ACCOUNTS | GEO: ASIA/USA/EUROPE, AFRICA, ARABIC COUNTRIES, SOUTH AMERICA | Business Verified On ASIA/USA/EUROPE Company + POSTPAY | FULL ACCESS | Price from: $20 ➡TIKTOK ADS ACCOUNTS | GEO: Europe + Australia (your choice) | Business Verified + POSTPAY + BONUS COUPON for $6000 | Manual Registration | Email access + Cookies + VAT Info | Price from: $6 ➡Telegram API/HASH USA +1 Autoreg 1+ month age TDATA + SESSION + JSON + 2FA + API/HASH ID | Price from: $0.95 ➡KYC Business Verification Services | Verification for any service | Available geo: EUROPE, USA, ASIA Companies | Price from $300 ➡Telegram USA/Canada +1 with ACTIVE PREMIUM UP TO 01.12.2025 Autoreg | Age: from 6+ months | TDATA + SESSION + JSON + 2FA + PREMIUM | Price from $0.65 ➡Telegram USA/Canada +1 with ACTIVE PREMIUM (30 DAYS) Autoreg | Age: from 6+ months | TDATA + SESSION + JSON + 2FA + PREMIUM for 30 DAYS | Price from $5 Available for purchase in our store on the website or via the Telegram bot! Active links: Digital goods store (Website): Go to Store Telegram bot: Go to – convenient access to the store through the Telegram messenger. Other services: Virtual numbers service: Go to Telegram bot for purchasing Telegram Stars: Go to – fast and profitable purchase of Stars in Telegram. SMM Panel: Go to – promotion of your social media accounts. We want to present you the current list of promotions and special offers for purchasing our service’s products and services: 1. You can use a promo code for your first purchase: SOCNET (15% discount) 2. Get $1 on your store balance or a 10–20% discount — simply send your username after registering on our website using the following template: "SEND ME BONUS, MY USERNAME IS..." — you need to write this in our forum thread! 3. Get $1 for the first trial start of the SMM Panel: just open a ticket with the subject “Get Trial Bonus” on our website (Support). 4. Weekly Telegram Stars giveaways in our Telegram channel and in our bot for purchasing stars! News: ➡ Telegram channel: https://t.me/accsforyou_shop ➡ WhatsApp channel: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ➡ Discord server: https://discord.gg/y9AStFFsrh Contacts and Support: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ Email: solomonbog@socnet.store
  • 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