14.01.2015, 17:26
how to fix this ? this textdraw not moving
Код:
public OnPlayerSpawn(playerid) { for(new i = 0; i < MAX_PLAYERS; i++) { if(IsPlayerConnected(i)) { new string[128]; format(string,sizeof(string),"~b~Score: ~y~%d ~b~Ping: ~y~%d ~b~FPS: ~y~%d ~b~Players: ~y~%d ~b~Skin: ~y~%d",GetPlayerScore(playerid),GetPlayerPing(playerid),GetPlayerFPS(playerid),GetOnLinePlayers(),GetPlayerSkin(playerid)); TextDrawSetString(TextdrawInfo[playerid], string); TextDrawShowForPlayer(playerid, TextdrawInfo[playerid]); SetTimer("TexdrawInfo", 1000, 1); } }