Jump to content

Recommended Posts

Posted

I can not start the server with COEP  extender 66\61 ver.
I'm using 746 protocol for interlude. 

When connecting to a game server, server crashes with error

A:I:S:E:PE:DI:DE:BO=1.000000:1.000000:1.000000:1.000000:1.000000:0:0:1
L:Y:X:H=0:0:0:0:0
Crashed Thread[6].
Server Up Time : Mon Jun 30 04:26:21 2014
Current Time : Mon Jun 30 04:27:16 2014
Elapsed Time : 0 days 0 hours 0 minutes 55 seconds
IOBufferPool - 49994 / 50000,  PendingWrite 7 bytes [0] 
=============== object report
user[0/0], npc[0/0], item[0/0], usersocket[1]
=============== npc server connection log 
no connect

[(2596) 2014/06/30 04:27:16]: =======================
an Access Violation in module ntdll.dll at 0033:770c08c5.
start at 2014/6/30 04:26:20
Read from location ffffffff caused an access violation.

Registers:
EAX=a56aefa8 CS=0033 EIP=770c08c5 EFLGS=00010202
EBX=00000002 SS=002b ESP=a56aef98 EBP=ed96dc40
ECX=a56af078 DS=002b ESI=00000020 FS=0053
EDX=a56aefe8 ES=002b EDI=00000000 GS=002b
Bytes at CS:EIP:
0f ae 81 00 01 00 00 0f 29 81 a0 01 00 00 0f 29 
Stack dump:
a56aef98: 00000202 00000000 7707b219 00000000 fffa4000 000007ff 00000001 00000000
a56aefb8: 770c7000 00000001 000002ed 00000000 00000000 00000000 a56a007f 00000000
a56aefd8: a96bb0b0 00000000 a96bb0c0 00000000 a56b0000 00000000 a56ad000 00000000
a56aeff8: 7707a968 00000000 01f15409 00000000 a56af0e0 00000000 00000015 00000000
a56af018: d17c0fba 00000000 00000003 00000000 1afe0158 00000000 a56af430 00000000
a56af038: ffffffff ffffffff a96bb0b0 00000000 00000008 00000000 1afe0158 00000000
a56af058: 770c6486 00000000 00000050 00000000 a56afa50 00000000 000002ed 00000000
a56af078: 0000067c 00000000 a56af091 00000000 00000204 00000000 a56a0001 00000000
a56af098: 00440042 00000000 a56afa50 00000000 000003ff 00000020 002b0033 0053002b
a56af0b8: 002b002b 00000000 000a0008 00000000 77187540 00000000 003a0045 0053005c


ver = Dec 16 2005_22:03:13


GuardInfo : 

IOThread [0][0] (good):  void IOThread_common(void *arglist)
    Lock Stack  : 

IOThread [1][15] (good):  void IOThread_common(void *arglist)
    Lock Stack  : 

IOThread [2][0] (good):  void IOThread_common(void *arglist)
    Lock Stack  : 

IOThread [3][15] (good):  void IOThread_common(void *arglist)
    Lock Stack  : 

IOThread [4][0] (good):  void IOThread_common(void *arglist)
    Lock Stack  : 

IOThread [5][15] (good):  void IOThread_common(void *arglist)
    Lock Stack  : 

IOThread [6][47] (ahehe):  void IOThread_common(void *arglist) -> static bool LoadCharacterPacket(CDBSocket *socket, const unsigned char *packet) -> void CSocket::Send(const char* format, ...) -> CPacketSent::SendData
    Lock Stack  : 

IOThread [7][16] (good):  void IOThread_common(void *arglist)
    Lock Stack  : 

ListenThread [13][31] (good):  void ListenThread_common() -> unsigned __stdcall WaitThread(void *)
    Lock Stack  : 

MainThread [12][858] (good):      Lock Stack  : 

GuardInfo end 



[(2596) 2014/06/30 04:27:16]: *.\ioc.cpp:648(Tue Dec 13 02:52:40 2005) exception

Posted

...well It's not for interlude.

 

 

So there's that - and if you downgraded already you'd probably able to easily debug this error.

 

 

Sooooo...

Posted


#include "CSentPackets.h"

#include "L2ServerFunctions.h"

 

extern "C" int nRevision;

 

// C4 per player : SdSddddddddddffdddddddddd dddddddddd dddddddddd dddddddddd dddddddd ff

 

INT32 nLoadCharacters = 0;

void CSentPackets::LoadCharacters(CSocket *pSocket, const char *format, va_list va)

