PPC_trucking textdraw
#1

Anyone know how to remove the no job text textdraw? i want to leave only the text without the box
Reply
#2

ok Post me your Textdraw code.
In your main gamemode.
Reply
#3

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
Reply
#4

Ctrl+F
Reply
#5

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.
Reply
#6

yes works thank you.
Reply
#7

np...
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)