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
CreateTextDraw does not exist in 0.4.
But working in Fuzzies System
what to do now any help?
Downgrade your server to rel003 if you want to use CreateTextdraw.
How i can Downgrade my server to 03rel003? Thanks IceFlake
first of all
Quote from: DarkRaZoR^ on Aug 21, 2017, 06:56 AMCreateTextDraw does not exist in 0.4.
and if u still want it in 04reI004 so use this
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;
}
}