Search found 17 matches

by TheVine
Mon Jul 18, 2022 9:05 pm
Forum: General Gamehacking
Topic: Lands Of Lore 2 Hidden walls
Replies: 6
Views: 4244

Re: Lands Of Lore 2 Hidden walls

That is disappointing but it's nice to finally know LOL, thanks, I have wondered for years what was over there. Just the light source and nothing else??
by TheVine
Mon Jul 18, 2022 1:16 pm
Forum: General Gamehacking
Topic: How to hack games that rely on variable states?
Replies: 1
Views: 2589

How to hack games that rely on variable states?

If I want to find a collision or clipping exploit I look for something like lives or any number that changes when you get hit, find what writes to it, break and trace to find all the calls, and look for the first spot is that causes a breakpoint when you get hit, then disable it. But in some games o...
by TheVine
Sun Jul 17, 2022 11:53 pm
Forum: General Gamehacking
Topic: Lands Of Lore 2 Hidden walls
Replies: 6
Views: 4244

Re: Lands Of Lore 2 Hidden walls

Amazing!!

I always wondered if there is more hidden content later on in the game but it's at a location not normally accessible (an alcove with light, across the huge lake at the top of the dracoid ruins), but if you can get over there, you'd be the first!
by TheVine
Mon Jun 27, 2022 9:09 pm
Forum: General Gamehacking
Topic: Reading variables from Java games
Replies: 0
Views: 2532

Reading variables from Java games

Can CE be used to read values in Java games? I can decompile the source code so I know generally what kind of values I am looking for and in which classes they are, but I'm not sure how to then read those values or interact with them.
by TheVine
Mon Jun 20, 2022 3:56 pm
Forum: General Gamehacking
Topic: Trying to do an AOB hack but the relevant code isn't in the game?
Replies: 3
Views: 2618

Trying to do an AOB hack but the relevant code isn't in the game?

So normally the injection point occurs in something like "GameName.exe + address" and so the injection code looks like aobscanmodule(INJECT,Game.exe,0C 82 F1 02 00 00) I was able to find the AOB I want to change, but it appears to be at an address that isn't associated with "GameName.exe" but just a...
by TheVine
Sat Jun 11, 2022 6:23 pm
Forum: General Gamehacking
Topic: Use a hotkey to toggle a particular cheat on/off?
Replies: 5
Views: 5111

Use a hotkey to toggle a particular cheat on/off?

Is there a way to take a current cheat script (that does an AOB replacement when toggled on/off) and make it hotkeyable, so I can press a button in-game to turn the cheat on or off?
by TheVine
Mon Jun 06, 2022 6:56 pm
Forum: General Gamehacking
Topic: How to have one checkbox change two AOBs?
Replies: 2
Views: 1576

Re: How to have one checkbox change two AOBs?

If I'm understanding correctly then yes. Example: [ENABLE] aobscanmodule(INJECT,Game.exe,74 35 B1 2D A3 30 00) // should be unique aobscanmodule(INJECT2,Game.exe,74 35 44 83 00 B0 01 90 77) // should be unique INJECT: db 90 90 registersymbol(INJECT) INJECT2: db 90 90 registersymbol(INJECT2) [DISABL...
by TheVine
Mon Jun 06, 2022 5:47 pm
Forum: General Gamehacking
Topic: How to have one checkbox change two AOBs?
Replies: 2
Views: 1576

How to have one checkbox change two AOBs?

I finally found the two lines in the assembly code that impact the thing I want to change, however they are both required at the same time and they both need to be NOPed out. I only know how to change a single AOB like this: [ENABLE] aobscanmodule(INJECT,Game.exe,74 35 B1 2D A3 30 00) // should be u...
by TheVine
Thu Jan 27, 2022 2:39 pm
Forum: General Gamehacking
Topic: How to make a table that just changes an AOB and nothing more?
Replies: 12
Views: 7470

Re: How to make a table that just changes an AOB and nothing more?

I didn't say anything about making up sizes, I'm saying that the AOB script does allow for a single-byte alteration with nothing else changed, so I was wondering if this 5-byte minimum concept only applies in the event of needing to declare a section in new memory. And in the event that a newmem jum...
by TheVine
Thu Jan 27, 2022 6:12 am
Forum: General Gamehacking
Topic: How to make a table that just changes an AOB and nothing more?
Replies: 12
Views: 7470

Re: How to make a table that just changes an AOB and nothing more?

Watched a video, I think I understand a little more now. The one thing I still don't quite get is the 5-bytes-minimum thing and what that technically applies to, since the code does allow for a single-byte change. Is this only in the event that we need to jump to newly-allocated memory, and 5 bytes ...
by TheVine
Thu Jan 27, 2022 5:00 am
Forum: General Gamehacking
Topic: How to make a table that just changes an AOB and nothing more?
Replies: 12
Views: 7470

Re: How to make a table that just changes an AOB and nothing more?

I have so many questions about the way this AOB code is set up and what everything actually means / what's going on, is there a good tutorial that explains this? I don't know what "db" means or this 5-byte minimum thing or why we can suddenly change it to a single-byte thing, if the injection point ...
by TheVine
Thu Jan 27, 2022 4:53 am
Forum: General Gamehacking
Topic: How to make a table that just changes an AOB and nothing more?
Replies: 12
Views: 7470

Re: How to make a table that just changes an AOB and nothing more?

I've actually done the CE tutorial already - problem is in practice I find that I'm still running into all sorts of situations not explicitly covered in the tutorial material, so I get a little lost trying to find what I need or understand what's going on. Thanks for the responses, I'll try to under...
by TheVine
Thu Jan 27, 2022 4:06 am
Forum: General Gamehacking
Topic: How to make a table that just changes an AOB and nothing more?
Replies: 12
Views: 7470

Re: How to make a table that just changes an AOB and nothing more?

Thanks for the response but I'm not really sure what I'm looking at, the whole difficulty I am having is telling it what to look for and how to just change what I want to change so that the entire program isn't thrown off This is the code I get when I run the AOB injector [ENABLE] aobscanmodule(INJE...
by TheVine
Thu Jan 27, 2022 3:41 am
Forum: General Gamehacking
Topic: How to make a table that just changes an AOB and nothing more?
Replies: 12
Views: 7470

How to make a table that just changes an AOB and nothing more?

I want to make a checkbox that toggles on/off an AOB edit Like if I had some AOB like AA BB CC DD (making up random stuff there) and I want to click the box to change it to FF BB CC DD, and if I uncheck the box it goes back again. I tried opening memory view and doing ctrl + A then putting down a te...
by TheVine
Wed Jan 26, 2022 6:48 pm
Forum: General Gamehacking
Topic: How to find variables or code relating to collision detection?
Replies: 1
Views: 2147

How to find variables or code relating to collision detection?

I've seen plenty of hacks where collisions are turned off, allowing the player to pass through things unharmed. Is there a general strategy to creating these hacks? I'm only really used to searching for hard numeric values, but things like collisions are true/false ish and instantaneous, so I'm not ...