Register for your free account! | Forgot your password?

You last visited: Today at 12:09

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

Advertisement



neuz crash

Discussion on neuz crash within the Flyff Private Server forum part of the Flyff category.

Reply
 
Old   #1
 
Ecrypter's Avatar
 
elite*gold: 0
Join Date: Aug 2014
Posts: 653
Received Thanks: 217
neuz crash

hi epvpers i have some problem in my neuz.,

i change my projectCmn.h into max level 200 and i change also the resource defineJob.h same max 200 level and i compile it and succcess, i try it ingame no error or neuz crash.

here is my problem i try to change the max level into max level 300 when i compile no errors and success., i try it ingame when i reach the max level 200 my neuz is crashing, when i open again my level of my char is level 239 but when i login ingame i cant go ingame it will crash again and this is my error logs

PHP Code:
2014/12/15   18:27:37   ::LoadTextureFromRes Item\0 not found

2014
/12/15   18:27:37   CTexture::LoadTexture Item\0 read error

2014
/12/15   18:27:43   Dec 15 2014 18:20:25 6 rCnt=1

Neuz
.exe caused an EXCEPTION_INT_DIVIDE_BY_ZERO in module Neuz.exe at 001B:0096E3FB_alldiv()+0075 byte(s), F:\VS70Builds\6030\vc\crtbld\crt\src\intel\lldiv.asmline 0120

 
Registers

EAX
=00000000  EBX=0012FC54  ECX=00000000  EDX=00000000  ESI=00000000
EDI
=00000000  EBP=0012FC40  ESP=0012F8C0  EIP=0096E3FB  FLG=00210246
CS
=001B   DS=0023  SS=0023  ES=0023   FS=003B  GS=0000

001B
:0096E3FB Neuz.exe_alldiv()+0075 byte(s)
001B:005206AD Neuz.exeCWndBase::Paint()+0397 byte(s)
001B:0052041E Neuz.exeCWndBase::PaintRoot()+0574 byte(s)
001B:00473160 Neuz.exeCNeuzApp::Render()+0544 byte(s)
001B:0049536F Neuz.exeCD3DApplication::Render3DEnvironment()+0431 byte(s)
001B:00495185 Neuz.exeCD3DApplication::Run()+0245 byte(s)
001B:0047A7FC Neuz.exeWinMain()+0332 byte(s)
001B:00973D2C Neuz.exeWinMainCRTStartup()+0388 byte(s)
001B:77461174 kernel32.dllBaseThreadInitThunk()+0018 byte(s)
001B:778DB3F5 ntdll.dllRtlInitializeExceptionChain()+0099 byte(s)
001B:778DB3C8 ntdll.dllRtlInitializeExceptionChain()+0054 byte(s
sorry for my bad english

thanks in advance
Ecrypter is offline  
Old 12/15/2014, 14:55   #2
 
elite*gold: 20
Join Date: May 2014
Posts: 172
Received Thanks: 67
Neuz Debuggen ?
GentrosOne is offline  
Old 12/15/2014, 15:36   #3
 
Ecrypter's Avatar
 
elite*gold: 0
Join Date: Aug 2014
Posts: 653
Received Thanks: 217
im going to debug the neuz?
Ecrypter is offline  
Old 12/15/2014, 15:56   #4
 
elite*gold: 20
Join Date: May 2014
Posts: 172
Received Thanks: 67
Quote:
Originally Posted by AsuraDeveloper View Post
best dev 12/10

Was würdest du ihm den raten außer die Neuz zu debuggen.


Wäre es der World Server oder sonstige Server sollte er .rpt Datei gucken.

Quote:
2014/12/15 18:27:37 ::LoadTextureFromRes : Item\0 not found

2014/12/15 18:27:37 CTexture::LoadTexture : Item\0 read error
Oder sich mal die Stelle genau angucken.
GentrosOne is offline  
Old 12/15/2014, 15:57   #5
 
elite*gold: 0
Join Date: Oct 2012
Posts: 948
Received Thanks: 157
It looks like its an render error.
I had this once to be sure to check if you changed also the Legend icon to max level.


void CMover::RenderName( LPDIRECT3DDEVICE9 pd3dDevice, CD3DFont* pFont, DWORD dwColor )


(g_pPlayer->m_nLevel > 60 && g_pPlayer->m_nLevel < 200 )

I had the above code and when ever i got over level 200 it crashed.

So maybe you have the same problem. At least it cant hurt to check it out.
raventh1984 is offline  
Old 12/15/2014, 16:11   #6

 
Snocolate's Avatar
 
elite*gold: 881
Join Date: May 2011
Posts: 149
Received Thanks: 159
lel. You should advance the exptable.inc...
Snocolate is offline  
Old 12/16/2014, 11:57   #7
 
Ecrypter's Avatar
 
elite*gold: 0
Join Date: Aug 2014
Posts: 653
Received Thanks: 217
here is the code.

PHP Code:
void CMover::RenderNameLPDIRECT3DDEVICE9 pd3dDeviceCD3DFontpFontDWORD dwColor )
{
    if( !
IsVisible() )
        return;
    
    if( 
g_Option.m_nPlayerName == FALSE && IsActiveMover() )
        return;

    if( 
g_Option.m_nOtherPlayerName == FALSE && !IsActiveMover() && IsPlayer() )
        return;

    
char szName256 ];
    
