|
You last visited: Today at 16:45
Advertisement
Neuz Crash
Discussion on Neuz Crash within the Flyff Private Server forum part of the Flyff category.
06/09/2018, 06:56
|
#1
|
elite*gold: 0
Join Date: Sep 2016
Posts: 71
Received Thanks: 24
|
Neuz Crash
#Repost
Hello guys, I've been away from Flyff for awhile now, and i comeback once awhile just because of the enjoyment and the memory it brings back.
I've been playing Flyff for ages, and never crossed an issue that i couldn't fix, however now when i am back, most servers that i have tried after i patch and start the neuz closes instantly (crash) and i dont get any sort of error, i've tried a lot of things, Downloading NET frame Microsft Visual run it as Administrator, tried all the Compatibility modes, Exclude The Flyff in anti virus, closing all programs, Turning off windows defender and much more, right now i am more curious on what causing the problem then actually being able to play it, i am the type of person who gets very frustrated when i cross a problem and i can't solve it.. i've tried everything that i know (i think so, atleast) now i am asking for some help.
Appreciate your time
PS: Sorry if this is not the right Category to post my thread in!
Posted my last in the wrong category! Sorry again
|
|
|
06/09/2018, 10:24
|
#2
|
elite*gold: 60
Join Date: Sep 2017
Posts: 424
Received Thanks: 138
|
What Files ?
Try to Debug ?
Error Log?
|
|
|
06/09/2018, 10:40
|
#3
|
elite*gold: 0
Join Date: Sep 2016
Posts: 71
Received Thanks: 24
|
Quote:
Originally Posted by Dr. Peacock
What Files ?
Try to Debug ?
Error Log?
|
i don't get any Error log, and its like that for almost every server, but right now i am trying to fix it on iFlyff.. i think it has something to do with IE, but can't really figure out WHAT exactly. because when i force IE to be closed with Ccleaner and then try it works, but after a few minutes it shuts down again.
|
|
|
06/09/2018, 11:32
|
#4
|
elite*gold: 60
Join Date: Sep 2017
Posts: 424
Received Thanks: 138
|
Maybe something is wrong with your Computer...
Are you able to try it on an other one ?
(Debug neuz or try it with VMWare ~ Local Machine)
|
|
|
06/09/2018, 11:38
|
#5
|
elite*gold: 0
Join Date: Sep 2016
Posts: 71
Received Thanks: 24
|
Quote:
Originally Posted by Dr. Peacock
Maybe something is wrong with your Computer...
Are you able to try it on an other one ?
(Debug neuz or try it with VMWare ~ Local Machine)
|
ill try the debug , but even if something wrong with my PC, what is it? and why a few servers works, also why does it work at some moments, last night it worked perfectly after A LOT OF tries, but after i closed it and turned on my pc this morning, same **** happen
thanks in advance
|
|
|
06/09/2018, 12:34
|
#6
|
elite*gold: 60
Join Date: Sep 2017
Posts: 424
Received Thanks: 138
|
You try to debug with VMWare ? o:
Install VMWare + Windows and try it...
You need to Debug with Visual Studio o.O
I can't help you without an Error Log or Debug Information...
|
|
|
06/09/2018, 16:45
|
#7
|
elite*gold: 0
Join Date: Mar 2018
Posts: 155
Received Thanks: 54
|
Quote:
Originally Posted by Choman93
i don't get any Error log, and its like that for almost every server, but right now i am trying to fix it on iFlyff.. i think it has something to do with IE, but can't really figure out WHAT exactly. because when i force IE to be closed with Ccleaner and then try it works, but after a few minutes it shuts down again.
|
so you try to play on iflyff
iflyff uses v20 files of Seb and that files contain this
#ifdef __CHEAT_ENGINE
static char Cipher(char ch, int key, int mode)
{
if ( !isalpha( ch ) )
return ch;
char offset = isupper( ch )?'A':'a';
return (char)( ( ( ( ch + key ) - offset ) % 26 ) + offset );
}
static string Encipher( string input, int key, int mode = 0 )
{
string output = "";
int max = input.length();
for( int i = 0; i < max; i++ )
{
char letterN = input[i];
output += Cipher( letterN, key, mode );
}
return output;
}
static string Decipher( string input, int key )
{
return Encipher( input, 26 - key, 1 );
}
DWORD FindProcessId( const char* processName )
{
const char* p = strrchr( processName, '\\' );
if( p )
processName = p + 1;
PROCESSENTRY32 processInfo;
processInfo.dwSize = sizeof( processInfo );
HANDLE processesSnapshot = CreateToolhelp32Snapshot( TH32CS_SNAPPROCESS, NULL );
if( processesSnapshot == INVALID_HANDLE_VALUE )
return 0;
Process32First( processesSnapshot, &processInfo );
if( !strcmp( processName, processInfo.szExeFile) )
{
CloseHandle( processesSnapshot );
return processInfo.th32ProcessID;
}
while( Process32Next( processesSnapshot, &processInfo) )
{
if( !strcmp( processName, processInfo.szExeFile ) )
{
CloseHandle( processesSnapshot );
return processInfo.th32ProcessID;
}
}
CloseHandle( processesSnapshot );
return 0;
}
BOOL CALLBACK heurisprocess( HWND hWnd, LPARAM lParam )
{
int length = GetWindowTextLength( hWnd );
if( 0 == length )
return TRUE;
TCHAR* x;
x = new TCHAR[length + 1];
memset( x, 0, (length + 1) * sizeof(TCHAR) );
GetWindowText( hWnd, x, length + 1 );
if( _tcsstr( x, Decipher( "Inkgz", 6 ).c_str() ) || _tcsstr( x, Decipher( "Ktmotk", 6 ).c_str() ) || _tcsstr( x, Decipher( "OJG", 6 ).c_str() ) )
{
delete[] x;
ExitProcess( -1 );
}
delete[] x;
return TRUE;
}
DWORD WINAPI security( void* data )
{
while( true )
{
int i;
int max1 = 1;
int max2 = 3;
string WindowsName[1] = { "Inkgz Ktmotk 4.9" };
string ExeName[3] = { "inkgz.kdk", "inkgzktmotk-d86_64.kdk", "inkgzktmotk-o386.kdk" };
for( i = 0; i < max1; i++ )
{
HWND find = FindWindowA( 0, Decipher( WindowsName[i], 6 ).c_str() );
if( find )
{
ExitProcess( -1 );
}
}
for( i = 0; i < max2; i++ )
{
DWORD idproc = FindProcessId( Decipher( ExeName[i], 6 ).c_str() );
if( idproc != 0 )
{
ExitProcess( -1 );
}
}
if( GetModuleHandle( Decipher( "nuuq.jrr", 6 ).c_str() ) || GetModuleHandle( Decipher( "otlorzxgzout.jrr", 6 ).c_str() ) )
{
ExitProcess( -1 );
}
EnumWindows( heurisprocess, NULL );
unsigned tmax = 10;
Sleep( tmax );
}
return 0;
}
#endif // __CHEAT_ENGINE
|
|
|
06/12/2018, 22:36
|
#8
|
elite*gold: 0
Join Date: Nov 2009
Posts: 627
Received Thanks: 688
|
It is your Pc. Maybe you deactivated some services? Or installed an incompatible software? ...
You can check the event viewer for software crashes.
You can also use "msconfig" to enable/disable applications and change windows startup configuration.
Reinstalling windows would be the final solution but you can test a VM before (free VMs are available on Microsoft website)
|
|
|
06/14/2018, 06:13
|
#9
|
elite*gold: 0
Join Date: Mar 2018
Posts: 18
Received Thanks: 12
|
VM doesn't have any relation to do if his neuz crashes , i recommand you to format your computer system Disk (C:\)
|
|
|
06/14/2018, 09:58
|
#10
|
elite*gold: 60
Join Date: Sep 2017
Posts: 424
Received Thanks: 138
|
If he DELETE something from the Windows Data's like, important *.dll Data's it can crash too...
VM = New Windows = Maybe resolved, but only if it is from the missing parts 
Give it a try^^
|
|
|
06/25/2018, 23:23
|
#11
|
elite*gold: 0
Join Date: Sep 2016
Posts: 71
Received Thanks: 24
|
Quote:
Originally Posted by cookie69
It is your Pc. Maybe you deactivated some services? Or installed an incompatible software? ...
You can check the event viewer for software crashes.
You can also use "msconfig" to enable/disable applications and change windows startup configuration.
Reinstalling windows would be the final solution but you can test a VM before (free VMs are available on Microsoft website)
|
i am pretty sure i've not deactivated any services, or installed an incompatible software, sorry for the late reply, i gave up on this because i found another server to play on, now i downloaded legionflyff and got same issue, a person mentioned that i've this problem with the newer versions of flyff and he is right.. i am gonna try it out wit VM and see what happen
i've looked into A LOT OF threads and posts all over the internet, there are many people who has this issue, but non of the threads or posts are solved... so this is very interesting
PS: i looked into the services in msconfig and all of em are enabled
Quote:
Originally Posted by Dr. Peacock
If he DELETE something from the Windows Data's like, important *.dll Data's it can crash too...
VM = New Windows = Maybe resolved, but only if it is from the missing parts 
Give it a try^^
|
Will give it a try now... as for you too sorry for the late reply i just simply gave up, but i tried another server got same problem, i really need to figure it out or solve it, i tried debugging with VS as well gave me no error but Client Existed.. i asked the developers of the server to send me pdb file i dont know if they will.. but if they did ill try to debug then, for now ill try VMware if it didnt work i guess ill just reinstall my window.....
thanks again.
actually i will just upgrade my windows to windows 10 if its still free otherwise i will upgrade it to 64 bits, this 32 bits is giving me a headache.. the VMware in Microsoft is 12 gb... idk why its so huge but yeah.. thanks a lot, if i still had this problem after, ill inform you guys !
Updates, so i couldn't install windows 10 it got stuck at 10% haha unlucky me, but i restored my pc to the time where i didn't have problem with most of the servers, and i tried again and it still doesn't work
|
|
|
 |
