[PAID][QBCORE] Nodus NPC Hostage | Hostage NPCs around the city

Welcome to Nodus NPC Hostage

  1. Fully customizable hostage system script for GTA V: Create your own hostage scenarios in the city of Los Santos using NPCs.
  2. Realistic NPC behavior: NPCs can be captured, followed, released, or made to surrender with the press of a key.
  3. Dynamic interaction: NPCs respond to player actions, such as aiming at them or getting in and out of vehicles.
  4. Immersive animations: NPCs perform surrender animations upon player command, enhancing the realism of the gameplay experience.
  5. Easy integration and modification: The script is open-source and optimized for smooth performance, allowing developers to customize and expand its functionalities.

Preview
Video

Purchase on Tebex

Nodus NPC Hostage

Other Releases

Nodus Car Spawn
Nodus Treasure Hunting

Code is accessible Yes
Subscription-based No
Lines (approximately) 200
Requirements QBCore
Support Yes

IM GETTING A ERROR AT THIS CODE QBCore.Functions.ShowFloatingHelpNotification(helpText, GetEntityCoords(pedcaptured))

at QBcore add this on client/functions

QBCore.Functions.ShowFloatingHelpNotification = function(msg, coords)
AddTextEntry(‘qbFloatingHelpNotification’, msg)
SetFloatingHelpTextWorldPosition(1, coords)
SetFloatingHelpTextStyle(1, 1, 2, -1, 3, 0)
BeginTextCommandDisplayHelp(‘qbFloatingHelpNotification’)
EndTextCommandDisplayHelp(2, false, false, -1)
end

The error continues appering, some help?

1 Like

Link for the discord for support?

Please insert this code above Citizen.CreateThread.

QBCore.Functions.ShowFloatingHelpNotification = function(msg, coords)
    AddTextEntry("qbFloatingHelpNotification", msg)
    SetFloatingHelpTextWorldPosition(1, coords.x, coords.y, coords.z + 1.0)
    SetFloatingHelpTextStyle(1, 1, 2, -1, 3, 0)
    BeginTextCommandDisplayHelp("qbFloatingHelpNotification")
    EndTextCommandDisplayHelp(2, false, false, -1)
end