-
Posts
761 -
Joined
-
Last visited
-
Days Won
1
Content Type
Profiles
Forums
Calendar
Tutorials
Downloads
Gallery
Everything posted by The Loot
-
It just names a spawned object "Unnamed", and I don't thin it'd be causing any problems. Names are really only needed if a script looks for an object with a certain name.
-
Can you upload your EnterCar script for me? And is your brush truck having issues still?
-
Did you by chance happen to remove the command DriveAwayPerson from your Hazmat guys?
-
You guys did an awesome job! Love what you did with vehicle parking, even the small touches at the hospital (I had a similar idea, now I might borrow your method)!
-
A heads up folks! I am working on getting my edited (and hopefully streamlined) Water Supply scripts packaged together with a step-by-step readme (text only for now) so it will be a little easier for teams to add it to their mod without a lot of hassle! All I need is a Go Ahead from Hoppah, and some finishing touches on the readme, and I'll submit it to the downloads section here.
-
Adding new units comes down to these steps. Units folder. Infotexts and Portraits files in the Lang folder. Portraits and Freeplaybase files in the Specs folder. Model and prototype files. Misc script edits where similar vehicles are defined and mentioned. I did away with most of the script edits by adding Dummy Commands that scripts look for rather than the prototype. This also allows better control over what vehicles have what added equipment available.
-
Awesome stuff.
-
A bump, but I think I found what was keeping people with firehoses from entering Open Houses. SetNeedsConnectedHose(CFN_FAIL);I commented out that line and it now works.
-
Is this possible? To simplify things, I was thinking of hiding certain commands, ones that are targeted and don't need the icon to be pressed to be activated. Some examples would be Arrest, DriveAwayPerson, Pickup, EnterCar, EnterHouse, Cool, Extinguish, and so forth. I assume there's a parameter that will hide the command, but I wonder if that will effect the actual use of it.
-
You can edit "fp_freeplay" in the Mission script folder. Comment out these lines: GameObjectList l2("random_check");if (l2.GetNumObjects() > 0){ GameObject obj = l2.GetObject(0); obj.SetUserData(1); obj.Hide(); Game::ExecuteCommand("RandomSpawn", &obj);}
-
I believe they must be installed in the game's corona folder in order to show up.
-
There hasn't been a release in a while, and those units weren't included in the last version.
-
Very nice.
-
Fire and Smoke Damage Script [Need Help]
The Loot replied to itchboy's topic in Modding Related Support
Interesting. I think one thing that would be nice to have added is that NPC people would need to be made to try to move away from the fire or smoke. They don't always flee, and might not flee far enough, though that provides opportunities to remove them yourself. -
Well, I might have somewhat fixed that person switching "bug" with the remove supply line, wye, and extension commands. Took one little line. n->ChangePrototype(p.GetPrototypeFileName()); Yep. I've still got plenty of work to do and details to finish, and that's before getting any permissions I might need. OT: I did figure out how to make it so that when I select two paramedics, the EMT case now turns in Get Stretcher, and activates correctly. That's one less command I need to have on my people. I'm going to try that, and Key Press parameters on others and see how that works out.
-
Okay, so I decided to take a crack at fixing the proto switch "bug" that comes along with using a different person to disconnect/uninstall supply lines, wyes, and extensions. All it took was a line like this. n->ChangePrototype(p.GetPrototypeFileName());The only issue is that the firehose that the original person had turns invisible. Otherwise, seems fine.
-
I've run into the GetEquipment limit with my LA mod personnel, so I decided to re-specialize my paramedics and remove fire-hose and pump commands, that way they are focused on rescue and medical tasks. I have some ideas on some workarounds, but they might be complicated. I also have an idea on fixing that person switch with the supply line remove, plus the wye and hose extension commands. Just waiting for some professional help.
-
Hmm, images seem broken.
-
Does it show up during mission? If so, did you add the proto file to "freeplaybase" in the specs folder?
-
I've never seen a script myself that utilizes what the Fire Plane normally does. Considering that everything in the game runs off a script, it should be possible, but you just have to know how the base EM4 game functions use scripting to do what they do.
-
Awesome stuff! Your dispatching system, along with Winterburg (of course), were huge influences on the personal changes I made to my LA Call script system.
-
[Working!] Policestation that functions like a Fire station
The Loot replied to Tim Derks's topic in Alteration Help
I don't believe dual-purposing it would harm anything, other than maybe causing things to get stuck should a vehicle and person try to spawn at the same time. I'll have to use a finer comb and see if I can find an issue. -
I ran into that alpha issue with the LA Ladder textures. Try using the image file here.
-
[Working!] Policestation that functions like a Fire station
The Loot replied to Tim Derks's topic in Alteration Help
OK, I'm not seeing anything jumping out of the script itself that would cause the issue. First suggestion: make sure what your constants point to exist on the map and are named correctly. I think it's caused by "if"s not finding what they need to in order to create the vector "spawn", thus it throws that error when it tries to place the person there. So check these on the map: "policestation_spawn""spawn_police1""policestation_spawn2""police_squad01""police_squad02""police_squad03" -
A more complex traffic stop (without curbside pullover), and possible pursuits from them, are possible, but would be a bit complicated to set up.