From a074c39050827e70f3f0119d4229152a664b468c Mon Sep 17 00:00:00 2001 From: Master Mind <48193931+iboss21@users.noreply.github.com> Date: Sat, 15 Oct 2022 20:42:11 -0400 Subject: [PATCH] descriptions has been added in code plates, models, and car --- hh_aidoc[QB]/client.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hh_aidoc[QB]/client.lua b/hh_aidoc[QB]/client.lua index 4152bb1..1d2e49b 100644 --- a/hh_aidoc[QB]/client.lua +++ b/hh_aidoc[QB]/client.lua @@ -34,13 +34,13 @@ end) function SpawnVehicle(x, y, z) spam = false - local vehhash = GetHashKey("ambulance") + local vehhash = GetHashKey("ambulance") -- "carmodelnamehere" you can add any car u would like to be use of as EMS local loc = GetEntityCoords(PlayerPedId()) RequestModel(vehhash) while not HasModelLoaded(vehhash) do Wait(1) end - RequestModel('s_m_m_doctor_01') + RequestModel('s_m_m_doctor_01') -- request model of NPC while not HasModelLoaded('s_m_m_doctor_01') do Wait(1) end @@ -51,7 +51,7 @@ function SpawnVehicle(x, y, z) mechVeh = CreateVehicle(vehhash, spawnPos, spawnHeading, true, false) ClearAreaOfVehicles(GetEntityCoords(mechVeh), 5000, false, false, false, false, false); SetVehicleOnGroundProperly(mechVeh) - SetVehicleNumberPlateText(mechVeh, "HHFW") + SetVehicleNumberPlateText(mechVeh, "HHFW") -- change the name to have custsom plates on EMS car. "carplatenamehere" SetEntityAsMissionEntity(mechVeh, true, true) SetVehicleEngineOn(mechVeh, true, true, false)