Author Topic: recoloring problem- need help  (Read 1396 times)

If you have the brains to figure this out, just make make a command to change what colour it spawns. Like,
Code: [Select]
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.