gogomtgo wrote: ↑Thu Nov 15, 2018 3:07 pm
when i use it game crash 5~10m
i don't know why ;
have all dlc, steam
i don't know how to solve it...
activate it on the main menu and 5~10m crash
chose faction, start activate 5~10m crash
before vc works fine but after vc dlc ...do not know why crash
Please check if the script and the game are at the same 32bits segment:
- Run CE and Run game;
- At main menu folow the steps:
a) Add to the table an address manually (1byte): Warhammer2.exe
b) Add to the table an address manually (1byte): MyCode
c) Check the values of the addresses of a) and b)
The address is composed by ssssXXXXXXXX: ssss is the segment and XXXXXXXX is the 32bits (4 bytes) offset:
Scenarios:
Game at 132000000 (1-32000000) and MyCode at 154350000 (1-54350000): 1 and 1 = ok. Same segment.
Game at 132000000 (1-32000000) and MyCode at 47800000 (0-47800000): 1 and 0 = Sure Crash. Different segment.
Game at 7FF204000000 (7FF2-04000000) and MyCode at 7FF047800000 (7FF0-47800000): 7FF2 and 7FF0 = Sure Crash. Different segment.
Cheers!