Hi,
I’m reporting @nuturazvan for attempting to scam me out of 70€.
Last week, he contacted me on Discord saying he was looking for a control panel. I initially offered NimeraCP, but after I told him the price, he said he couldn’t afford it.
I then told him I could develop a custom control panel within his budget. After discussing the details, we agreed on the following:
Control / Donate Panel includes:
Donate page
Account registration page
Login page
Password reset page
Stripe integration
Agreed price: 70€
Deal date: December 3, 2025
I finished developing the panel on December 6, 2025, but I have not delivered it yet. The code is complete and currently sitting in a private GitHub repository, waiting for payment.
As of December 14, 2025, I still haven’t received any payment. I’ve asked him multiple times when I can expect it, and he keeps making excuses, saying a friend owes him money and that he’s waiting to get paid first.
If you don’t have the money, you shouldn’t be ordering work. I take responsibility for starting the work without upfront payment, but that doesn’t excuse repeatedly delaying payment.
Posting this as a warning to others.
Question
koksas
My friend preconfigured this unknow packet script, and it works, but have one problem with one packet, when gs drop this packet (only this):
Unknown Packet: d on State: IN_GAME Client: [Character: pow - Account: gadas000
- IP: 91.187.181.123]
0000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................
0010: 00 00
And i get 48-thread pool error...
Server momentaly down. Other packets will working and protecting, with other packet 2 floods and you get dc...
Please say me how i can fix it, and what need to change in this script, or what need to add. ;(
My UnknowPacket protection script (witch preconfigured): --->
private void printDebug(int opcode, ByteBuffer buf, GameClientState state, L2GameClient client)
{
int size = buf.remaining();
_log.warning("Unknown Packet: "+Integer.toHexString(opcode)+" on State: "+state.name()+" Client: "+client.toString());
byte[] array = new byte;
buf.get(array);
_log.warning(Util.printData(array, size));
if (client.activeChar == null)
return;
if (!FloodProtector.getInstance().tryPerformAction(client.activeChar.getObjectId(), FloodProtector.PROTECTED_UNKNOWNPACKET))
{
client.activeChar.logout();
return;
}
}
private void printDebugDoubleOpcode(int opcode, int id2, ByteBuffer buf, GameClientState state, L2GameClient client)
{
int size = buf.remaining();
_log.warning("Unknown Packet: "+Integer.toHexString(opcode)+":" + Integer.toHexString(id2)+" on State: "+state.name()+" Client: "+client.toString());
byte[] array = new byte;
buf.get(array);
_log.warning(Util.printData(array, size));
if (client.activeChar == null)
return;
if (!FloodProtector.getInstance().tryPerformAction(client.activeChar.getObjectId(), FloodProtector.PROTECTED_UNKNOWNPACKET))
{
client.activeChar.logout();
return;
}
}
// impl
public L2GameClient create(MMOConnection<L2GameClient> con)
{
return new L2GameClient(con);
}
public void execute(ReceivablePacket<L2GameClient> rp)
{
try
{
if (rp.getClient().getState() == GameClientState.IN_GAME)
{
ThreadPoolManager.getInstance().executePacket(rp);
}
else
{
ThreadPoolManager.getInstance().executeIOPacket(rp);
}
}
catch (RejectedExecutionException e)
{
// if the server is shutdown we ignore
if (!ThreadPoolManager.getInstance().isShutdown())
{
_log.severe("Failed executing: "+rp.getClass().getSimpleName()+" for Client: "+rp.getClient().toString());
}
}
}
}
:'( :'( :'(
1 answer to this question
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now