Vice City: Multiplayer

VC:MP Discussion => General Discussion => Topic started by: MEGAMIND on Sep 15, 2016, 01:57 PM

Title: Color Gui Textdraw
Post by: MEGAMIND on Sep 15, 2016, 01:57 PM
HOW TO ADD COLOR TO GUI TEXTDRAW

Memo <- null;
function Script::ScriptLoad()
{
Memo <- GUIMemobox( VectorScreen( 1188, 670 ), VectorScreen( 90,50 ),  Colour( 255, 100, 255));------->this line has color here but ingame it show me black color what ever i do it is black
Memo.AddLine( "[0.4]" );
Memo.AddLine( "VCMP.TDC" );
Memo.RemoveFlags( GUI_FLAG_BACKGROUND | GUI_FLAG_BORDER );
Memo.FontFlags = GUI_FFLAG_OUTLINE | GUI_FFLAG_ITALIC;
Memo.FontName = "Tahoma";
Memo.FontSize = 15;
}
Title: Re: Color Gui Textdraw
Post by: KAKAN on Sep 15, 2016, 03:54 PM
Memo.Colour
Title: Re: Color Gui Textdraw
Post by: MEGAMIND on Sep 15, 2016, 05:00 PM
Memo.Colour(any color here)??
Title: Re: Color Gui Textdraw
Post by: Kewun on Sep 15, 2016, 05:36 PM
i think
Memo.Colour = RGB(red, green, blue)

example
Memo.Colour  = RGB(255,125,0)

orange colour
Title: Re: Color Gui Textdraw
Post by: MEGAMIND on Sep 15, 2016, 06:10 PM
not wrking bro
Title: Re: Color Gui Textdraw
Post by: Kewun on Sep 15, 2016, 07:18 PM
hmm

Memo.Colour = 1
 Memo.Colour = 2

 try them maybe

Title: Re: Color Gui Textdraw
Post by: MEGAMIND on Sep 15, 2016, 07:25 PM
Quote from: Kewun on Sep 15, 2016, 07:18 PMhmm

Memo.Colour = 1
 Memo.Colour = 2

 try them maybe

nah bro it needs c++ code like this try it and it works perfect

TDCS <- null;
function Script::ScriptLoad()
{
 {
TDCS <- GUIMemobox( VectorScreen( 1188, 670 ), VectorScreen( 90,50), Colour(255,255,255));
TDCS.AddLine( "[0.4]", Colour(255,265,234) );
TDCS.AddLine( "VCMP-TDC", Colour(255,255,0));
TDCS.RemoveFlags( GUI_FLAG_BACKGROUND | GUI_FLAG_BORDER );
TDCS.FontFlags = GUI_FFLAG_OUTLINE | GUI_FFLAG_ITALIC;
TDCS.FontName = "Tahoma";
TDCS.FontSize = 15;
  }
{
Console.Print("test");
}
 {
Print("Client side scripts loaded.");
}
 }

Title: Re: Color Gui Textdraw
Post by: MEGAMIND on Sep 15, 2016, 07:51 PM
the uper red circle area which u can see in the pic is GUI injected..!
it happened due to this code
{
Console.Print("test");
}

and the other down right corner textdraw color hapeend due to this code
TDCS.AddLine( "VCMP-TDC", Colour(255,255,0));

(https://forum.vc-mp.org/proxy.php?request=http%3A%2F%2Fi67.tinypic.com%2F2b1l6r.jpg&hash=86b8fd295f757e5acd32148a6558e246bc2f3a5d)
Title: Re: Color Gui Textdraw
Post by: DizzasTeR on Sep 16, 2016, 01:32 AM
Read the f*ing GUI topic and learn the syntax

Its GUI.Colour = Colour ( Red, Green, Blue, Alpha );

In your case

Memo.Colour = Colour ( Red, Green, Blue, Alpha )
Title: Re: Color Gui Textdraw
Post by: Xmair on Sep 16, 2016, 03:57 AM
Quote from: MEGAMIND on Sep 15, 2016, 07:25 PM
Quote from: Kewun on Sep 15, 2016, 07:18 PMhmm

Memo.Colour = 1
 Memo.Colour = 2

 try them maybe

nah bro it needs c++ code like this try it and it works perfect

TDCS <- null;
function Script::ScriptLoad()
{
 {
TDCS <- GUIMemobox( VectorScreen( 1188, 670 ), VectorScreen( 90,50), Colour(255,255,255));
TDCS.AddLine( "[0.4]", Colour(255,265,234) );
TDCS.AddLine( "VCMP-TDC", Colour(255,255,0));
TDCS.RemoveFlags( GUI_FLAG_BACKGROUND | GUI_FLAG_BORDER );
TDCS.FontFlags = GUI_FFLAG_OUTLINE | GUI_FFLAG_ITALIC;
TDCS.FontName = "Tahoma";
TDCS.FontSize = 15;
  }
{
Console.Print("test");
}
 {
Print("Client side scripts loaded.");
}
 }


How the f* can you call that C++?
Title: Re: Color Gui Textdraw
Post by: Kewun on Sep 16, 2016, 05:23 AM
Quote from: Doom_Kill3R on Sep 16, 2016, 01:32 AMRead the f*ing GUI topic and learn the syntax

Its GUI.Colour = Colour ( Red, Green, Blue, Alpha );

In your case

Memo.Colour = Colour ( Red, Green, Blue, Alpha )

no need to be angry, he was just asking and you treat him like that..
Title: Re: Color Gui Textdraw
Post by: MEGAMIND on Sep 16, 2016, 06:37 AM
the problem is that u guyyz cant code for ur selfs u guyyz just read the topic and copy paste it try making newcodes for ur self...
@Kewun thnx for appreciating and the rest of u 2 dont show that u know everything (gharoor)..