#include <a_samp>
new Text:informacje;
public OnGameModeInit()
{
informacje = TextDrawCreate(201, 458, "Info: Moje info");
TextDrawFont(informacje, 3);
TextDrawSetOutline(informacje, 0);
return true;
}
public OnPlayerConnect(playerid)
{
TextDrawShowForPlayer(playerid, informacje);
return true;
}
public OnPlayerDisconnect(playerid, reason)
{
TextDrawHideForPlayer(playerid, informacje);
return true;
}