16.02.2015, 22:12
http://i.imgur.com/ot2FqrL.png
Isto й o que acontece quando tento spawnar no meu servidor .
Eu nгo mudei o gamemode sequer , de um momento para o outro comeзou assim .
OnPlayerSpawn
Й um simples servidor de testes , nгo tem nada muito "grande" para causar isto , acho eu.
Isto й o que acontece quando tento spawnar no meu servidor .
Eu nгo mudei o gamemode sequer , de um momento para o outro comeзou assim .
OnPlayerSpawn
pawn Код:
public OnPlayerSpawn(playerid)
{
SetPlayerPos(playerid,1469.3359, -1732.2891, 15);
SetTimerEx("AtualizarPing", 100, true, "n", playerid);
new string[64], nome[MAX_PLAYERS];
GetPlayerName(playerid, nome[playerid], MAX_PLAYER_NAME);
format(string, sizeof(string),"%s",nome[playerid]);
TextDrawSetString(Textdraw6, string);
TextDrawShowForPlayer(playerid, Textdraw6);
new string1[10];
format(string1, sizeof(string1), "%d/%d", PlayersOnline,GetMaxPlayers());
TextDrawSetString(Textdraw8, string1);
TextDrawShowForPlayer(playerid, Textdraw8);
TextDrawShowForPlayer(playerid, Textdraw0);
TextDrawShowForPlayer(playerid, Textdraw1);
TextDrawShowForPlayer(playerid, Textdraw2);
TextDrawShowForPlayer(playerid, Textdraw3);
TextDrawShowForPlayer(playerid, Textdraw4);
TextDrawShowForPlayer(playerid, Textdraw5);
TextDrawShowForPlayer(playerid, Textdraw7);
TextDrawShowForPlayer(playerid, Projetonome);
return 1;
}