-
Posts
-
- New Features in Anosim https://anosim.net - You can now share your numbers with others via a unique link - no need to give them access to your account! How to Share Number https://prnt.sc/K83lxOjS-Fyb How to Revoke Accsess: https://prnt.sc/jkVIQS2lhxvA --- --- --- --- --- --- --- New OTP / SMS Activation Locations: - USA - Australia - Honduras - Kenia
-
How to Create Multi-Accounts For TikTok, Youtube, Gmail.... Short Guide to Managing Multiple TikTok Accounts TikTok's anti-spam systems detect duplicate accounts via device IDs, IP addresses, and behavior. To avoid bans, follow these methods. 1. For 3-5 Accounts (Easiest) Use TikTok's built-in feature to add accounts in your app settings. Limitation: Frequent switching on the same device/IP can still trigger restrictions. 2. For Bulk Accounts (Safest) To make each account appear unique, you need to mask your digital footprint. Unique Emails & Proxies: Use a separate email and a residential/mobile proxy (e.g., MoMoProxy) for each account. Avoid free proxies. Anti-Detect Browsers: Use tools like AdsPower or Multilogin to create unique browser profiles, each with its own proxy and randomized digital fingerprint. MoMoProxy Integrate with Adspower Browser Process: In each unique browser profile, log into a separate Gmail and then create the TikTok account. 3. For One Device (Limited Use) Use app cloners like Parallel Space (Android) or Dual Space (iOS). Limitation: Not foolproof, as TikTok can sometimes detect cloned apps. Key Best Practices to Avoid Bans: Isolation: Use one proxy and one device/browser profile per account. Warm-Up: Act organically—watch videos, like, and comment—before posting content. Appear Unique: Use different usernames, bios, and profile pictures for each account. Avoid VPNs: Standard VPN IPs are often detected and flagged. Youtube Video On How to Create TikTok Accounts https://youtu.be/ZUihXj7BO4M
-
How to Create Multi-Accounts For TikTok, Youtube, Gmail.... Short Guide to Managing Multiple TikTok Accounts TikTok's anti-spam systems detect duplicate accounts via device IDs, IP addresses, and behavior. To avoid bans, follow these methods. 1. For 3-5 Accounts (Easiest) Use TikTok's built-in feature to add accounts in your app settings. Limitation: Frequent switching on the same device/IP can still trigger restrictions. 2. For Bulk Accounts (Safest) To make each account appear unique, you need to mask your digital footprint. Unique Emails & Proxies: Use a separate email and a residential/mobile proxy (e.g., MoMoProxy) for each account. Avoid free proxies. Anti-Detect Browsers: Use tools like AdsPower or Multilogin to create unique browser profiles, each with its own proxy and randomized digital fingerprint. MoMoProxy Integrate with Adspower Browser Process: In each unique browser profile, log into a separate Gmail and then create the TikTok account. 3. For One Device (Limited Use) Use app cloners like Parallel Space (Android) or Dual Space (iOS). Limitation: Not foolproof, as TikTok can sometimes detect cloned apps. Key Best Practices to Avoid Bans: Isolation: Use one proxy and one device/browser profile per account. Warm-Up: Act organically—watch videos, like, and comment—before posting content. Appear Unique: Use different usernames, bios, and profile pictures for each account. Avoid VPNs: Standard VPN IPs are often detected and flagged. Youtube Video On How to Create TikTok Accounts https://youtu.be/ZUihXj7BO4M
-
If you created it yourself for the first races just duplicate it in the same way for the other races (that is make the animations for the other races as well) and everything will work
-
OpenCV bot working for all l2 clients... but need special set for each server
-
-
Topics

Question
martuxas1
Hello, i like always with request help, i added Phoenix engine on l2jfrozen 1118rev, all good without errors, but when i spawn npc on click i get -> i have nothing to say to you
In previous l2jfrozens revs it's working. what can be bad?
it's database custom_npc
50001 31822 Event Manager 1 qqq 1 LineageMonster5.br_wooldie 10 16 80 male L2EventManager 40 20000000 40 8.5 3 40 43 30 21 20 20 0 0 8 40 5 30 253 0 333 0 0 0 25 120 Null 0 0 0 LAST_HIT
it's L2EventManagerInstance.java ->
package com.l2jfrozen.gameserver.model.actor.instance;
import com.l2jfrozen.gameserver.templates.L2NpcTemplate;
import com.l2jfrozen.gameserver.event.EventManager;
import javolution.text.TextBuilder;
import com.l2jfrozen.gameserver.network.serverpackets.NpcHtmlMessage;
public class L2EventManagerInstance extends L2FolkInstance
{
private int objectId;
public L2EventManagerInstance(int objectId, L2NpcTemplate template)
{
super(objectId, template);
this.objectId = objectId;
}
@Override
public void onBypassFeedback(L2PcInstance player, String command)
{
if (command.startsWith("reg"))
{
EventManager.getInstance().registerPlayer(player);
}
if (command.startsWith("unreg"))
{
EventManager.getInstance().unregisterPlayer(player);
}
if (command.startsWith("list"))
{
NpcHtmlMessage html = new NpcHtmlMessage(getObjectId());
TextBuilder sb = new TextBuilder();
sb.append("<html><body><center>Select an event to vote for it:<br>");
int i = 0;
for(String name: EventManager.getInstance().getEventNames())
{
i++;
sb.append (" <a action=\"bypass -h npc_"+objectId+"_"+i+"\">- "+name+" -</a> <br>");
}
sb.append("</center></body></html>
1 answer to this question
Recommended Posts