strcpyszNamem_szName );

    
BOOL  bOtherColor FALSE;
    
DWORD dwNewColor;

    if( 
IsPlayer() )
    {
        if( 
GetWorld()->GetID() == WI_WORLD_GUILDWAR && g_pPlayer->GetGuild() && GetGuild() )
        {
            
bOtherColor TRUE;
            if( 
g_pPlayer->GetGuild()->GetGuildId() == GetGuild()->GetGuildId() )
                
dwNewColor COLOR_GUILDCOMBAT;
            else
                
dwNewColor COLOR_PLAYER;                            
        }

        
// ¸í¼º¿¡ µû¸¥ »öÇ¥½Ã. 
i hmm its any problem if i did not change the exptable.inc?

because i did not change the exptable.inc
Ecrypter is offline  
Old 12/16/2014, 13:47   #8
 
Grening's Avatar
 
elite*gold: 0
Join Date: Dec 2013
Posts: 228
Received Thanks: 99
You have to advance the exptable.inc in your resource folder,like snocolate said
Grening is offline  
Reply


Similar Threads Similar Threads
[HELP] Neuz Crash
09/05/2014 - Flyff Private Server - 0 Replies
Please help me my neuz crash while opening Model Change app* Errorlogs Neuz.exe caused an EXCEPTION_ACCESS_VIOLATION in module Neuz.exe at 001B:005F2868, CItemBase::CItemBase()+0024 byte(s) - Registers EAX=0012F538 EBX=00000000 ECX=0012F538 EDX=00000000 ESI=00000084 EDI=0012FCE4 EBP=0012F4EC ESP=0012F4E0 EIP=005F2868 FLG=00210202 CS=001B DS=0023 SS=0023 ES=0023 FS=003B GS=0000
neuz crash :(
12/13/2013 - Flyff Private Server - 2 Replies
im trying to fix this the skill slot help Pictures, help Images, help Photos, help Videos - Image - TinyPic - Free Image Hosting, Photo Sharing & Video Hosting my friend told me that i need add code to 2Drender but why when i add this to my 2DRender BOOL C2DRender::RenderTextureCircle( CPoint pt, CTexture* pTexture, float radius, BOOL bIsCenter, DWORD dwBlendFactorAlpha, FLOAT fScale ) { pt += m_ptOrigin; if( pTexture == NULL )
Neuz crash
04/13/2013 - Flyff Private Server - 5 Replies
Meine neuz crasht andauernd, wenn ich sie starte und kann nicht sagen wieso. Error.txt: 2013/ 4/13 14:39:25 CWorldMng::LoadScript -> Load WorldName 2013/ 4/13 14:39:35 rCnt=1 Neuz.exe caused an EXCEPTION_ACCESS_VIOLATION in module Neuz.exe at 0023:00497AC9 - Registers
Neuz Crash
04/07/2013 - Flyff Private Server - 3 Replies
Hallo Epvpers, Habe seit letztens das Problem, das meine Neuz crasht wenn ich beim Login und unter Start auf Beenden klicke kriege nur im Log Ordner diesen Error: 2013/ 4/ 7 02:49:07 Apr 7 2013 02:06:31 1 rCnt=1 Neuz.exe caused an EXCEPTION_ACCESS_VIOLATION in module Neuz.exe at 0023:0070D5B7 - Registers
Neuz Crash
09/10/2011 - Flyff Private Server - 0 Replies
Ich hab meine Neuz compiled, wollte mich einloggen bloß sobald ich auf die Serverauswahl komme crasht mir die Neuz mit dieser Meldung 2011/ 9/10 17:57:57 Sep 10 2011 17:46:30 1 rCnt=1 Neuz.exe caused an EXCEPTION_ACCESS_VIOLATION in module Neuz.exe at 001B:004AF8AA, CPoint::operator+()+0010 byte(s), c:\programme\microsoft visual studio .net 2003\vc7\atlmfc\include\atltypes.inl, line 0100+0010 byte(s) - Registers EAX=00000020 EBX=7FFDF000 ECX=00000020 EDX=00000004 ...



All times are GMT +2. The time now is 12:09.


Powered by vBulletin®
Copyright ©2000 - 2024, 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 ©2024 elitepvpers All Rights Reserved.