05.11.2011, 01:07
quando coloco um determinado fs o server fica off, quando eu tiro ele volta, mas quando ligo de casa pega tudo numa boa, o que pode ser?
for(new i = 0; i <= MAX_PLAYERS; i++)
{
if(!evento[i]) return SendClientMessage(playerid, -1, "[BDP] Evento nгo estб aberto");
if(!damas[0][i])
{
SetPlayerPos(playerid, 2139.7417,-4206.8960,14.7203);
SetTimerEx("colocarcarro", 1000, false, "d", playerid);
damas[0][i] = true;
format(msg, sizeof(msg), "[BDP] %s foi para o evento Damas {00FF00}1/12", pname);
SendClientMessage(i, -1, msg);
Block[playerid] = true;
return 1;//aqui pode atrapalhar o loop ?
}
public colocarcarro(playerid)
{
temcarro[playerid] = true;
new Float:x, Float:y, Float:z, Float:ang;
GetPlayerFacingAngle(playerid, ang);
GetPlayerPos(playerid, x, y, z);
car = CreateVehicle(495, x, y, z, ang, 7, 5, 60);
return PutPlayerInVehicle(playerid, car, 0);
}