Search found 8 matches

by parittolo
Thu Jan 28, 2021 10:42 pm
Forum: General Gamehacking
Topic: Modify value that is constantly re-written
Replies: 15
Views: 18754

Re: Modify value that is constantly re-written

Oh ok I get it now. That is a more elegant solution, sadly the game's camera is "erratic", so the FoV value is always jumping around, it's different between planes, between first/third/cockpit view, when doing many other actions. This means every time it crosses the boundary of the range that I defi...
by parittolo
Thu Jan 28, 2021 6:32 pm
Forum: General Gamehacking
Topic: Modify value that is constantly re-written
Replies: 15
Views: 18754

Re: Modify value that is constantly re-written

Interesting, why would the other place be better? To use your script, should I just overwrite mine? I don't really understand how it works, most likely I botched it. So, I can see it doing its thing, if I set a lower bound of .3 and upper of 0.9 (all the range the game uses natively in the plane cus...
by parittolo
Thu Jan 28, 2021 5:38 pm
Forum: General Gamehacking
Topic: Modify value that is constantly re-written
Replies: 15
Views: 18754

Re: Modify value that is constantly re-written

Right, I went for the instruction above it because I made the program crash while trying, forgive the noob mistakes. so this should be it? [ENABLE] //code from here to '[DISABLE]' will be used to enable the cheat alloc(newmem,2048) label(returnhere) label(originalcode) label(exit) newmem: //this is ...
by parittolo
Thu Jan 28, 2021 5:09 pm
Forum: General Gamehacking
Topic: Modify value that is constantly re-written
Replies: 15
Views: 18754

Re: Modify value that is constantly re-written

Thanks for the reply! Yes, I used the code injection template (I don't really know how to do it myself). Before reading your post I kept trying and sort of achieved the end goal. I read that the "addss" opcode can accept a memory address, I know how to directly change the value of an address using C...
by parittolo
Thu Jan 28, 2021 12:39 pm
Forum: General Gamehacking
Topic: Modify value that is constantly re-written
Replies: 15
Views: 18754

Re: Modify value that is constantly re-written

If that instruction just writes what you want to change, then just change it to: mov [eax+240],(float)45 Change that 45 to whatever you want the value to be set to. Like this? https://i.imgur.com/84UPJkx.png I changed it with "mov [eax+00000240],(float)0.6", CE asked me if I wanted to nop the follo...
by parittolo
Thu Jan 28, 2021 2:56 am
Forum: General Gamehacking
Topic: Modify value that is constantly re-written
Replies: 15
Views: 18754

Re: Modify value that is constantly re-written

Thanks for the answer! I tried nop-ing the move, like this https://i.imgur.com/7HtoMo2.png and it "works" meaning the values I set remain unchanged. Problem is, this breaks all the instances where the FoV is supposed to change (e.g. when locking onto an enemy, when zooming with a helicopter, during ...
by parittolo
Thu Jan 28, 2021 12:11 am
Forum: General Gamehacking
Topic: Modify value that is constantly re-written
Replies: 15
Views: 18754

Modify value that is constantly re-written

Hi, I am trying to modify the a value that controls the camera FoV in Ace Combat: Assault Horizon. https://i.imgur.com/8x1DgPI.png this is the address which I think holds the fov value in degrees (so 0.55 here is 55 degrees) I would like to be able to add an offset to this value, but it can't be sta...
by parittolo
Wed Jan 27, 2021 11:58 pm
Forum: Cheat Engine
Topic: [Ace Combat: Assault Horizon] FOV changer
Replies: 0
Views: 2797

[Ace Combat: Assault Horizon] FOV changer

Hello I am trying to make an FOV (field of view) changer for AC: Assault Horizon. I find the default FOV too narrow to be enjoyable. The game has long been delisted from steam (because of the licensing of the planes) and I intend to use this strictly in singleplayer. For now I managed to find an add...