13.03.2014, 22:22
Any shape might work, but a circle or sphere is probably the most fitting. And yes, -1 means all. It works just like pickups, honestly;
pawn Код:
new gMyArea;
gMyArea = CreateDynamicSphere(...);
public OnPlayerEnterDynamicArea(playerid, areaid)
{
if(areaid == gMyArea)
{
// stuff
}
return 1;
}