Search found 16 matches

by wannaknow
Mon Jan 09, 2023 1:29 pm
Forum: Cheat Engine
Topic: How to sort out in a general opcode?
Replies: 2
Views: 2426

How to sort out in a general opcode?

Let's say I want to make a cheat script for inf. mana. I first find out which address is for mana and then find an opcode that writes to the address. When I search which addresses access to the opcode(to know if the opcode is only for mana or for many other addresses) and the result says hundreds of...
by wannaknow
Sat Oct 15, 2022 8:08 am
Forum: Specific Game Tutorials
Topic: GameMaker Variable Names and Indexes
Replies: 2
Views: 13701

Re: GameMaker Variable Names and Indexes

Such a noobzor so I have several basic questions. Would you please answer when you can afford your time? (Anyone's answer would be appreciated) ^_^ 1. I've read this post and also your previous post on objects and instance but still don't get how to get 'base address' Your previous post provides the...
by wannaknow
Wed Sep 28, 2022 5:13 am
Forum: Cheat Engine
Topic: How to compare qword size values?
Replies: 2
Views: 1229

Re: How to compare qword size values?

iNvIcTUs oRCuS wrote:
Sun Sep 25, 2022 1:30 pm
You have to compare it through registers...
Example...
mov rax, 150012345
cmp [rsp+10], rax
Thanks for help.
by wannaknow
Sun Sep 25, 2022 12:59 pm
Forum: Cheat Engine
Topic: How to compare qword size values?
Replies: 2
Views: 1229

How to compare qword size values?

Let's say the base address of a game is 150000000 And I tried to use cmp in the script cmp [rsp+10],"base address"+12345 (intending cmp [rsp+10],150012345) But it didn't work and I found in opcode that it worked as cmp [rsp+10],50012345. 1,which was the most front, has been cut. I put qword ptr and ...
by wannaknow
Fri Jul 22, 2022 12:57 pm
Forum: Cheat Engine
Topic: break and trace with condition doesn't work
Replies: 4
Views: 1763

Re: break and trace with condition doesn't work

Set the breakpoint 1 line below and it will work. Not on the line with the LEA. Breakpoints get hit BEFORE the instruction had a chance to run. In your case, RDX becomes that address AFTER the LEA line has been executed. Since you set the breakpoint there, RDX hasn't had the chance to update. So yo...
by wannaknow
Fri Jul 22, 2022 1:15 am
Forum: Cheat Engine
Topic: break and trace with condition doesn't work
Replies: 4
Views: 1763

Re: break and trace with condition doesn't work

Casanova wrote:
Thu Jul 21, 2022 10:54 am
How about you just ask your questions in one thread for example this one instead of cluttering the forum. People will see your question regardless if it's a new post or new topic.

Cheers
Sorry if i made board look dirty. I would from the next time.
by wannaknow
Thu Jul 21, 2022 6:06 am
Forum: Cheat Engine
Topic: break and trace with condition doesn't work
Replies: 4
Views: 1763

break and trace with condition doesn't work

Hi. I tried to use "break and trace" function with start condition I first used it with some condition and I got a traced line of "lea rdx,[Game.exe+3216C8]" in the middle of all trace. Game.exe+3216C8 was 7FF618F816C8 as a hex address at the moment. So after a single line, I could check the address...
by wannaknow
Wed Jul 20, 2022 6:06 am
Forum: Tables
Topic: Chronicon
Replies: 50
Views: 25775

Re: Chronicon

Someone pls help with removing stat cap.

tried to make 'magic find' super large but it's capped to 999 so it becomes 999 when I active the code even though i make the script to make magic find over 999..
by wannaknow
Mon Jul 18, 2022 9:23 am
Forum: Cheat Engine
Topic: is it possible to force a certain value and freeze through code injection script?
Replies: 1
Views: 1273

is it possible to force a certain value and freeze through code injection script?

Hello. Sorry for too often questioning:( I made a script to make a certain value to be 3000. But the game has a limitation of 1000 for that value so it really be 1000 in game even though I made my script as 3000. If I search that certain value and type in 3000 manually and make it freeze, it works. ...
by wannaknow
Sun Jul 17, 2022 12:20 pm
Forum: Cheat Engine
Topic: How to distinquish a certain address that access to the opcode?
Replies: 2
Views: 1387

Re: How to distinquish a certain address that access to the opcode?

PiKâNTo wrote:
Sun Jul 17, 2022 6:36 am
Just a Noobzor here but:
WOOOOOOOOOOOW

I did it!

THANKSSSSS MANNNNN!!!!
by wannaknow
Sun Jul 17, 2022 5:13 am
Forum: Cheat Engine
Topic: How to distinquish a certain address that access to the opcode?
Replies: 2
Views: 1387

How to distinquish a certain address that access to the opcode?

Hello veterans I tried to hack 'magic find' rate and it failed. I found that the opcode I got was a generic code, which means it was not specific for 'magic find'. So I traced what access to that opcode and was to try 'scan for commonalities' to distinguise 'magic find' from other things. But addres...
by wannaknow
Wed Jul 06, 2022 6:38 am
Forum: Tables
Topic: Grim Dawn + All DLC's
Replies: 359
Views: 273008

Re: Grim Dawn + All DLC's

Would anyone please explain how the loot randomizer works? Especially want to know how to find the location for aobscanmodule because there's no way to manipulate the droprate of loots. The only way of manipulating the droprate is changing the difficulty but it was not possible with that cause' too ...
by wannaknow
Tue Jul 05, 2022 8:32 am
Forum: Cheat Engine
Topic: How could I know where the variables in a certain opcode come from?
Replies: 3
Views: 1770

Re: How could I know where the variables in a certain opcode come from?

Or it is a generic code, which would for example calculcate the damage to player, enemies and buildings alike. In that case, you need to either find a way to differ between player and the rest or trace back to the code which calls the writing code. Yes. I also think it's easy with codes specific to...
by wannaknow
Tue Jul 05, 2022 2:27 am
Forum: Cheat Engine
Topic: How could I know where the variables in a certain opcode come from?
Replies: 3
Views: 1770

How could I know where the variables in a certain opcode come from?

I was reading the script for Inf.health(or Godmode whatever) of a certain game. the principle of Inf.health script for that game was like below: 1. get a value of the variable that saves or manages the health of the player. 2. compare the value with another value of a variable at the address in heal...
by wannaknow
Tue Jul 05, 2022 1:28 am
Forum: Cheat Engine
Topic: Question about readmem and je command
Replies: 3
Views: 1607

Re: Question about readmem and je command

Thanks. Finally understood the role of readmem. But I found that the je line was useless. I tried to remove the line and nothing different happened. Anyway thank you.