2836
General Discussion / Re: Glok's RTB v1.045 Adventures in 2008 - The Movie
« on: September 10, 2018, 11:36:25 PM »
I used to play on gloks servers well into 2011. He was always p cool
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
I'm so confusedbecause the host also lives in the Bay area and there it's tradition to censor all words even if they aren't even offensive
Why in boss batle the word "Furry" is censored when the host is a furry
It make no sense
Could be done with a playertype, but it's a bit silly, works tho!I done it before too, I was just too lazy to make another hatmod system for it
I've done this before:Code: [Select]function NeedsMember::colorPlumbob(%this)
{
if(isObject(%this.player.getControllingClient().plumbob))
{
%needsSum = %this.hunger+%this.thirst+%this.energy+%this.fun+%this.hygiene+%this.toilet;
%r = 1-(%needsSum/60)*1.5;
if(%r>1)
%r = 1;
%g = %needsSum/60;
%color = %r SPC %g SPC "0.2 1";
%this.player.getControllingClient().plumbob.setNodeColor("plumbob",%color);
}
}Code: [Select]datablock PlayerData(PlumbobObject)
{
emap = true;
class = Armor;
shapeFile = "./plumbob.dts";
cameraVerticalOffset = 1.5;
};