PowerWeapons 1.0
Posted: Mon Mar 28, 2011 12:17 am
Download: http://www.mediafire.com/?2l56pp2c88db838
Usage:

Modding Notice: Feel free to mod this mod.
I have designed this mod (which runs off my new Halo framework) to be incredibly simple to modify without any knowledge of programming or memory modding.
Here is a snippet of its code to show you how simple it really is:
Notice: I did not test the final release of this. Let me know if something doesn't work.
Usage:

Modding Notice: Feel free to mod this mod.
I have designed this mod (which runs off my new Halo framework) to be incredibly simple to modify without any knowledge of programming or memory modding.
Here is a snippet of its code to show you how simple it really is:
Code: Select all
if (playerWeapon.isPistol()): #Pistol = speed.
player.setSpeed(1.5)
elif (playerWeapon.isPlasmaRifle()): #Plasma Rifle = real fast.
player.setSpeed(2.5)
elif (playerWeapon.isRocket()): #Rocket = slow.
player.setSpeed(0.6)
elif (playerWeapon.isCannon()): #Cannon = slow.
player.setSpeed(0.6)
elif (playerWeapon.isFlame()): #Flame = FAST.
player.setSpeed(5.0)
if (player.shield() < 3.0):
player.setShield(player.shield()+0.03)
else:
player.setSpeed(1.0)
Notice: I did not test the final release of this. Let me know if something doesn't work.