01.08.2015, 15:47
Update your server to 0.3z R2 or use this
pawn Код:
forward skintimer();
public skintimer()
{
for(new i; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i)) continue;
/* You should add a condition here to know if the player spawned. */
PlayerTextDrawSetPreviewModel(i, invalid[i], GetPlayerSkin(i));
PlayerTextDrawShow(i, invalid[i]);
}
return 1;
}