1. This forum is ARCHIVED! Visit the new Cloud Sixteen forums, codename Eden, at https://eden.cloudsixteen.com. These forums will remain archived for a few months before being closed down, so try to encourage plugin developers to begin moving their content across to the new forums.
Dismiss Notice
Hi Guest, you need a Steam account to register and post on these forums. Login with Steam at the top of the forums to get started!
Dismiss Notice
Hi Guest, do you want to buy HL2RP or another Clockwork schema? Visit the Cloud Sixteen Store to get started!

I have a question

Discussion in 'Discussion' started by redcatjack, Jan 3, 2014.

  1. redcatjack

    redcatjack Moderator and Map Developer Staff Member Moderator

    So I was looking at some pictures the other day and found this
    [​IMG]
    It has blue text and I was wondering how do you that? Because it looks cool
    Thanks in advance.
     
  2. Aberidius

    Aberidius Chief Technology Officer Staff Member Administrator Store Support

    change the colour setting in the display? ex: 156.156.0
     
  3. Polis

    Polis Guest

    Use a plugin to do this, but look in cl_theme.lua in your schematic and you'll see on lines 102-104 you can edit it using RGB.
    Code:
    	Clockwork.option:SetColor( "information", Color(241, 208, 94, 255) );
    	Clockwork.option:SetColor( "background", Color(0, 0, 0, 255) );
    	Clockwork.option:SetColor( "target_id", Color(241, 208, 94, 255) );
    
    If you were to have it green, like I did on a test schematic I made, you would change it to this (use plugin format, please):
    Code:
    	Clockwork.option:SetColor( "information", Color(32, 178, 170, 255) );
    	Clockwork.option:SetColor( "background", Color(0, 0, 0, 255) );
    	Clockwork.option:SetColor( "target_id", Color(32, 178, 170, 255) );
    
    or, a blue-ish colour:

    Code:
    	Clockwork.option:SetColor( "information", Color(32, 178, 0, 170) );
    	Clockwork.option:SetColor( "background", Color(0, 0, 0, 255) );
    	Clockwork.option:SetColor( "target_id", Color(32, 178, 0, 170) );
    
     
  4. redcatjack

    redcatjack Moderator and Map Developer Staff Member Moderator

    Thanks very much! And don't worry i'll use the Plugin Format :p
    (This can be locked now)
     

Previous Readers (Total: 0)