Hey guys I have been looking all over the place trying to find out how to get the MCU to go to the hospital just like the other ambulances. So I was wondering if someone could help me with that please.

Getting the MCU to the hospital
#1
Posted 24 July 2014 - 07:57 AM
#2
Posted 28 July 2014 - 01:12 PM
It's quite a difficult piece of code, since the normal ambulances have 1 injured person, and 1 set of PM's with stretchers. So logically, code would be: Exit PM's + injured, go to spawn, drop off injured, get back in vehicle.
For the MCU, they have to pick up and drop off more victims. It probably can be done, but it's not easy.
Tim
PS. I might start messing around with it to get some scripting experience
[LA Mod] A Police Station that functions like a Fire Station, check it out!
Some scripting I could use some help with:
#3
Posted 28 July 2014 - 02:41 PM
The real issue is that the transports are not being carried by a paramedic team and are simply inside the vehicle. The hospital script looks for paramedic teams carrying a person, and then makes those exit the vehicle, move to the hospital, and then remove the person.
You could simply make the MCU a RTW vehicle instead of an ITW, but you'd have to have stretcher teams enter the vehicle with the person instead of being able to use anyone to just put them in the vehicle.
Hoppah's Limited Water Supply Script Redone! (Released 2014/7/29)
Looking for some minor modding assistance; any help is appreciated.
Handful of Bugs I've Encountered with Personal LA Mod Edit
Looking for Freeplay Event Tutorial
Treat Person Script: Heal script overhaul and replacement complete. Autoheal script in progress.
#4
Posted 28 July 2014 - 02:48 PM
He would need to make a script where paramedics fetch a patient from the vehicle, disembark, put patient in hospital, get back in MCU, and do it again. Seems like a simple loop script
for(int i =0; i < v.GetNumTransports(); i++)
{
do what i said.
do what i said.
}
#5
Posted 28 July 2014 - 03:24 PM
Exactly my idea, just loop it until it reaches 0 transports. Would have to look into it a bit more to get it working though.
[LA Mod] A Police Station that functions like a Fire Station, check it out!
Some scripting I could use some help with:
#6
Posted 28 July 2014 - 04:14 PM
I've been looking into this, I was just planning on having all paramedics leave the MCU and move to the entrance and then remove all transports. But not sure if it's worth the hassle.
#7
Posted 28 July 2014 - 04:20 PM
I've been looking into this, I was just planning on having all paramedics leave the MCU and move to the entrance and then remove all transports. But not sure if it's worth the hassle.
That would lead to a problem though..
If there are 6 paramedics and 9 victims, where will the 3 go. That's where the script of send and return comes in.
Once Im done with my models, I will be sure to get this script done.
#8
Posted 28 July 2014 - 04:22 PM
That would lead to a problem though..
If there are 6 paramedics and 9 victims, where will the 3 go. That's where the script of send and return comes in.
Once Im done with my models, I will be sure to get this script done.
No the paramedics leaving would be purely aesthetic. Then the game would just manually remove all transports, so it looks like they've been moved without actually moving them. If that makes sense?
#9
Posted 28 July 2014 - 04:23 PM
Yeah it makes sense, and scripting wise that would be the easiest by far. The other solution, manually unloading one by one would be awesome aesthetically though.
[LA Mod] A Police Station that functions like a Fire Station, check it out!
Some scripting I could use some help with:
#10
Posted 28 July 2014 - 04:25 PM
No the paramedics leaving would be purely aesthetic. Then the game would just manually remove all transports, so it looks like they've been moved without actually moving them. If that makes sense?
Oh.....that is indeed far easier to script. In my opinion, the manual method would look prettier, but opens the possibility for bugs.
#11
Posted 28 July 2014 - 04:30 PM
The same principle applies to the old system you'd just replace hiding child's for changing models. Again if that makes sense?
#12
Posted 28 July 2014 - 05:09 PM
So, if I understand correctly, you'd remove all the injured people from the MCU in 1 go, but to make it look good, you make the EMT's with stretchers walk back and forth, while switching between showing an injured person on a stretcher or not?
[LA Mod] A Police Station that functions like a Fire Station, check it out!
Some scripting I could use some help with:
#13
Posted 28 July 2014 - 07:00 PM
Ok thanks guys. I just want to mention that I did play around with the go to hospital script but I just couldn't get it to work at all.