12.05.2012, 15:55
(
Last edited by Don_Speed; 13/05/2012 at 12:03 PM.
)
Hey Guys I've been here and Don_Speed and Teaching Of What To Wear Types of 7 + Image
Screen Background ...
Some of them are
back2
back3
back4
back5
back6
back7
back8
You Can Tar These Images Finding this mode:
1 Download the program txdworkshop
2nd Place In Folder Gta
3 Click Open TXD In
4 ° fronten2 Import File, which you'll Photos Extras
extra
5 ° In Folder txd Also Has More Photos
6 Image one
Here We A Sample Code
ATT Don_Speed
Screen Background ...
Some of them are
back2
back3
back4
back5
back6
back7
back8
You Can Tar These Images Finding this mode:
1 Download the program txdworkshop
2nd Place In Folder Gta
3 Click Open TXD In
4 ° fronten2 Import File, which you'll Photos Extras
extra
5 ° In Folder txd Also Has More Photos
6 Image one
Here We A Sample Code
pawn Code:
new Text:Don;
public OnGameModeInit()
{
Don = TextDrawCreate(0.0, 0.0, "fronten2:back4");
TextDrawBackgroundColor(Don, 255);
TextDrawFont(Don, 4);
TextDrawLetterSize(Don,0.290000, 1.300000);
TextDrawColor(Don, -1);
TextDrawSetOutline(Don, 0);
TextDrawSetProportional(Don, 1);
TextDrawSetShadow(Don, 1);
TextDrawUseBox(Don, 1);
TextDrawBoxColor(Don, 255);
TextDrawTextSize(Don, 639.000000, 448.000000);
for(new i; i < MAX_PLAYERS; i ++)
{
if(IsPlayerConnected(i))
{
TextDrawShowForPlayer(i, Don);
}
}
return 1;
}
public OnPlayerConnect(playerid)
{
TextDrawShowForPlayer(playerid, Don);// cria a imagem
return 0;
}
public OnPlayerSpawn(playerid)
{
TextDrawHideForPlayer(playerid, Don);//destroi a imagem
return 0;
}