{

L2SERVER_SHARED_GUARD(nLoadCharacters);

TLS_TRACE_BEGIN;

char *charSelectFormat = (char*)0x9D9270;

 

// Character Selection Info (Character Screen)

va_list vl = va;

 

UINT8 packetid = va_arg(vl, UINT8);

UINT32 chars = va_arg(vl, UINT32);

UINT32 buffersize = va_arg(vl, UINT32);

 

CSPacket InPacket(va_arg(vl, CHAR *), buffersize, buffersize);

 

CSPacket OutPacket;

OutPacket.set(8192);

 

OutPacket << packetid;

OutPacket << chars;

 

if(nRevision > 746)

{

OutPacket << (INT32)0x07;

OutPacket << (BYTE)0x00;

 

int pos = 0;

for ( UINT32 a = 0 ; a < chars ; a++ )

{

UINT32 lastpos = pos;

 

UINT32 cnsize = (InPacket.GetWString(pos).size()+1)*2; // Character Name Size 32 Bytes

UINT32 ansize = (InPacket.GetWString(pos+cnsize+4).size()+1)*2; // Account Size 28 Bytes

 

UINT32 psize = 285 + cnsize + ansize;

UINT32 exppos = 64 + cnsize + ansize;

 

OutPacket.Write(InPacket.GetBytes(pos),exppos); pos += exppos;

OutPacket.Write((INT64)InPacket.GetQWord(pos)); pos += 8;

OutPacket.Write(InPacket.GetBytes(pos), 44); pos += 44 + 64;

OutPacket.Write(InPacket.GetBytes(pos), 64); pos += 64;

OutPacket.Write(InPacket.GetDWord(lastpos+exppos+168));

OutPacket.Write((INT32)0x00);

OutPacket.Write((INT32)0x00);

OutPacket.Write((INT32)0x00);

OutPacket.Write((INT32)0x00);

OutPacket.Write((INT32)0x00);

OutPacket.Write((INT32)0x00);

OutPacket.Write((INT32)0x00);

OutPacket.Write((INT32)0x00);

OutPacket.Write(InPacket.GetBytes(pos),(psize-(pos-lastpos))); pos += (psize-(pos-lastpos));

OutPacket.Write((INT16)0x00);

OutPacket.Write((INT16)0x00);

OutPacket.Write((INT32)0x00);

}

}

else

{

// IL Packet SdSddddddddddffdQddddddddddddddddddddddddddddddddddddddddddddddddffdddchh

 

int pos = 0;

for ( UINT32 a = 0 ; a < chars ; a++ )

{

UINT32 cnsize = (InPacket.GetWString(pos).size()+1)*2; // Character Name Size 32 Bytes

UINT32 ansize = (InPacket.GetWString(pos+cnsize+4).size()+1)*2; // Account Size 28 Bytes

 

UINT32 exppos = 64 + cnsize + ansize;

 

OutPacket.Write(InPacket.GetBytes(pos),exppos); pos += exppos;

OutPacket.Write((INT64)InPacket.GetQWord(pos)); pos += 8;

OutPacket.Write(InPacket.GetBytes(pos), 108); pos += 108;

OutPacket.Write((INT32)0x00);

OutPacket.Write(InPacket.GetBytes(pos), 64); pos += 64;

OutPacket.Write((INT32)0x00);

OutPacket.Write(InPacket.GetBytes(pos), 12); pos += 12;

OutPacket.Write(InPacket.GetBytes(pos), 16); pos += 16;

OutPacket.Write(InPacket.GetBytes(pos), 13); pos += 13;

OutPacket.Write((INT32)0x00);

}

}

 

pSocket->Send(&OutPacket);

TLS_TRACE_END;

}

 

INT32 nLoadSelectedCharacter = 0;

void CSentPackets::LoadSelectedCharacter(CSocket *pSocket, char *pFormat, ...)

