If you have the brains to figure this out, just make make a command to change what colour it spawns. Like,
function serverCmdBugColour(%client, %bug, %colour)
{
if(!%client.isAdmin)
{
return;
}
if(getWord(%colour, 4) $= "")
{
messageClient(%client,'',"\c6Invalid Colour!");
return;
}
%bug.setnodecolor("ALL", %colour);
}Please excuse my syntax, I have not coding TS in a while.