Help with Zamaroht's Textdraw - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Help with Zamaroht's Textdraw (
/showthread.php?tid=288870)
Help with Zamaroht's Textdraw -
ServerScripter - 09.10.2011
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 .
Re: Help with Zamaroht's Textdraw -
aRoach - 09.10.2011
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
Re: Help with Zamaroht's Textdraw -
ServerScripter - 09.10.2011
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.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);
// You can now use TextDrawShowForPlayer(-ForAll), TextDrawHideForPlayer(-ForAll) and
// TextDrawDestroy functions to show, hide, and destroy the textdraw.
Re: Help with Zamaroht's Textdraw -
aRoach - 09.10.2011
Put this at the Top of the Script:
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 );
Re: Help with Zamaroht's Textdraw -
ServerScripter - 09.10.2011
Thanks a lot !
Re: Help with Zamaroht's Textdraw -
aRoach - 09.10.2011
No problem...