Similar Threads
|
Suche Neuz.exe und Neuz.ini
11/21/2013 - Flyff Private Server - 2 Replies
Suche Neuz.exe und Neuz.ini von dem Place-of-Destiny Clienten Da es bei mir nicht dabei war :D
|
Neuz.exe / Neuz.ini Problem!
10/17/2012 - Flyff Private Server - 5 Replies
Hey hoy,
Ich habe folgendes Problem..
Irgendwie werden meine Optionen nicht übernommen! -.-
Also ich öffne per Patcher(OFFI PATCHER) mein flyff...
Stelle vorher die Auflösung in den Optionen ein.. auf
1360x768 (Breitbild)
|
suche neuz.ini bzw neuz.dll
03/04/2010 - Flyff Private Server - 7 Replies
hallo
ich suche neuz.ini bzw neuz.dll ist des gleiche nur dll steht bei denen wo vista haben damit ich mein server starten kann brauch cih diese datei wer könnte mir die geben
|
Flyff-Guide - [Guide] Alles über die Neuz.ini [ Update~ Beinahe komplette Neuz.ini er
01/09/2010 - Flyff - 3 Replies
Guten tag zusammen,
Ich hab mir mal überlegt einen guide zu schreiben was man alles mit der Neuz.ini anstellen kann , da viele nichtmal wissen was die neuz.ini ist xD
Und die Sufu hat mir nicht gesagt das es so einen Guide schon gibt:
Inhalt:
1. Wo finde ich die Neuz.ini ?
2. Die Einstellungen
3. Wofür braucht man die Neuz.ini aufm Offi
4. Wofür braucht man die Neuz.ini auf einem Pserver
5. Sonstiges
|
All times are GMT +1. The time now is 16:45.
|
|