• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

TheHyperNetwork - XEAxMaste Sources

Newbie Spellweaver
Joined
Feb 25, 2015
Messages
20
Reaction score
0
XEAxMaste - TheHyperNetwork - XEAxMaste Sources - RaGEZONE Forums

Any one got this reward.txt or how iam can do this ?
XEAxMaste - TheHyperNetwork - XEAxMaste Sources - RaGEZONE Forums
 
Initiate Mage
Joined
Oct 30, 2020
Messages
1
Reaction score
0
This is the best source code that anyone can use to run his/her server or learn how kalonline engine coding works. Big thanks for releasing it to the community.
 
Newbie Spellweaver
Joined
Oct 31, 2022
Messages
15
Reaction score
0
hwo i can make it in visual studio any vidoe to make it
 
Newbie Spellweaver
Joined
Dec 28, 2006
Messages
43
Reaction score
32
Code:
Crash happens on line: 2510 in Core.cpp
remove this lineConfigDBCheck = 1;
and server stops crashing.
----------------------------------------------------
But here is the real fix to fix it without removing that line since it removes alot of features.
line 2525 crashes the whole server
                DetourAttach(&(PVOID&)CIOSocket::Create, CIOSocketCreate);
Problem starts from Functions.h    static int(__cdecl *Create)(int Socket, int Infos) = (int(__cdecl*)(int,int))0x0047E940;
isn't a thiscall and is missing 1 argument
I replaced it with
static int(__thiscall* Create)(int CServerThisPointer, int Socket, int Infos) = (int(__thiscall*)(int, int, int))0x0047E940;

this in Process.h find CIOSocketCreate(int Socket, int Infos)
replace that
int __cdecl CIOSocketCreate(int Socket, int Infos) {
with
int __fastcall CIOSocketCreate(int CServerThisPointer, void *edx, int Socket, int Infos)

replace the return at the end of the function with
    return CIOSocket::Create(CServerThisPointer, Socket, Infos);
Now the server doesn't crash anymore :)
 
Newbie Spellweaver
Joined
Jan 9, 2016
Messages
26
Reaction score
4
[código]
A falha acontece na linha: 2510 em Core.cpp
remova esta linhaConfigDBCheck = 1;
e o servidor para de travar.
-------------------------------------------------- --
Mas aqui está a correção real para corrigi-lo sem remover essa linha, pois remove muitos recursos.
linha 2525 trava todo o servidor
DetourAttach(&(PVOID&)CIOSocket::Criar, CIOSocketCriar);
O problema começa em Functions.h static int(__cdecl *Create)(int Socket, int Infos) = (int(__cdecl*)(int,int))0x0047E940;
não é uma thiscall e está faltando 1 argumento
eu troquei por
static int(__thiscall* Create)(int CServerThisPointer, int Socket, int Infos) = (int(__thiscall*)(int, int, int))0x0047E940;

isso em Process.h encontre CIOSocketCreate(int Socket, int Infos)
substitua isso
int __cdecl CIOSocketCreate(int Socket, int Info) {
com
int __fastcall CIOSocketCreate(int CServerThisPointer, void *edx, int Socket, int Infos)

substitua o retorno no final da função por
return CIOSocket::Create(CServerThisPointer, Socket, Infos);
Agora o servidor não trava mais :)
[/código]
Mano você sabe como corrigir erro onde a rb não é retirada do inventário após o uso?
 
Initiate Mage
Joined
Jul 8, 2023
Messages
4
Reaction score
0
you forgot to add sdk folder for sora source and following files

Deflector.h
Interface.h

sora can't be compile without those files someone can upload it or XEAxMaste didn't upload them?!
 
Back
Top