20.03.2012, 18:30
pawn Код:
new Text:Baixo;
public OnGameModeInit()
{
Baixo = TextDrawCreate(1.000000,435.000000," ~w~~>~~b~~h~~h~Comandos Uteis:~r~/ajuda /comandos /teleportes /carros ~w~~<~");
TextDrawUseBox(Baixo,1);
TextDrawBoxColor(Baixo,0x00000066);
TextDrawTextSize(Baixo,641.000000,0.000000);
TextDrawAlignment(Baixo,0);
TextDrawBackgroundColor(Baixo,0x000000ff);
TextDrawFont(Baixo,3);
TextDrawLetterSize(Baixo,0.499999,1.300000);
TextDrawColor(Baixo,0xffffffff);
TextDrawSetOutline(Baixo,1);
TextDrawSetProportional(Baixo,1);
TextDrawSetShadow(Baixo,1);
///
//outras coisas aqui...
return true;
}
public OnPlayerConnect(playerid)
{
TextDrawShowForPlayer(playerid, Baixo);
return true;
}
public OnPlayerDisconnect(playerid, reason)
{
switch(reason)
{
case 0, 1, 2: TextDrawHideForPlayer(playerid, Baixo);
}
return true;
}