Glow problem

01/12/2014 05:18 WooTheFck#1
Hello, I do not know what is the cause of the problem, but I have the correct file, the SFX, I will also see the defineobj.h and mdldyna.inc and their correct. Any reference to the problem?

mdlDyna.inc

"sfx_level03" XI_GEN_ITEM_SETITEM03 MODELTYPE_SFX "" 0 MD_NEAR 0 1.0f 0 1 ATEX_NONE 1
"sfx_level04" XI_GEN_ITEM_SETITEM04 MODELTYPE_SFX "" 0 MD_NEAR 0 1.0f 0 1 ATEX_NONE 1
"sfx_level05" XI_GEN_ITEM_SETITEM05 MODELTYPE_SFX "" 0 MD_NEAR 0 1.0f 0 1 ATEX_NONE 1
"sfx_level06" XI_GEN_ITEM_SETITEM06 MODELTYPE_SFX "" 0 MD_NEAR 0 1.0f 0 1 ATEX_NONE 1
"sfx_level07" XI_GEN_ITEM_SETITEM07 MODELTYPE_SFX "" 0 MD_NEAR 0 1.0f 0 1 ATEX_NONE 1
"sfx_level08" XI_GEN_ITEM_SETITEM08 MODELTYPE_SFX "" 0 MD_NEAR 0 1.0f 0 1 ATEX_NONE 1
"sfx_level09" XI_GEN_ITEM_SETITEM09 MODELTYPE_SFX "" 0 MD_NEAR 0 1.0f 0 1 ATEX_NONE 1
"sfx_level10" XI_GEN_ITEM_SETITEM10 MODELTYPE_SFX "" 0 MD_NEAR 0 1.0f 0 1 ATEX_NONE 1


defineObj.h
#define XI_GEN_ITEM_SETITEM03 1719
#define XI_GEN_ITEM_SETITEM04 1720
#define XI_GEN_ITEM_SETITEM05 1721
#define XI_GEN_ITEM_SETITEM06 1722
#define XI_GEN_ITEM_SETITEM07 1723
#define XI_GEN_ITEM_SETITEM08 1724
#define XI_GEN_ITEM_SETITEM09 1725
#define XI_GEN_ITEM_SETITEM10 1726

in the source
case 3: dwSfx = XI_GEN_ITEM_SETITEM03; break; // blue
case 4: dwSfx = XI_GEN_ITEM_SETITEM04; break; // blue
case 5: dwSfx = XI_GEN_ITEM_SETITEM05; break; // yellow
case 6: dwSfx = XI_GEN_ITEM_SETITEM06; break; // yellow
case 7: dwSfx = XI_GEN_ITEM_SETITEM07; break; // red
case 8: dwSfx = XI_GEN_ITEM_SETITEM08; break; // red
case 9: dwSfx = XI_GEN_ITEM_SETITEM09; break; // lila
case 10: dwSfx = XI_GEN_ITEM_SETITEM10; break; // lila


error:


Log
Neuz.exe caused an EXCEPTION_ACCESS_VIOLATION in module Neuz.exe at 001B:00710A32, CreateSfx()+9794 byte(s), c\program\_common\createobj.cpp, line 0392+0008 byte(s)

- Registers

EAX=00000000 EBX=7FFDF000 ECX=26E9DA58 EDX=0000000A ESI=00000000
EDI=767B28D7 EBP=0012F390 ESP=0012EF18 EIP=00710A32 FLG=00010206
CS=001B DS=0023 SS=0023 ES=0023 FS=003B GS=0000

001B:00710A32 Neuz.exe, CreateSfx()+9794 byte(s)
001B:0071E5AD Neuz.exe, CMover::CreateAbilityOption_SetItemSFX()+1773 byte(s)
001B:0071B3EE Neuz.exe, CMover::ProcessETC()+0110 byte(s)
001B:0071C9CA Neuz.exe, CMover::Process()+3850 byte(s)
001B:007B2CC9 Neuz.exe, CWorld::Process()+0665 byte(s)
001B:0051D733 Neuz.exe, CWndWorld::Process()+3763 byte(s)
001B:00535DAC Neuz.exe, CWndBase::Process()+0092 byte(s)
001B:004E8BC9 Neuz.exe, CWndMgr::Process()+3065 byte(s)
001B:0046FE5B Neuz.exe, CNeuzApp::FrameMove()+0267 byte(s)
001B:004B37D0 Neuz.exe, CD3DApplication::Render3DEnvironment()+0384 byte(s)
001B:004B3611 Neuz.exe, CD3DApplication::Run()+0305 byte(s)
001B:00476CCC Neuz.exe, WinMain()+0332 byte(s)
001B:00941D5C Neuz.exe, WinMainCRTStartup()+0388 byte(s)
001B:767B1174 kernel32.dll, BaseThreadInitThunk()+0018 byte(s)
001B:7760B3F5 ntdll.dll, RtlInitializeExceptionChain()+0099 byte(s)
001B:7760B3C8 ntdll.dll, RtlInitializeExceptionChain()+0054 byte(s)

Up
01/13/2014 09:57 WooTheFck#2
Up
01/13/2014 11:02 raventh1984#3
Check again and make sure that those numbers or not already defined.

Also did you merge them and put the new datasubs to your client?

Tripple check everything.
01/13/2014 13:00 WooTheFck#4
now i fixed this error:
XI_GEN_ITEM_SETITEM03 Not Found. : XI_GEN_ITEM_SETITEM03 MODELTYPE_SFX "" 0 MD_NEAR 0 1.0f 0 1 ATEX_NONE 1 by changing the define no. on the defineobj

but when i equipt +10 set the game will crash

Client error Log:
01/14/2014 14:46 Lumi#5
Your sfx files are maybe defect or rather broken.
Please debug your neuz.
01/14/2014 16:35 raventh1984#6
out of range: type=3, size=3523, index=1726

type = 3 means SFX and index 1726 means the DefineNumber of the SFX

CreateSfx : 1726 sfxÀÇ m_pModelÀÌ ¾øÀ½

It cant create the SFX so check if the SFX has the correct name and if its not broken etc. copie the sfx from the Jopsi Glow change to your SFX folder. And check if its good.
01/16/2014 12:21 WooTheFck#7
@raventh yes i check already and its correct i also used jopsi sfx, same problem i got.
01/17/2014 00:22 Sionic#8
What source are you using?
01/17/2014 07:37 WooTheFck#9
Virtous source v17 [Only registered and activated users can see links. Click Here To Register...]
12/14/2014 11:18 Mondyo#10
Same problem, with v15. Help plz