Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Nostale
You last visited: Today at 17:40

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



About The NostaleX.dat

Discussion on About The NostaleX.dat within the Nostale forum part of the MMORPGs category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Oct 2009
Posts: 92
Received Thanks: 8
Wink About The NostaleX.dat

so here is a release that was not the way the owner of the server did Gameforge only spend a part just for you guys to see everything that's in delphi 7 look :::: >>>>

Quote:
procedure DeleteCriticalSection(var lpCriticalSection: TRTLCriticalSection);
stdcall; external 'kernel32.dll' name 'DeleteCriticalSection' index 91;

procedure LeaveCriticalSection(var lpCriticalSection: TRTLCriticalSection);
stdcall; external 'kernel32.dll' name 'LeaveCriticalSection' index 479;

procedure EnterCriticalSection(var lpCriticalSection: TRTLCriticalSection);
stdcall; external 'kernel32.dll' name 'EnterCriticalSection' index 112;

procedure InitializeCriticalSection(var lpCriticalSection:
TRTLCriticalSection); stdcall;
external 'kernel32.dll' name 'InitializeCriticalSection' index 454;

function VirtualFree(lpAddress: Pointer; dwSize, dwFreeType: DWORD): BOOL;
stdcall; external 'kernel32.dll' name 'VirtualFree' index 754;

function VirtualAlloc(lpvAddress: Pointer; dwSize, flAllocationType,
flProtect: DWORD): Pointer; stdcall;
external 'kernel32.dll' name 'VirtualAlloc' index 751;

function LocalFree(hMem: HLOCAL): HLOCAL; stdcall;
external 'kernel32.dll' name 'LocalFree' index 490;

function LocalAlloc(uFlags, uBytes: UINT): HLOCAL; stdcall;
external 'kernel32.dll' name 'LocalAlloc' index 486;

function GetTickCount: DWORD; stdcall;
external 'kernel32.dll' name 'GetTickCount' index 391;

function QueryPerformanceCounter(var lpPerformanceCount: TLargeInteger): BOOL;
stdcall;
external 'kernel32.dll' name 'QueryPerformanceCounter' index 556;

function GetVersion: DWORD; stdcall;
external 'kernel32.dll' name 'GetVersion' index 399;

function GetCurrentThreadId: DWORD; stdcall;
external 'kernel32.dll' name 'GetCurrentThreadId' index 269;

function InterlockedDecrement(var Addend: Integer): Integer; stdcall;
external 'kernel32.dll' name 'InterlockedDecrement' index 457;

function InterlockedIncrement(var Addend: Integer): Integer; stdcall;
external 'kernel32.dll' name 'InterlockedIncrement' index 460;

function VirtualQuery(lpAddress: Pointer;
var lpBuffer: TMemoryBasicInformation; dwLength: DWORD): DWORD; stdcall;
external 'kernel32.dll' name 'VirtualQuery' index 759;

function WideCharToMultiByte(CodePage: UINT; dwFlags: DWORD;
lpWideCharStr: LPWSTR; cchWideChar: Integer; lpMultiByteStr: LPSTR;
cchMultiByte: Integer; lpDefaultChar: LPCSTR;
lpUsedDefaultChar: PBOOL): Integer; stdcall;
external 'kernel32.dll' name 'WideCharToMultiByte' index 770;

function MultiByteToWideChar(CodePage: UINT; dwFlags: DWORD;
const lpMultiByteStr: LPCSTR; cchMultiByte: Integer;
lpWideCharStr: LPWSTR; cchWideChar: Integer): Integer; stdcall;
external 'kernel32.dll' name 'MultiByteToWideChar' index 515;

function lstrlen(lpString: PAnsiChar): Integer; stdcall;
external 'kernel32.dll' name 'lstrlenA' index 822;

function lstrcpyn(lpString1, lpString2: PAnsiChar;
iMaxLength: Integer): PAnsiChar; stdcall;
external 'kernel32.dll' name 'lstrcpynA' index 819;

function LoadLibraryEx(lpLibFileName: PAnsiChar; hFile: THandle;
dwFlags: DWORD): HMODULE; stdcall;
external 'kernel32.dll' name 'LoadLibraryExA' index 481;

function GetThreadLocale: LCID; stdcall;
external 'kernel32.dll' name 'GetThreadLocale' index 386;

procedure GetStartupInfo(var lpStartupInfo: TStartupInfo); stdcall;
external 'kernel32.dll' name 'GetStartupInfoA' index 359;

function GetProcAddress(hModule: HMODULE; lpProcName: LPCSTR): FARPROC;
stdcall; external 'kernel32.dll' name 'GetProcAddress' index 340;

function GetModuleHandle(lpModuleName: PAnsiChar): HMODULE; stdcall;
external 'kernel32.dll' name 'GetModuleHandleA' index 315;

function GetModuleFileName(hModule: HINST; lpFilename: PAnsiChar;
nSize: DWORD): DWORD; stdcall;
external 'kernel32.dll' name 'GetModuleFileNameA' index 313;

function GetLocaleInfo(Locale: LCID; LCType: LCTYPE; lpLCData: PAnsiChar;
cchData: Integer): Integer; stdcall;
external 'kernel32.dll' name 'GetLocaleInfoA' index 305;

