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;
}
public OnPlayerConnect(playerid)
{
SetTimer("Hai",1000,false); //1second
return 1;
}
forward Hai(playerid);
public Hai(playerid)
{
print("Hai!");
return 1;
} //Only playerid 0 can work on this timer.
public close()
{
MoveObject(PORTCLOSED, 2405.7924804688, -2266.5617675781, 13.721887588501, 3.00);
MoveObject(PORTCLOSED1, 2398.8774414063, -2260.0964355469, 13.832779884338, 3.00);
return 1;
}
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);
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);
if(!IsPlayerInAnyVehicle(playerid)) return SendClientMessage(playerid, COLOR_RED,"You Are Not In A Vehicle!");
}
SetTimer("close", 6000, 0);// Gate Is Open For 6 Seconds
SetTimer("close", 6000, 0);// Gate Is Open For 6 Seconds
return 1;
}
if(IsPlayerInRangeOfPoint(playerid, 20, 2401.5337,-2254.5486,13.1909)) |