-
Posts
757 -
Joined
-
Last visited
-
Days Won
1
Content Type
Profiles
Forums
Calendar
Tutorials
Downloads
Gallery
Everything posted by The Loot
-
Looking at your script file again, looks like you also changed line 371, from float dx = 250.f, dy = 0.f, dz = 0.f; to float dx = 0.f, dy = 0.f, dz = 0.f; Maybe that's causing the issue? Could you upload your LAFireStationStart.script file? I'm actually not sure exactly how the original LA Mod deals with spawning the Tiller in the station at start. Looks like there's the script that checks for vehicles at the map fire vehicle spawn to either add or delete the trailer, but nothing else seems implemented, as far as I can see. The Tiller isn't even set to spawn by default, just the Tower, and while the instructions say to change the prototype referenced there, there's nothing that would spawn the trailer.
-
Nothing else Tiller related changed? If the Cab spawns correct in the station, the trailer should spawn behind it correctly without any changes.
-
Problem script "ToHospital" for my mod
The Loot replied to Nickeltheredhusky's topic in Modding Related Support
"soundID" isn't properly set up because you're missing a declaration of what it is. You need the following somewhere before the first use of it: int soundID; Just stick it at the top of the script with the constants. -
Delaying unit time from purchase/order
The Loot replied to matte31's topic in Modding Related Support
Should be this one: -
Delaying unit time from purchase/order
The Loot replied to matte31's topic in Modding Related Support
Well, there's the method used in the old NYC mod: a script that constantly scans an area containing the map spawn points for units, and then runs commands like those I mentioned when it detects a unit there. Could take a look at that. -
There's a limit to how many commands can be put under the Equipment submenu; exceed it and that happens. I don't remember exactly offhand, but 10 is probably the limit as seen there
-
Last emergency-forum post and video from the team was over a year ago it seems.
-
Delaying unit time from purchase/order
The Loot replied to matte31's topic in Modding Related Support
Yes, actually. A line in each vehicle spawn script can do it. Find the last "PushActionShowHide" command before the Lights/Sirens/Move commands, and insert a "PushActionWait" in front of it, like so: n.PushActionTurnTo(ACTION_APPEND,Rotate); n.PushActionWait(ACTION_APPEND,5.0f); n.PushActionShowHide(ACTION_APPEND,false); The numerical value is time in seconds you want to delay the vehicle appearing and carrying out further actions. -
When I saw Alex's video, I was really surprised at a sudden public release of this. Dusted off the ol' game to give her a try. Great quality! Traffic can be an issue, with vehicles getting stuck at intersections for unknown reasons (but probably the usual traffic light glitches). Treatment system is nice, but needing to RTFM outside the game makes it difficult. Script error. Context: After manually sending ranger to a scene, dispatched two more, and error occurred on second attempt. !Buy park ranger car ?(_LACallPatrolCar833e8): Error: Symbol n is not defined in current scope ?(_LACallPatrolCar833e8): FILE:mod:/scripts/game/command/LACallPatrolCar.script833e8 LINE:495 ?(_LACallPatrolCar833e8): Error: Failed to evaluate n.SetSpeed(12.0f) ?(_LACallPatrolCar833e8): Possible candidates are... ?(_LACallPatrolCar833e8): filename line:size busy function type and name ?(_LACallPatrolCar833e8): ?(_LACallPatrolCar833e8): !!!Dictionary position rewound... ?(_LACallPatrolCar833e8): !!!Error recovered!!!
-
You may just have to replace it with the original mod map, or figure out which Virtual Objects (I assume this is what you refer to) you deleting and recreate them with the same names and locations.
-
Project Nostalgia Submod [RELEASED - Bugfixes Uploaded Regularly]
The Loot replied to itchboy's topic in Submods [Approved]
I'd say it's a possibility. -
Project Nostalgia Submod [RELEASED - Bugfixes Uploaded Regularly]
The Loot replied to itchboy's topic in Submods [Approved]
I think the mod currently uses the same vehicle dispatching methods as the original LA mod: police officers can call patrol cars and air unit, and fire captains can call some fire and medical units, and then everything else uses the base game menus. -
The first post has the LAPatrol scripts with the change implemented.
-
Quick idea is to check that the map object is named correctly, and that it has no flags/properties that would allow it to be interacted with in any way (I had a flag set that would allow a crane to pick up an object I used when I first added Limited Water to my personal mod). Can also try these lines GameObjectList spawnerList("SCSpawner"); if (spawnerList.GetNumObjects()>0) { GameObject Obj=spawnerList.GetObject(0); Game::ExecuteCommand("SpawnVehicles",&Obj); System::Log("Freeplay: Vehicle Spawns Started"); } else System::Error("Freeplay: Vehicle Spawner Not Found");
-
Changing display names of scripts
The Loot replied to Grim_Wizard's topic in Modding Related Support
Should just need the language string. <string name="SBAS_ChangeAS">Text Here</string> -
Project Nostalgia Submod [RELEASED - Bugfixes Uploaded Regularly]
The Loot replied to itchboy's topic in Submods [Approved]
Arson Callout: Be funny to take care of the suspect with him, though. -
Wherever you find a PushAction used. You can likely find a ACTION_NEWLIST PushAction somewhere in the script, and then you can add the PushActionExecuteCommand line as an ACTION_APPEND like the example.
-
Yeah, as I said, that method was quick and dirty. The better option is done with a PushAction to activate the flood light command during EmptyCar, like so: Caller->PushActionWait(ACTION_NEWLIST, 0.05f); Caller->PushActionExecuteCommand(ACTION_APPEND, "ActivateFloodLightsCommandName", Caller, 0, false);
-
And you can add the opposite to the EnterCar script to reverse the effect.
-
How to make vehicles not visible through walls?
The Loot replied to Dangamer911's topic in Technical Related Support
It's an option in the em4.cfg file, "e4_doocclusion". Changing the value to 0 will disable that effect. -
A quick and dirty way could involve a small edit to the EmptyCar script by adding these two lines: v.EnableSpecialLights(true); v.EnableBlueLights(false);
-
Seeing personnel when they're behind something?
The Loot replied to Bort's topic in Technical Related Support
It's an option in the em4.cfg file, "e4_doocclusion", I think. Change that to value to "1" and that should happen. -
Project Nostalgia Submod [RELEASED - Bugfixes Uploaded Regularly]
The Loot replied to itchboy's topic in Submods [Approved]
Those open-top engines make this mod very unique; unexpected amount of variations, too. While I'm at it, one nice detail change would be a more appropriate station alarm sound. I know that one of the past LA submods had a fire bell noise that would work.