yinx2002
User-
Posts
37 -
Joined
-
Last visited
Reputation
0 NoobRecent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
@SicFunzler you need the project file, use new version wwise to open the project file , it will prompt you to migrate the project . After migration , you can compile new bnk file.
-
In pjorion protected mod file , fini() doesnot work
yinx2002 replied to yinx2002's topic in ActionScript & Python
I'm not calling init() and fini() my self , but leave it to client to call them. But the text I print out doesnot appear when using protected version, but using normal version they appear normally. -
In pjorion protected mod file , fini() doesnot work
yinx2002 replied to yinx2002's topic in ActionScript & Python
I've written a test mod , and find out only the normally compiled pyc file can trigger the init() and fini() , protected version of pyc file can not. below is my code, attatched is my py file and the mod with normal/protected pyc step: compile the py file to pyc and right click the pyc file select pjorion->protect bytecode . test_protected.wotmodtest_normal.wotmod mod_test.py -
In pjorion protected mod file , fini() doesnot work
yinx2002 posted a topic in ActionScript & Python
I find if mod file is protected using pjorion , then the fini() function defined cannot be invoked when client close. Has this any solution ? -
Is it possible that I use windows dll file in mod ?
yinx2002 posted a topic in ActionScript & Python
seems "import ctypes" statement which could be used to make use of dll file in python will lead to an error. -
I need , look like above document is pretty out of date, the screenshots show the game directory structrure is different than current. I recently has dug into wows mod developing , but cannot find the AS3 swc libary for building the swf file.
-
Как вскрыть файл с расширением havok?
yinx2002 replied to Pepelaz's topic in Modding General Discussion
Can you kindly teach me how to do that ? I want primitives_processed as in older version of client. -
Figured out I think more comprehensive English name should be: [Entering hangar] Account.onBecomePlayer = onBecomeAccount [Entering battle] Account.onBecomeNonPlayer = onBecomeNonAccount Avatar.onBecomePlayer = onBecomeAvatar [Exiting battle] Avatar.onBecomeNonPlayer = onBecomeNonAvatar [Again] Account.onBecomePlayer = onBecomeAccount
-
I have created an AbstractView in game. and try to remember the coordinates myself into a dump file and load them during initialization. But I find this approach has some problem seem related to switching between different client with different screen definition .Seems the game has done something that interfer with what I've done. So how to remember the location of an AbstractView?
-
how can I do something when the game destroyed?
yinx2002 replied to yinx2002's topic in ActionScript & Python
I mean is there any event when game client closed ? ( click X or select exit in menu) -
FYI
-
Can I "dynamically" replace the image in game ?
yinx2002 replied to yinx2002's topic in ActionScript & Python
@SkepticalFox so, find and rebuild the cache ? -
When we put image in correct path in res_mods, the game will load our "overriden" image. After enter game , even in battle , is there anyway that I can "redraw" this override ?