06.09.2015, 18:56
Hi guys,
I'm trying to make a stretcher command and I'm having some issues.
When you drop the stretcher, it doesn't face the angle the player is facing, it faces the same position every time.
No matter where I am looking, the head of the stretcher will always face WEST.
I'm trying to make a stretcher command and I'm having some issues.
When you drop the stretcher, it doesn't face the angle the player is facing, it faces the same position every time.
No matter where I am looking, the head of the stretcher will always face WEST.
PHP код:
CMD:stretcher(playerid, params[])
{
static
type[24],
Float:x,
Float:y,
Float:z,
Float:angle;
if (GetFactionType(playerid) != FACTION_MEDIC)
return SendErrorMessage(playerid, "You do not have permission to use this command.");
if (!strcmp(type, "get", true))
{
for (new i = 0; i != MAX_VEHICLES; i ++) if (IsPlayerNearBoot(playerid, i) && GetVehicleModel(i) == 416)
{
SetPlayerAttachedObject(playerid, 1, 1997, 1, -1.106504, 1.504988, 0.031584, 0.000000, 89.566635, 0.000000);
}
}
if (!strcmp(type, "drop", true))
{
GetPlayerPos(playerid, x, y, z);
GetPlayerFacingAngle(playerid, angle);
RemovePlayerAttachedObject(playerid, 1);
CreateObject(1997, x, y, z-1, 0.0, 0.0, 0.0, 50.0);
SetPlayerPos(playerid, x-1, y, z);
}
return 1;
}