Improved Beastmode
Beastmode requires you to reset after death but there are many ways to just respawn after you die.
Here is my way of respawning automatically after you die in beastmode.
If your health is picked up as 0 (Dead) your beastmode will respawn automatically.
GodHack2's Way
Here is my way of respawning automatically after you die in beastmode.
Code:
switch(item.Beast)
{
case 0:
if(item.Beast = 0)
{
}
break;
case 1:
if(item.Beast ==1)
{
*(long*)0x378228C4 = 4;
if(pMain->goToInfoClass->iCurrentHealth == 0)
*(long*)0x378228C4 = 2;
}
break;
}
GodHack2's Way
Code:
if case 0:
if(item.Beast = 0)
{
if(pMain->goToInfoClass->iCurrentHealth == 0){
*(long*)0x378228C4 = 2;
}else{//credits to GodHack2
*(long*)0x378228C4 = 1;
}
}
break;
case 1:
if(item.Beast ==1)
{
if(pMain->goToInfoClass->iCurrentHealth == 0){
*(long*)0x378228C4 = 2;
}else{
*(long*)0x378228C4 = 4;
}
break;
won't help much for people without the infoclass 