function GetCommandLine: PAnsiChar; stdcall;
external 'kernel32.dll' name 'GetCommandLineA' index 219;

function FreeLibrary(hLibModule: HMODULE): BOOL; stdcall;
external 'kernel32.dll' name 'FreeLibrary' index 196;

function FindFirstFile(lpFileName: PAnsiChar;
var lpFindFileData: TWIN32FindDataA): THandle; stdcall;
external 'kernel32.dll' name 'FindFirstFileA' index 164;

function FindClose(hFindFile: THandle): BOOL; stdcall;
external 'kernel32.dll' name 'FindClose' index 160;

procedure ExitProcess(uExitCode: UINT); stdcall;
external 'kernel32.dll' name 'ExitProcess' index 141;

procedure ExitThread(dwExitCode: DWORD); stdcall;
external 'kernel32.dll' name 'ExitThread' index 142;

function CreateThread(lpThreadAttributes: Pointer; dwStackSize: DWORD;
lpStartAddress: TFNThreadStartRoutine; lpParameter: Pointer;
dwCreationFlags: DWORD; var lpThreadId: DWORD): THandle; stdcall;
external 'kernel32.dll' name 'CreateThread' index 78;

function WriteFile(hFile: THandle; const Buffer; nNumberOfBytesToWrite: DWORD;
var lpNumberOfBytesWritten: DWORD; lpOverlapped: POverlapped): BOOL;
stdcall; external 'kernel32.dll' name 'WriteFile' index 783;

function UnhandledExceptionFilter(const ExceptionInfo: TExceptionPointers):
Longint; stdcall;
external 'kernel32.dll' name 'UnhandledExceptionFilter' index 732;

// RtlUnwind Information not available

procedure RaiseException(dwExceptionCode, dwExceptionFlags,
nNumberOfArguments: DWORD; lpArguments: PDWORD); stdcall;
external 'kernel32.dll' name 'RaiseException' index 561;

function GetStdHandle(nStdHandle: DWORD): THandle; stdcall;
external 'kernel32.dll' name 'GetStdHandle' index 361;

only to spend the rest that is much ^^

then talks about login among other things ^^
oiakrap is offline  
Old 03/06/2013, 14:06   #2
 
elite*gold: 0
Join Date: Apr 2010
Posts: 2,832
Received Thanks: 4,152
Elektrochemie is offline  
Thanks
2 Users
Old 03/06/2013, 14:43   #3
 
elite*gold: 0
Join Date: Oct 2009
Posts: 92
Received Thanks: 8
I just do not know mount server. I have no knowledge in delphi =/

I have complete files =/ . Dephi 7 is annoying'll move on to C++ ^^
oiakrap is offline  
Old 03/06/2013, 14:49   #4
 
elite*gold: 0
Join Date: Oct 2011
Posts: 814
Received Thanks: 675
Quote:
Originally Posted by oiakrap View Post
I just do not know mount server. I have no knowledge in delphi =/

I have complete files =/ . Dephi 7 is annoying'll move on to C++ ^^
kernel32.dll exports, really.
Useful like piece of **** on the street.
Trollface- is offline  
Old 03/06/2013, 15:00   #5
 
elite*gold: 0
Join Date: Oct 2009
Posts: 92
Received Thanks: 8
will then take the ****** not put more **** here

bunch of ingrates
oiakrap is offline  
Old 03/06/2013, 15:04   #6
 
Atzenkeeper's Avatar
 
elite*gold: 6
Join Date: May 2008
Posts: 844
Received Thanks: 841
**** or gtfo !!

Windows API functions ?? Srysly ??


Atzenkeeper is offline  
Reply


Similar Threads Similar Threads
NostaleX.dat Problem
07/20/2012 - Nostale - 14 Replies
Also ich hab die NostaleX.dat mit Ollydbg modifiziert aber wenn ich mit der Datei Nos starte kommt es zu diesem "Es gibt eine Serverwartung" Problem.Weiß jemand wie ich das beheben kann ?
[Search]Nostalex.dat editor
05/25/2012 - Nostale Hacks, Bots, Cheats & Exploits - 3 Replies
Hi, I need a program called Nostalex.dat editor for edit a server of NosTale. Please give me a link
I need Nostalex.exe editor.
05/24/2012 - Nostale - 5 Replies
Hi, I write this post because I need a program to do a private server of NosTale, its name is: Nostalex.exe editor anyone can put it to download please, I need it urgently.:handsdown: ------------------------------------------------- ---------------------------------------------- Wir suchen einen Nostale.exe Editor. diente für eine privat Wenn sie verfügen über Informationen posteela
Nostalex.dat
04/21/2011 - Nostale - 2 Replies
Hallo, wäre glücklich wen mir jemand eben die nostalex.dat(Aktuelle)hochladen könnte da mein Norton die gelöscht hat -_-. Wär nett von euch. LG Gray.
NostaleX Dat
11/26/2010 - Nostale - 1 Replies
Hallo leute ich habe Nostale X Dat runtergeladen Mein Nos Kopiert NostaleX Dat eingefügt aber wenn ich spiel starte kommt trzdem nur die deutsche versio habe ich was falsches gemacht ? bitte erklären



All times are GMT +1. The time now is 17:41.


Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2025 elitepvpers All Rights Reserved.