CreateTextdraw Problem

Started by [VL]BlacK.GoKu^, Aug 21, 2017, 06:31 AM

Previous topic - Next topic

[VL]BlacK.GoKu^

Hello friends i am using this Snippet i have added this in my server its Working fine. But when i upload my server on Cloudwards.es The System says CreateTextdraw Does not exists

Screenshot: http://ibb.co/cbnAu5
Snipper: http://forum.vc-mp.org/?topic=1209.msg36170#new

Cool

CREATE textdraw function has been removed in the latest updates use gui label

MEGAMIND

use this instead of Create Textdraw


test <- null;
function Script::ScriptLoad()
{
 {
test <- GUIMemobox( VectorScreen( 1188, 670 ), VectorScreen( 80,70), Colour(255,255,255));
test.AddLine( "text here", Colour(122, 122, 255) );
test.AddLine( "text here 2", Colour( 255, 122, 122));
test.RemoveFlags( GUI_FLAG_BACKGROUND | GUI_FLAG_BORDER );
test.FontFlags = GUI_FFLAG_OUTLINE | GUI_FFLAG_ITALIC;
test.FontName = "Tahoma";
test.FontSize = 15;
}
  }

Retard

Quote from: MEGAMIND on Aug 21, 2017, 11:28 AMuse this instead of Create Textdraw


test <- null;
function Script::ScriptLoad()
{
 {
test <- GUIMemobox( VectorScreen( 1188, 670 ), VectorScreen( 80,70), Colour(255,255,255));
test.AddLine( "text here", Colour(122, 122, 255) );
test.AddLine( "text here 2", Colour( 255, 122, 122));
test.RemoveFlags( GUI_FLAG_BACKGROUND | GUI_FLAG_BORDER );
test.FontFlags = GUI_FFLAG_OUTLINE | GUI_FFLAG_ITALIC;
test.FontName = "Tahoma";
test.FontSize = 15;
}
  }
Thanks for telling
Just another retard roaming around.