16.04.2013, 19:29
Sim, eu sei isso, mas o que quero dizer й o seguinte:
vendo esse ai, estб definido no: OnPlayerSpawn, mas em vez do onplayerspawn eu quero por no botгo de avanзar. Como posso fazer isso?
pawn Код:
public OnPlayerSpawn(playerid)
{
// Anti-Spawnkill (5 seconds)
// Set their health very high so they can't be killed
SetPlayerHealth(playerid, 999999);
// Notify them
SendClientMessage(playerid, -1, "You are protected against spawn-killing for 5 seconds.");
// Start a 5 second timer to end the anti-spawnkill
SetTimerEx("EndAntiSpawnKill", 5000, false, "i", playerid);
}