PPC_trucking 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: PPC_trucking textdraw (
/showthread.php?tid=502430)
PPC_trucking textdraw -
d0nTtoucH - 24.03.2014
Anyone know how to remove the no job text textdraw? i want to leave only the text without the box
Re: PPC_trucking textdraw -
DerickClark - 24.03.2014
ok Post me your Textdraw code.
In your main gamemode.
Re: PPC_trucking textdraw -
d0nTtoucH - 24.03.2014
Quote:
Originally Posted by DerickClark
ok Post me your Textdraw code.
In your main gamemode.
|
i dont know where to find it .. if i find it i will remove it my self
Re: PPC_trucking textdraw -
MP2 - 24.03.2014
Ctrl+F
Re: PPC_trucking textdraw -
DerickClark - 24.03.2014
In PPC_Trucking Gamemode.
Look on OnPlayerConnect you going to see a textdraw Call // MissionText TextDraw setup
replace
pawn Код:
// MissionText TextDraw setup
APlayerData[playerid][MissionText] = TextDrawCreate(320.0, 430.0, " "); // Setup the missiontext at the bottom of the screen
TextDrawAlignment(APlayerData[playerid][MissionText], 2); // Align the missiontext to the center
TextDrawUseBox(APlayerData[playerid][MissionText], 1); // Set the missiontext to display inside a box
TextDrawBoxColor(APlayerData[playerid][MissionText], 0x00000066); // Set the box color of the missiontext
with
pawn Код:
// MissionText TextDraw setup
APlayerData[playerid][MissionText] = TextDrawCreate(320.0, 430.0, " "); // Setup the missiontext at the bottom of the screen
TextDrawAlignment(APlayerData[playerid][MissionText], 2); // Align the missiontext to the center
And see if it work.
Re: PPC_trucking textdraw -
d0nTtoucH - 24.03.2014
yes works thank you.
Re: PPC_trucking textdraw -
DerickClark - 24.03.2014
np...