15.12.2010, 15:24
You don't need a tutorial 
This is very simple,use something like:
This is THE MOST SIMPLEST WAY!
You still need to define WonArea1 cuz i can't script everything here,sorry!
But remember,if you need a complex script don't use this,this is just a model!

This is very simple,use something like:
pawn Код:
public OnPlayerSpawn(...)
{
SetTimer("areacheck",500,1);
return 1;
}
forward areacheck(playerid);
public areacheck(playerid)
{
if(IsPlayerInRangeOfPoint(playerid,5.0,x,y,z);//xyz are the coordinates for the point from where you can capture the area
{
if(Gteam[playerid] == your team)
{
GangZoneFlashForAll(gangzone,COLOR_RED);
SendClientMessageToAll(COLOR_RED,"Player is taking area (your area name) ");
SetTimer("WonArea1",15000,1);
}
else
{
SendClientMessage(playerid,"You need to be in the team (team name)");
}
}
return 1;
}
This is THE MOST SIMPLEST WAY!
You still need to define WonArea1 cuz i can't script everything here,sorry!
But remember,if you need a complex script don't use this,this is just a model!