Ez csak tedd be a módba és válá
#include <a_samp>
new zone;
public OnGameModeInit()
{
zone = GangZoneCreate(1260,1146,1728,1854);
return 1;
}
public OnPlayerRequestSpawn(playerid)
{
GangZoneShowForPlayer(playerid, zone, 0xFFFFFF40);
return 1;
}
public OnGameModeExit()
{
GangZoneDestroy(zone);
return 1;
}
Ezt a módba tedd be!
stock IsPlayerInArea(playerid, Float:minx, Float:maxx, Float:miny, Float:maxy)
{
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
return minx < x < maxx && miny < y < maxy;
}
Ez a jármû lehíváskor!
if(IsPlayerInArea(playerid,1260,1728,1146,1854)) return SendClientMessage(playerid,-1,\"Nem kérhetel le spawn helyen kocsit!\");