Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - MEGAMIND

#616
Servers / Re: [0.4]Top Down City Server
Dec 30, 2016, 04:11 PM
VISITE TDC for more fun now including labels textdraws and much more..............................
#617
Client Scripting / Re: 3D label
Dec 30, 2016, 06:58 AM
Quote from: jWeb on Dec 29, 2016, 10:59 PM
Quote from: MEGAMIND on Dec 29, 2016, 10:24 PM
Quote from: MEGAMIND on Dec 28, 2016, 09:57 PMLabul <- GUILabel();
 
function Script::ScriptLoad()
{
    Labul.Text = "I LOVE vcmp"
    Labul.FontSize = 15;
    Labul.Pos3D = Vector(497, -89.49429, 14);
    Labul.Rotation3D = Vector(2.0, 0, 3.1);
    Labul.Size3D = Vector(4, 5.0, 5.0);
 
}
 
function Script::ScriptProcess() {
  local wpts = GUI.WorldPosToScreen(Labul.Pos3D);
    Labul.Pos = VectorScreen(wpts.X, wpts.Y);
} where to add color in this label and how o set vectors of difrnt locations
where do I add color to label?? And how do I add color to it

Did you just quote yourself? DAFUQ ;D

its noot mine but  still its colorless.....!
#618
Client Scripting / Re: 3D label
Dec 29, 2016, 10:24 PM
Quote from: MEGAMIND on Dec 28, 2016, 09:57 PMLabul <- GUILabel();
 
function Script::ScriptLoad()
{
    Labul.Text = "I LOVE vcmp"
    Labul.FontSize = 15;
    Labul.Pos3D = Vector(497, -89.49429, 14);
    Labul.Rotation3D = Vector(2.0, 0, 3.1);
    Labul.Size3D = Vector(4, 5.0, 5.0);
 
}
 
function Script::ScriptProcess() {
  local wpts = GUI.WorldPosToScreen(Labul.Pos3D);
    Labul.Pos = VectorScreen(wpts.X, wpts.Y);
} where to add color in this label and how o set vectors of difrnt locations
where do I add color to label?? And how do I add color to it
#619
General Discussion / Re: NPC
Dec 28, 2016, 10:00 PM
????
#620
Client Scripting / Re: 3D label
Dec 28, 2016, 09:57 PM
Labul <- GUILabel();
 
function Script::ScriptLoad()
{
    Labul.Text = "I LOVE vcmp"
    Labul.FontSize = 15;
    Labul.Pos3D = Vector(497, -89.49429, 14);
    Labul.Rotation3D = Vector(2.0, 0, 3.1);
    Labul.Size3D = Vector(4, 5.0, 5.0);
 
}
 
function Script::ScriptProcess() {
  local wpts = GUI.WorldPosToScreen(Labul.Pos3D);
    Labul.Pos = VectorScreen(wpts.X, wpts.Y);
} where to add color in this label and how o set vectors of difrnt locations
#621
General Discussion / NPC
Dec 28, 2016, 07:51 PM
need npc i found this link by
kennedyarz Link: http://s000.tinyupload.com/index.php?file_id=35741548403099381299 how to use this shit
#622
General Discussion / Re: 3D text draw?
Sep 16, 2016, 02:32 PM
Quote from: LuisModsHD on Aug 15, 2016, 05:34 AM
Quote from: Doom_Kill3R on Aug 08, 2016, 12:23 PMThere is always an alternate way
https://www.youtube.com/watch?v=p_vkR7oH7g8&feature=youtu.be#

hey bro could you give me the function of this function? Thank you
how to put 3d text labesl any idea

test <-- null;
function Script::ScriptLoad()
{
   test <- GUILabel(Position(-1864.62 382.307 669.333) , colour(255,265,234), "Hello World"));
   test.AddFlags(GUI_FLAG_3D_ENTITY);
   test.WorldPosToScreen(Vector(50,50));
   test.Set3DTransform(Vector(-1864.62 382.307 669.333));
   GUIInstance.AddChild(test);
}

not working any step by step help,
need this this badly
#623
YUP got it working thnx for help..
#624
General Discussion / Re: Color Gui Textdraw
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)..
#625
It's easy to make print messages but it's nt wrking in client side function
#626
General Discussion / Re: Color Gui Textdraw
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));

#627
General Discussion / GUI PRINT not wrking?
Sep 15, 2016, 07:37 PM
GUI PRINT NOT WORKING IT DOES NOT DISPLAY ANY MESSAGE LIKE



code is
function Script::ScriptLoad()
{
Print("Client side scripts loaded.");
}
#628
General Discussion / Re: Color Gui Textdraw
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.");
}
 }

#629
General Discussion / Re: Color Gui Textdraw
Sep 15, 2016, 06:10 PM
not wrking bro
#630
General Discussion / Re: Color Gui Textdraw
Sep 15, 2016, 05:00 PM
Memo.Colour(any color here)??