[menu not included]
Hello,
Back again with a fully working stretcher for FiveM after many people requested me to publish it. You can push and get into the stretcher. Also, you can put it into and out of ambulances (Coords need to be changed based on the model ).
To Use
/spawnstr --Spawns Stretcher
/pushstr --Pushes Stretcher
/getintostr --Get into the Stretcher
/togglestr --Toggle Stretcher into and out of the car in front of you
/openbaydoors – opens the back two doors of an ambulance
click X to get out of the stretcher
click X to stop pushing
Download
There is going to be two downloads one standalone and one with compatability with my FrameWork that I just updated.
Link to my FrameWork: Click Here
Stretcher With FrameWork Version 1.0: Click Here
[Standalone] Version 1.0: Click Here
Streamable Stretcher Prop: stretcher.zip (1.4 MB) or go to the original website post: Click Here
Or you can use the newest stretcher prop by Candice_211 Chick Here to download it!
Note
You will need Mythic Notifications for the FrameWork Version
Menu & Common Questions
The way I have it in my menu is that it calls the command, if you know how to make esx menus then just add
ExecuteCommand("Here")
where “Here” is the command you want the input menu to execute
the commands are
-- menu button
ExecuteCommand("spawnstr")
-- menu button
ExecuteCommand("pushstr")
-- menu button
ExecuteCommand("getintostr")
-- menu button
ExecuteCommand("togglestr")
-- menu button
ExecuteCommand("openbaydoors")
Example
Citizen.CreateThread(function()
WarMenu.CreateMenu('main', 'Do /onduty')
WarMenu.CreateMenu('ems', 'EMS')
WarMenu.CreateSubMenu('closeMenu', 'main', 'Are you sure?')
while true do
if WarMenu.IsMenuOpened('main') then
if emsduty then
if WarMenu.MenuButton('EMS', 'ems') then -- Open LEO Menu
end
end
if WarMenu.MenuButton('Exit', 'closeMenu') then -- Exit Menu
end
WarMenu.Display()
elseif WarMenu.IsMenuOpened('ems') then
if WarMenu.Button("Spawn Stretcher") then
ExecuteCommand("spawnstr")
WarMenu.Display()
elseif WarMenu.Button("Push Stretcher") then
ExecuteCommand("pushstr")
WarMenu.Display()
elseif WarMenu.Button("Put/take Stretcher Out of car") then
ExecuteCommand("togglestr")
WarMenu.Display()
elseif WarMenu.Button("Open Ambulance Doors") then
ExecuteCommand("openbaydoors")
WarMenu.Display()
elseif WarMenu.Button("Get into Stretcher") then
ExecuteCommand("getintostr")
WarMenu.Display()
end
WarMenu.Display()
elseif WarMenu.IsMenuOpened('closeMenu') then
if WarMenu.Button('Yes') then
WarMenu.CloseMenu()
elseif WarMenu.MenuButton('No', 'main') then
end
WarMenu.Display()
elseif IsControlJustReleased(0, 166) then --F5 by default
WarMenu.OpenMenu('main')
end
Citizen.Wait(0)
end
end)
[This menu won’t work on its own you need WarMenu this is just an example]