12.05.2010, 10:17
Hello guys i made an alarm system but the problem is only the guy hotwires the car hears it... Can somone help me? this is the code:
Код:
forward Alarmstart(playerid);
public Alarmstart(playerid)
{
if(alarmon[playerid] <= 30 )
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if (ProxDetectorS(5.0, playerid, i))
{
alarmon[playerid] += 1;
PlayerPlaySound(i, 1147, 0.0,0.0,0.0);
alarmtimer = SetTimerEx("Alarmstart",1000,0,"i",playerid);
return 1;
}
}
}
}

