Blaze The Cat
Member
Code:
addHook("ThinkFrame", do
for player in players.iterate
player.mo.color = 0
player.color = 0
end
end)
Color -1 is even worse. That's totally "Blue" right there.
Then I got the idea of being able to force my color on the fly and made this.
Code:
COM_AddCommand("forcecolor", function(p, newcolor)
p.mo.color = tonumber(newcolor)
p.color = tonumber(newcolor)
end, 1)
Last edited by a moderator: