Kevsoft wrote:Cheat Engine. Finding the address by searching between 0 and -1 and then use write trace for this address.
I was going to try to do that, but I didn't know exactly what values I was looking for.
Did not find anything about that yet.
The size of each player's screen is different depending on the way it splits. Perhaps it would be possible to find the address of screen size, and determine split direction through that.
EDIT: Found addresses for screen size:
Code: Select all
screen_width = mem(0x00d451f8, FIELD_DWORD)
screen_height = mem(0x00d45200, FIELD_DWORD)
if screen_width == 400 then
split_dir = "Vertical"
end
if screen_height == 300 then
split_dir = "Horizontal"
endI didn't look into that, because I mainly designed LunaLua for single player.
You should add that, because it would be useful and it would encourage people to continue making 2-player compatible games. I haven't seen many episodes that work well with 2 players lately.