{

L2SERVER_SHARED_GUARD(nLoadSelectedCharacter);

TLS_TRACE_BEGIN;

va_list tag;

va_start(tag, pFormat);

 

CSPacket Packet;

Packet.set(350);

 

BYTE nPacketID = va_arg(tag, BYTE); // PACKET ID

 

Packet << (wstring)va_arg(tag, WCHAR *); // Character Name

Packet << va_arg(tag, DWORD); // Character Object ID

Packet << (wstring)va_arg(tag, WCHAR *); // Character Title

Packet << va_arg(tag, DWORD); // Session ID

Packet << va_arg(tag, DWORD); // Pledge ID

Packet << va_arg(tag, DWORD); // Builder

Packet << va_arg(tag, DWORD); // Sex

Packet << va_arg(tag, DWORD); // Race

INT32 nClassID = va_arg(tag, DWORD); // Class ID

Packet << nClassID; // Class

Packet << va_arg(tag, DWORD); // WorldId

Packet << va_arg(tag, DWORD); // X

Packet << va_arg(tag, DWORD); // Y

Packet << va_arg(tag, DWORD); // Z

Packet << va_arg(tag, DOUBLE); // Current HP

Packet << va_arg(tag, DOUBLE); // Current MP

Packet << va_arg(tag, DWORD); // SP

va_arg(tag, DWORD);

Packet << pSocket->user->SD->nExp64; // EXP

Packet << va_arg(tag, DWORD); // Level

Packet << va_arg(tag, DWORD); // Align

Packet << va_arg(tag, DWORD); // Karma

Packet << va_arg(tag, DWORD); // INT

Packet << va_arg(tag, DWORD); // STR

Packet << va_arg(tag, DWORD); // MEN

Packet << va_arg(tag, DWORD); // DEX

Packet << va_arg(tag, DWORD); // WIT

 

Packet << (INT32)0x00;

Packet << (INT32)0x00;

Packet << nClassID;

for (int i=0; i<20; i++) { Packet << (INT32)0x00; }

 

va_end(tag);

 

// Sending UserInfo

pSocket->Send("cb", nPacketID, Packet.size(), Packet.buffer(false));

TLS_TRACE_END;

 

Guest
This topic is now closed to further replies.


  • Posts

    • Hey Dexters! Https://lineage2dex.com SKADI server starting TODAY! ✅ On 18:00 (UTC +2) We allow you to login for create character! To restrict your name and transfer ToDs/Starter packs in game. Make it before start! On start, we can have problems with WEB! It is IMPORTANT to prepare everything for starting the game RIGHT NOW, do not postpone for later, during the opening there may be problems with the web part of the project and you simply can not register. ## [ - REGISTRATION AND FILES](https://lineage2dex.com/en/start) ✨ Get a +15% bonus on all TOD orders! The bonus is active until February 1st, 23:00 and also applies to UNION. ✅ What you need to know at the start: ➡️ All Epic Raid Bosses dead on start. Re-spawn time you can check in game ALT+B Raid tab ➡️ All other RBs (for difficult 1 location) alive on server start (including Sub and Nobl RB) ➡️ Max enchant for items +10, this limits will be change with server time ➡️ Difficulty 1 locations are available ➡️ Locations drop Basic and Advanced tier resources, allowing you to craft B and A grade equivalent gear ➡️ School of Dark Arts — PvP zone with x5 drop. Its intance Zone, to enter it you need make TP from GateKeeper. If you will teleport on it by map, you will go on regular zone, not pvp ➡️ Only B-grade equivalent equipment is available for purchase (common, its dont have durability) ➡️ Tier 1 talents are available to learn ➡️ Talent Point Shop is available [ - Roadmap](https://wiki.lineage2dex.com/road-map/en) [ - Basic server description](https://wiki.lineage2dex.com/general-description-skadi-x100/en) Thank you for participating in the beta! All players who spent more than 1 hour on the beta server will receive useful items for autofarming and equipment repair. The rewards will be granted to the first character on the same account that participated in the beta. All items will be placed in the Quest Inventory. Good luck everyone! And have a fun on new Skadi server!
    • ## [1.5.1] - 2026-01-30   ### 🐛 Bug Fixes - **Top Voters**: Top voters list now loads correctly for inactive servers (previously showed "Server not found"). - **View Counter**: Server info page view count now records correctly for inactive servers.   ### 🔄 Improvements - **My Servers – Hide/Active**: The hide/active toggle now works correctly and is only shown when the server is approved (active) by an admin. Owner hide/show is separate from admin status. Toggling no longer causes a full page refresh. - **Accessibility**: Form fields across the site now have proper labels and IDs for screen readers and autofill — server info edit form, add server form, My Servers edit, Admin Panel (Email, Vote System, pricing, filters, logs), and related inputs.
    • LIVE VERIFICATION? SUMSUB? “IMPOSSIBLE”? ▪ Spoiler: it is possible — if you know who to work with. A client came in with a task to pass **live verification** on **WantToPay**, a Telegram virtual card service. On the platform side — **Sumsub**: liveness check, SMS, manual review. “Fast” and “by eye” simply don’t work here. › What was done: → analyzed the verification scenario and Sumsub requirements → built the correct flow: phone number, email, timing → **completed live verification remotely, without account handover** → handled SMS and confirmation codes → brought the process to final approval ▪ Result: → verification passed → access granted → no flags or repeat requests ▪ Live verification is not luck. It’s scenario-based preparation — not hope. › TG: @mustang_service ( https:// t.me/ mustang_service ) › Channel: Mustang Service ( https:// t.me/ +6RAKokIn5ItmYjEx ) *All data is published with the client’s consent.* #verification #sumsub #livecheck #kyc #case
    • IMPORTANT INFO: In a few days, I will switch to completely new code, written from scratch with a new download system, patch building and management system. The Updater will become true 2026 code with "foolproof systems". I'm going to create a Discord server for customers to request new ideas and features. FIRST CUSTOMERS ARE ALREADY USING THE NEW UPDATER ON LIVE SERVERS! Watch this topic for upcoming info because the new updater is around the corner! Yes, you can still use self-update on the previous updater! No, the new updater won't be compatible with the old patch system! A new build is required, but players who already have game files won't have to download the entire patch again! New templates and updates to existing templates are coming soon! Sneak peek:  
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..