Page 1 of 2

Halo CE (Combat Evolved and Custom Edition) 12+

Posted: Thu Jan 17, 2019 11:21 pm
by Dread_Pony_Roberts
I am surprised that I couldn't find any tables for Halo CE on this website, so I decided to make it myself.
Halo CE PC is considered abandonware and as such you can't find it on steam.
Here is a link to Halo Combat Evolved ([Link]).
And here is Halo Custom Edition ([Link]).

(First I'd like to note that the multiplayer scripts WILL NOT WORK unless you are the host, I will not fix that (if it is even possible)).

Now on to the table.


-Shield Lock

-Health Lock

-1 Hit Kill

-No Shield Recharge Delay

-No Damage Indicator

-Lock Projectile Ammo

-Lock Plasma Ammo

-Lock Plasma Overcharge

-Lock Grenades

-Lock Flashlight

-Values

-EXTREME GAMEPLAY (FOR THE EXTREME SPARTANS)

The following cheats only work for Halo Custom Edition

-Medusa (Kill on Sight)

-Bump Possession

-Super Jump


I included a readme that contains some useful information.

I also added an auto attach lua script that will detect both halo.exe and haloce.exe (thanks to [Link])

Enjoy


Trainers can be found here (http://fearlessrevolution.com/viewtopic.php?f=5&t=8568)
WARNING: Trainers may crash when using Shield Lock and Lock Projectile Ammo.



Edit: Added some of the game's built in cheats and cleaned up the tables.

Re: Halo CE (Combat Evolved and Custom Edition) Single Player and Multiplayer

Posted: Sat Jan 19, 2019 6:02 pm
by Dread_Pony_Roberts
I plan to make this into a trainer soon.

At most I should have it done by next Sunday, but I doubt it will take that long.

Re: Halo CE (Combat Evolved and Custom Edition) Single Player and Multiplayer

Posted: Mon Jan 21, 2019 10:45 pm
by Dread_Pony_Roberts
Just created a trainer for the custom edition single player version, will make the rest of it into trainers soon.

Here it is (viewtopic.php?f=5&t=8568)

Re: Halo CE (Combat Evolved and Custom Edition) Single Player and Multiplayer

Posted: Fri Jan 25, 2019 4:08 am
by Dread_Pony_Roberts
I finished work on my trainers, you can find them in them here ([Link]) or in the link on my original post.

Enjoy

Re: Halo CE (Combat Evolved and Custom Edition) Single Player and Multiplayer

Posted: Sun Feb 17, 2019 3:02 am
by Dread_Pony_Roberts
Added a much needed addition to the table.

Re: Halo CE (Combat Evolved and Custom Edition) Single Player and Multiplayer 12+

Posted: Wed Feb 27, 2019 5:49 am
by miruss89
the table didn't work for Halo Combat Evolved v1.10.

Re: Halo CE (Combat Evolved and Custom Edition) Single Player and Multiplayer 12+

Posted: Thu Feb 28, 2019 7:06 am
by Dread_Pony_Roberts
I will give it a check with a fresh install, I also have a few questions.

1: Do you have any mods?
2: Do the values work?
3: I hate to ask this but it's something that needs to be asked, did you click on the Combat Evolved folder in the table or did you click on Custom Edition?

Re: Halo CE (Combat Evolved and Custom Edition) Single Player and Multiplayer 12+

Posted: Sat Mar 02, 2019 12:42 am
by Dread_Pony_Roberts
Ok, I found the problem.

Some of my scripts use the built in jumps to help them work, but they are different between versions. I plan give it a fix.

Re: Halo CE (Combat Evolved and Custom Edition) Single Player and Multiplayer 12+

Posted: Tue Mar 05, 2019 2:34 am
by Dread_Pony_Roberts
Alright, it is now patched, I hope this solves anyone else's problems with the cheats

(This does mean that the trainers will need to be updated, I'm not sure if I will fix them in the future since I'm a bit tired of dealing with them.)



Also, thank you miruss89 for bringing this error to my attention. My apologies for sounding rude and untrusting, I am truly grateful for your feedback.

Re: Halo CE (Combat Evolved and Custom Edition) Single Player and Multiplayer 12+

Posted: Wed Mar 20, 2019 7:24 am
by haloN3rd
@Dread Sorry to annoy you but did you resolve static addresses for your trainer and if so how did you do it? I can find static pointers for other games but halo seems to not return anything with see what reads/writes functions. The only luck I seem to have is pointer scans which give me a pointer that works until I hit a mission checkpoint.

Re: Halo CE (Combat Evolved and Custom Edition) Single Player and Multiplayer 12+

Posted: Thu Mar 21, 2019 2:41 am
by Dread_Pony_Roberts
I tried using the pointer scan on halo once, it didn't work out too well. It turns out the game doesn't use reliable pointers (but the built in cheats are static addresses for some reason) Much later I learned of a new method, and that one is what I used and will recommend for most any game.

This method is a bit more advanced, so please try learning some basic scripting before continuing.

It seems to me you are trying to find values, so I will start from there.
I made a bit of an error when making the "values" script, and that is that I could have removed
cmp [esi+C0],EC700000
jne code
and still made it work (I thought I had to compare it out at the time).


All you need to do to get the script to work is one of two methods, the globalalloc method or the harder method (I don't know if they have official names but that is what I'm going with). The one I used was the harder method, but I would recommend the globalalloc method. To do this, simply add globalalloc(example,10) to the start of the script, mov [example],ebx in the code portion of the script (registry must be whatever is holding your address), adding dealloc(example) to the disable section of the script, activating the script, and finally adding some pointers to the table with "example" (without ") as the base pointer.

I'm probably not that good at explaining so I will include an example script for Custom Edition down below (If you are using Combat Evolved, simply change haloce.exe to halo.exe).

I hope this helps.

Re: Halo CE (Combat Evolved and Custom Edition) Single Player and Multiplayer 12+

Posted: Thu Mar 21, 2019 5:13 am
by haloN3rd
Thanks for the reply. I am learning c++ atm so I am just going to go through a few tuts on lua scripting/assembly. Would you recommend any links?

Re: Halo CE (Combat Evolved and Custom Edition) Single Player and Multiplayer 12+

Posted: Thu Mar 21, 2019 7:28 am
by Dread_Pony_Roberts
I can't really recommend specific videos (mostly because I can't remember all the details on every video) but I can recommend some channels.

Cheat the Game ([Link]) and Stephen Chapman ([Link]).

Stephen is good to start out with, but they both have great videos.

Re: Halo CE (Combat Evolved and Custom Edition) Single Player and Multiplayer 12+

Posted: Thu Mar 21, 2019 6:22 pm
by haloN3rd
I knew about cheat the game but not Stephen Chapman. I will check him out later today and thanks for the help :).

Re: Halo CE (Combat Evolved and Custom Edition) Single Player and Multiplayer 12+

Posted: Fri Mar 22, 2019 4:28 pm
by Dread_Pony_Roberts
I have noticed that people have been downloading a few of my older versions of this table. In order to prevent confusion, I have decided to delete them from the original post and bring them down here for archive sake.