Ga naar hoofdinhoud

NPC_SetVehicleHydraThrusters

waarschuwing

This function was added in omp v1.5.8.3079 and will not work in earlier versions!

Description

Sets the Hydra thruster direction for an NPC's vehicle when piloting a Hydra aircraft.

NameDescription
npcidThe ID of the NPC
directionThe thruster direction (0=forward, 1=backward)

Returns

Returns true if the operation was successful, false otherwise.

Examples

public OnPlayerCommandText(playerid, cmdtext[])
{
if (!strcmp(cmdtext, "/sethydrathrusters ", true, 19))
{
new npcid = PlayerNPC[playerid];
if (npcid == INVALID_NPC_ID)
return SendClientMessage(playerid, 0xFF0000FF, "You are not debugging a NPC.");

if (!NPC_IsValid(npcid))
return SendClientMessage(playerid, 0xFF0000FF, "Invalid NPC.");

new direction = strval(cmdtext[19]);

NPC_SetVehicleHydraThrusters(npcid, direction);
SendClientMessage(playerid, 0x00FF00FF, "NPC %d hydra thrusters set to %d", npcid, direction);

return 1;
}
return 0;
}

Notes

  • Only works with Hydra aircraft (vehicle ID 520)
  • Direction 0 = forward thrusters (jet mode)
  • Direction 1 = downward thrusters (VTOL mode)
  • Use NPC_GetVehicleHydraThrusters to check current direction

No specific callbacks are triggered by this function.