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: TextDraw (
/showthread.php?tid=409299)
TextDraw -
DerickClark - 21.01.2013
How to take the dark off the textdraw?
Re: TextDraw -
Threshold - 21.01.2013
https://sampwiki.blast.hk/wiki/TextDrawSetShadow
Use
pawn Код:
TextDrawSetShadow(mytextdraw, 0);
Re: TextDraw -
DerickClark - 21.01.2013
Код:
C:\Users\\gamemodes\PPC_Trucking.pwn(175) : error 017: undefined symbol "MyTextDraw"
C:\Users\\gamemodes\PPC_Trucking.pwn(176) : error 017: undefined symbol "MyTextDraw"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
Respuesta: Re: TextDraw -
RiChArD_A - 21.01.2013
Quote:
Originally Posted by BenzoAMG
|
I think he's talking about the box (TextDrawBox)
Re: Respuesta: Re: TextDraw -
Threshold - 21.01.2013
Quote:
Originally Posted by Lauder
I think he's talking about the box (TextDrawBox)
|
Yes. MyTextDraw was an example of where your textdraw should go.
You will have something like this in your script:
pawn Код:
textdraw = TextDrawCreate...
Whatever the textdraw id for the textdraw you are trying to fix is, replace MyTextDraw with it. This was merely an example.
EDIT: @Lauder
I wasn't talking to you in this post. xD
Respuesta: Re: Respuesta: Re: TextDraw -
RiChArD_A - 21.01.2013
Quote:
Originally Posted by BenzoAMG
Yes. MyTextDraw was an example of where your textdraw should go.
You will have something like this in your script:
pawn Код:
textdraw = TextDrawCreate...
Whatever the textdraw id for the textdraw you are trying to fix is, replace MyTextDraw with it. This was merely an example.
|
Ho ok
Re: TextDraw -
KevinSchuit - 21.01.2013
What do you axactly mean with take the dark off the textdraw?
If you want the box to be removed so you just have text use this.
TextDrawUseBox(The name of your textdraw here , 0);
1 is box enabled, 0 is box disabled.
If this helped please +rep me!
Re: TextDraw -
SilverKiller - 21.01.2013
Quote:
Originally Posted by DerickClark
Код:
C:\Users\\gamemodes\PPC_Trucking.pwn(175) : error 017: undefined symbol "MyTextDraw"
C:\Users\\gamemodes\PPC_Trucking.pwn(176) : error 017: undefined symbol "MyTextDraw"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
|
Seriously? replace MyTextDraw with your text draw name.
Respuesta: Re: Respuesta: Re: TextDraw -
RiChArD_A - 21.01.2013
Quote:
Originally Posted by BenzoAMG
Yes. MyTextDraw was an example of where your textdraw should go.
You will have something like this in your script:
pawn Код:
textdraw = TextDrawCreate...
Whatever the textdraw id for the textdraw you are trying to fix is, replace MyTextDraw with it. This was merely an example.
EDIT: @Lauder
I wasn't talking to you in this post. xD
|
What lol
Re: TextDraw -
DaRk_RaiN - 21.01.2013
Post the textdraw code if you still have problems.