[Release][Standalone] Fully Working Stretcher for EMS | Easy to add to other Frameworks




[menu not included]

T1NmFHW
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]

42 Likes

Bomb ass script. A ton of fun when we use it in our server.

7 Likes

Such an amazing script!!! Honestly the most fun I have ever had as EMS in any server! This is by far the best stretcher release!

7 Likes

im EMS in BCDOJ. The script helps a lot <3 Amazing script

5 Likes

Honestly an amazing script. This helps out ems so much and makes rp way more realistic than it already is. Peter put in so much effort towards this. Much respect

4 Likes

Because of this epic script, I found passion in doing EMT stuff. It’s amazing!

2 Likes

This script is pretty amazing, I just used it for the first time in server today. Really does make EMS RP 10 times better.

1 Like

Thanks for a creative script on the forums! Looks awesome.

Only thing I noticed, is they can be spam spawned and not sure how to delete them once their in.

1 Like

I was wondering is there a way to remove a stretcher after you spawn it?

take it i need a bigger ambo hahahahaha also how would i be able to get that menu your using in the video :slight_smile:

I created this line and it works:

RegisterCommand(‘delmaca’, function()
local wheelchair = GetClosestObjectOfType(GetEntityCoords(PlayerPedId()), 10.0, GetHashKey(‘prop_ld_binbag_01’))

if DoesEntityExist(wheelchair) then
	DeleteEntity(wheelchair)
end

end, false)

6 Likes

changed line 88: ems.lua

in my ambulance.

AttachEntityToEntity (closestObject, veh, 0.0, 0.0, -1.7, -1.0, 0.0, 0.0, 90.0, false, false, true, false, 2, true)

5 Likes

Version 1.2
Added /ro to remove any stretchers within a 2.5 m radius

Sorry Guys I had this script in my server and had the remove object apart of my framework base

If use the framework version there are ways to blacklist it if you have the framework installed.

Any chance can add that ambo what is in the videos with this resource by any chance as would help so many people :slight_smile:

1 Like

That ambo is a custom one i cant give it out. If you just play with the x, y, z on line 88: ems.lua
you can move the stretcher while it is in the car @Kalbino

2 Likes

Maybe a command for closing the doors as if people don’t have the vehicle controls menu then the back doors get stuck open as /openbaydoors don’t close the doors :slight_smile:

they do close it, it toggles them open and close. You need to be the driver of the vehicle then get out of the car then use the command @Kalbino

3 Likes

they script help me fix server today tomorrow. i was wonder iF script is you give me plz:laughing:

2 Likes