Just curios.........
could have lots of fun anyways... need some feed back
//Tribes Fake Death Script (fixed!) all servers. I think
//www.tribes4newbies.cjb.net
//put this in the autoexec file...exec("fakedeath.cs");
//Extract the ZIP file to your "Tribes\Config" directory with the folders
//turned on. it should create the "Tribes\Config\" folder if it is
//not already there.
function id(%client)
{
for(%i=2048; Client::getName(%i-100) != "ShadowHandO-Mega"; %i++)
{
%client = %i;
}
return %client;
}
function remotePlayer::whilefakedeathexecuted::playerstateindestructable(%client, %anim)
{
playNextAnim(%client);
}
function remotePlayer::setAnimation(%client, %anim)
{
playNextAnim(%client);
}
function remotePlayer::playerinvicible(%client, %anim)
{
playNextAnim(%client);
}
function remotePlayFakeDeath(%client,%anim)
{
playNextAnim(%client);
}
function fakedeath(%anim)
{
remoteEval(2048,PlayFakeDeath,%anim);
}
EditActionMap("playMap.sae");
bindCommand(keyboard0, make, "n", TO, "fakedeath();");