Author Topic: Invisible Heads  (Read 1592 times)

I don't know if this has been suggested before, shunned before, praised before or even MADE before, but I'll ask anyways.

I thought it would be pretty neat to somehow allow the user to make their head invisible or removed during character creation.

This could be useful for reasons such as...

Decals where the head IS the body  (eg: Domo-kun, Spongebob etc)
Headless Zombies

What does everyone think?

i think some one postet some where a code how to remove body parts and there is also a mod that you can  let explode your head. well i would agree to make a new mod (something like a gui and client sided! in this guy there should be buttons and the body parts : [R-ARM] e.t.c) but i myself cannot make this^^

Code: [Select]
function serverCmdHideHead(%client){
%client.player.hidenode("Headskin");
}

/hidehead


Code: [Select]
function serverCmdHideHead(%client){
if(isObject(%client.player) && %client.player.getState() !$= "Dead" && %client.player.getDatablock().shapefile $= "base/data/shapes/player/m.dts")
%client.player.hidenode("Headskin");
}

/hidehead

Won't cause errors if you aren't alive, nonexistant (body dissapeared) or a horse and use the command.

It should probably hide the accent too.