CreateTextdraw Problem

Started by [VL]BlacK.GoKu^, Aug 21, 2017, 06:33 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

D4rkR420R

CreateTextDraw does not exist in 0.4.

[VL]BlacK.GoKu^

But working in Fuzzies System

[VL]BlacK.GoKu^


EK.IceFlake

Downgrade your server to rel003 if you want to use CreateTextdraw.

[VL]BlacK.GoKu^

How i can Downgrade my server to 03rel003? Thanks IceFlake

MEGAMIND

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;
}
  }