16.01.2011, 22:55
How can i stop the spamming when i am in the area?
I get sammed this when i am nrear the area:
You entered the area!
You entered the area!
You entered the area!
You entered the area!
ect.. untill i leavethe area
I get sammed this when i am nrear the area:
You entered the area!
You entered the area!
You entered the area!
You entered the area!
ect.. untill i leavethe area
pawn Код:
#include <a_samp>
forward Test();
public OnFilterScriptInit()
{
SetTimer("Test", 1000, true);
return 1;
}
public Test()
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerInRangeOfPoint(i, 7.0, 2239.7747, 2430.8074, 3.2734))
{
SendClientMessage(i,0xFFFFFFFF,"You entered the area!");
return 1;
}
return 1;
}
return 1;
}