13.01.2013, 14:51
(
Последний раз редактировалось Schocc; 13.01.2013 в 15:30.
)
Quote:
pawn Код:
|
Se for usar TextDraw mude a funзгo
Pawn Code Base:
pawn Код:
new Text:txd; //topo do gamemode
public OnGameModeInit( )
{
txd= TextDrawCreate(150,120, "_"); //Verifique as cordenadas
return true;
}
public OnPlayerConnect( playerid )
{
new XX[ 60 ], name[ MAX_PLAYER_NAME + 1 ];
if(PlayerInfo[playerid][pSocio] >= 4)
{
GetPlayerName( playerid, name, MAX_PLAYER_NAME +1 );
format( XX, sizeof( XX ), "%s, Socio conectado", name );
TextDrawSetString( txd, XX );
TextDrawShowForAll( txd );
return true;
}