28.12.2010, 07:25
Hey.
I've previously had a problem with this feature. The problem is now that when i get to the area i selected. Nothing happenes
Thanks
I've previously had a problem with this feature. The problem is now that when i get to the area i selected. Nothing happenes
pawn Код:
public PortGates(playerid)
{
if(IsPlayerInRangeOfPoint(playerid, 20, 2400.6038,-2266.5767,13.0929)) // Enter Port!
{
PlayerPlaySound(playerid, 1153, 0, 0, 0);
GivePlayerMoney(playerid, -100);
GameTextForPlayer(playerid, "~w~ You have paid $100 to go to the port!",5000,5);
MoveObject(PORTOPEN,2405.7924804688, -2266.5617675781, 13.721887588501, 3.00);
SetTimer("close", 6000, 0);// Gate Is Open For 6 Seconds
if(!IsPlayerInAnyVehicle(playerid)) return SendClientMessage(playerid, COLOR_RED,"You Are Not In A Vehicle!");
}
if(IsPlayerInRangeOfPoint(playerid, 20, 2401.5337,-2254.5486,13.1909)) // Exit Port!
{
PlayerPlaySound(playerid, 1153, 0, 0, 0);
GivePlayerMoney(playerid, -100);
GameTextForPlayer(playerid, "~w~ You have paid $100 to pass into los santos!",5000,5);
MoveObject(PORTOPEN1,2399.0498046875, -2259.9155273438, 13.582779884338, 3.00);
SetTimer("close", 6000, 0);// Gate Is Open For 6 Seconds
if(!IsPlayerInAnyVehicle(playerid)) return SendClientMessage(playerid, COLOR_RED,"You Are Not In A Vehicle!");
}
return 1;
}