Recent Halo Custom STUFF

Apr 27, 2013
83
0
0
36
Cali
#1


Maps:
2 to 6 sum
2 to 8 sum
a10 (fogg)
a10e_ai_beta
a30 (senti)
a30b_ai_beta
Autumn Down
b30b_ai_glow_fixed
c10 (fogg_impossy)
big snowy map
grunts red vs blue
ui

Contains files needed to run haloce 1.09. Unrestricted Gandanur dedicated servers are playable regardless of cd key. Users don't have to replace any of their ce files they can install in a separate location.

Please read the "READ THIS.txt".


7zip self-extrating 400mb
http://www.mediafire.com/download/9ak42i8xlc61m8n/Halo_hexthat_Edition_DEMO.exe

[hr]



Stock weapons

ZIP DOWNLOAD
http://www.mediafire.com/download/bf3uhxxacp7n59u/2+to+4+sum.zip

[hr]




chose between arbiter or a purple cyborg

this will replace Bonus Map for the hexthat edition

Zip Download
http://www.mediafire.com/download/5yu9czvf22lgs7f/hexthat_a30_v2.zip
 
Apr 27, 2013
83
0
0
36
Cali
#2
CMT Masterz1337 told my why my pelicans were messed up, I had to get the newest version of HEK+ to rip the physics correctly. Next posts will have working pelicans and what not. Probably going to be a few days, I'm a bit tired from hiking. I'll change that horrible arbiter to a CMT elite.



Elite can be found here
 
Apr 27, 2013
83
0
0
36
Cali
#4
Here is hexthat's Halo Campaign only....

DOWNLOAD

here is the batch for the loader
Code:
@ECHO OFF
REM - HEXTHAT's Batch
:BEGIN
CLS
REM - THE BELOW LINE GIVES THE USER 5 CHOICES (DEFINED AFTER /C:)
echo Selecting 1 will load Halo.
echo Selecting 2 will load Halo and Skys The Limit 2.0.
echo Selecting 3 will load Halo in a window.
echo Selecting 4 will load Halo in a window in devmode and Skys The Limit 2.0.
echo Select 5 first if you do not have Halo CE installed.
CHOICE /N /C:12345 /M "PICK A NUMBER (1, 2, 3, 4, or 5)"%1
REM - THE NEXT FOUR LINES ARE DIRECTING USER DEPENDING UPON INPUT
IF ERRORLEVEL ==5 GOTO FIVE
IF ERRORLEVEL ==4 GOTO FOUR
IF ERRORLEVEL ==3 GOTO THREE
IF ERRORLEVEL ==2 GOTO TWO
IF ERRORLEVEL ==1 GOTO ONE
GOTO END
:Five
ECHO YOU HAVE PRESSED FIVE
echo To register Halo
PAUSE
start "\\" "IF CE NOT INSTALLED.reg"
GOTO END
:FOUR
ECHO YOU HAVE PRESSED FOUR
echo Remember to check devmode in STL also.
echo To start Syks The Limit 2.0 and devmode Halo in a window
PAUSE
start "\\" "Skys The Limit 2.0.exe"
start "\\" "haloce.exe" -windowed -console -devmode
GOTO END
:THREE
ECHO YOU HAVE PRESSED THREE
echo To start Halo in a window
PAUSE
start "\\" "haloce.exe" -windowed
GOTO END
:TWO
ECHO YOU HAVE PRESSED TWO
echo To start Syks The Limit 2.0 and Halo
PAUSE
start "\\" "Skys The Limit 2.0.exe"
start "\\" "haloce.exe"
GOTO END
:ONE
ECHO YOU HAVE PRESSED ONE
echo To start Halo
PAUSE
start "\\" "haloce.exe"
:END