Help with Zamaroht's Textdraw
#1

Hi , i'm using this TextDraw Editor : https://sampforum.blast.hk/showthread.php?tid=117851

The Problem is whene i close the Samp-Server and Open it again , i connect InGame , but i don't see the TextDraw, so i must click on Load Project (my project) so it appear, How to make it shown itSelf (without Load project...)

Note: i have click on Self-Working , and click on "show the text draw all the times" but still not Working

Thanks for Helping .
Reply
#2

Try to watch out in your scriptfiles Folder, in TD.pwn or whatever and you will see the Problem, you must copy the TD in your GM or in a FS
Reply
#3

I Have a Block Note with the Name Site:
PHP код:
// TextDraw developed using Zamaroht's Textdraw Editor 1.0

// On top of script:
new Text:Textdraw1;

// In OnGameModeInit prefferably, we procced to create our textdraws:
Textdraw1 TextDrawCreate(3.000000430.000000"/aide /report /n /rapport");
TextDrawBackgroundColor(Textdraw1255);
TextDrawFont(Textdraw13);
TextDrawLetterSize(Textdraw10.5000001.000000);
TextDrawColor(Textdraw116777215);
TextDrawSetOutline(Textdraw10);
TextDrawSetProportional(Textdraw11);
TextDrawSetShadow(Textdraw11);

// You can now use TextDrawShowForPlayer(-ForAll), TextDrawHideForPlayer(-ForAll) and
// TextDrawDestroy functions to show, hide, and destroy the textdraw. 
Reply
#4

Put this at the Top of the Script:
pawn Код:
new Text:Textdraw1;
Put this at OnGameModeInit:
pawn Код:
Textdraw1 = TextDrawCreate(3.000000, 430.000000, "/aide /report /n /rapport");
TextDrawBackgroundColor(Textdraw1, 255);
TextDrawFont(Textdraw1, 3);
TextDrawLetterSize(Textdraw1, 0.500000, 1.000000);
TextDrawColor(Textdraw1, 16777215);
TextDrawSetOutline(Textdraw1, 0);
TextDrawSetProportional(Textdraw1, 1);
TextDrawSetShadow(Textdraw1, 1);
And this at OnPlayerConnect:
pawn Код:
TextDrawShowForPlayer( playerid, Textdraw1 );
Reply
#5

Thanks a lot !
Reply
#6

No problem...
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)