27.02.2014, 18:53
I came to this subforum previously for a similar script, but I rewrote the script and it still isn't working like it should. It only spawns me at 1 of the 2 hospitals, even if I'm standing right at the other hospital. I plan on adding a third hospital, but can't do that if the first script doesn't work.
pawn Код:
new Float:hos[2];
stock SpawnToHospital(playerid)
{
dead[playerid] = 0;
hos[0] =GetPlayerDistanceFromPoint(playerid, 2034.1670,-1406.0623,17.2181);
hos[1] =GetPlayerDistanceFromPoint(playerid, 1177.3391,-1324.2300,14.0658);
//hos[2] = GetPlayerDistanceFromPoint(playerid, 1177.3391,-1324.2300,14.0658);
if (hos[0] < hos[1])
{
SetPlayerPos(playerid, 2034.1670,-1406.0623,17.2181);
SetPlayerFacingAngle(playerid, 125);
SetCameraBehindPlayer(playerid);
print("hos 0 is closer");
}
if (hos[0] > hos[1])
{
SetPlayerPos(playerid, 1177.3391,-1324.2300,14.0658);
SetPlayerFacingAngle(playerid, 90);
SetCameraBehindPlayer(playerid);
print("hos 1 is closer");
}
return 1;
}