Marshall8946 Posted March 23, 2014 Author Report Share Posted March 23, 2014 Exactly, you dont want it on looped, you want it on single. A single animation going down when triggered, and a single animation going up when triggered(or not triggered so to speak). Loop means in a non-stop loop.I'm sorry, I didn't write that as clear as I should have. I already checked the animation and its still set on the default setting of none. On the map they are all set to opened. The animations were not messed with. Link to comment Share on other sites More sharing options...
Xplorer4x4 Posted March 23, 2014 Report Share Posted March 23, 2014 I'm sorry, I didn't write that as clear as I should have. I already checked the animation and its still set on the default setting of none. On the map they are all set to opened. The animations were not messed with.You were clear. It's set to default...have you TRIED setting it to single? I don't know if this is the problem or not because I havent ever messed with the railroad gates but based on prior experience with similar situations, this might just be your problem. Link to comment Share on other sites More sharing options...
THVFD Posted March 23, 2014 Report Share Posted March 23, 2014 great mod marshall as for your gate problem idk what that would\could be cant wait for it Link to comment Share on other sites More sharing options...
Xplorer4x4 Posted March 23, 2014 Report Share Posted March 23, 2014 http://imgur.com/a/appIr#0Have you named the objects properly? Also make sure you have the VOs and Triggers in place. Link to comment Share on other sites More sharing options...
Marshall8946 Posted March 23, 2014 Author Report Share Posted March 23, 2014 Thanks everyone for the help! I actually figured it out so the problem is fixed!THVD: Thank you! Link to comment Share on other sites More sharing options...
Xplorer4x4 Posted March 24, 2014 Report Share Posted March 24, 2014 Thanks everyone for the help! I actually figured it out so the problem is fixed!THVD: Thank you!Just curious, what was the problem? Link to comment Share on other sites More sharing options...
Marshall8946 Posted March 24, 2014 Author Report Share Posted March 24, 2014 An object somehow got placed on the track. It was partially underneath the ground. A small newer update:Each engine and both ambulances now have an engine script. Which may or may not stay.RFD now has traffic lights to halt vehicles crossing in front of the station.Charlestown fire engine and Rootstown ambulance have both been added.A ford F150 is the newest and last of the volunteer vehicles added to the fleet. Link to comment Share on other sites More sharing options...
CFDDIVE11 Posted March 24, 2014 Report Share Posted March 24, 2014 Is there going to be stations that's don't have staffing so we can use the volunteer people? Link to comment Share on other sites More sharing options...
Marshall8946 Posted March 24, 2014 Author Report Share Posted March 24, 2014 No, Ravenna only has full time FF's. The volunteers are 100% fictional. Although they dont make a great difference in game, they do have their moments. Link to comment Share on other sites More sharing options...
Guest Posted March 24, 2014 Report Share Posted March 24, 2014 <p>An object somehow got placed on the track. It was partially underneath the ground.A small newer update:Each engine and both ambulances now have an engine script. Which may or may not stay.RFD now has traffic lights to halt vehicles crossing in front of the station.Charlestown fire engine and Rootstown ambulance have both been added.A ford F150 is the newest and last of the volunteer vehicles added to the fleet. this all sounds great can't wait Link to comment Share on other sites More sharing options...
Fred03 Posted March 24, 2014 Report Share Posted March 24, 2014 Are you going to add a Streetsboro FD truck? I know they don't Mutuial Aid Ravenna much but I for one would like to see it. Link to comment Share on other sites More sharing options...
Marshall8946 Posted March 25, 2014 Author Report Share Posted March 25, 2014 They do, but only for a certain section. At the moment I have:Rootstown: Rescue & ambulanceKent: EngineCharlestown: Engine Truthfully for this game. Ravenna city and township can handle an entire block on fire.. Mutual aid will rarely be used by the player, if at all. I did think about adding Streetsboro, but I'm trying to just keep it low at this point. The player even has NEAS they can use if they need more medics. Let alone the MCU is still available. If anyone has basic knowledge of adding commands to scripts, I could use a little help with the engine script. Link to comment Share on other sites More sharing options...
Xplorer4x4 Posted March 25, 2014 Report Share Posted March 25, 2014 They do, but only for a certain section. At the moment I have:Rootstown: Rescue & ambulanceKent: EngineCharlestown: Engine Truthfully for this game. Ravenna city and township can handle an entire block on fire.. Mutual aid will rarely be used by the player, if at all. I did think about adding Streetsboro, but I'm trying to just keep it low at this point. The player even has NEAS they can use if they need more medics. Let alone the MCU is still available. If anyone has basic knowledge of adding commands to scripts, I could use a little help with the engine script.I would say keep it simple for the first release. Plus it gives you stuff to add later. If you dont mind posting it here, I can take a look, and I am sure others will help as well. Link to comment Share on other sites More sharing options...
Marshall8946 Posted March 25, 2014 Author Report Share Posted March 25, 2014 This is not my script! It can be downloaded/found here. The owner, Carli96 gives free permissions.Edited by myself.Im just trying to add, so the engine shuts off once its back at station. Otherwise, the engine script is pretty pointless.. const char IMG[] = "Engine";const char StartEngineSound[] = ""; //Pfad zur Sounddatei Startgeräuschconst char StopEngineSound[] = ""; //Pfad zur Sounddatei Stopgeräuschobject Engine1 : CommandScript{Engine(){SetIcon(IMG);SetCursor(IMG);SetValidTargets(ACTOR_VEHICLE);SetPriority(50);}bool CheckPossible(GameObject *Caller){Vehicle vec(Caller);if(!vec.HasCommand("Dummy_Start")) //Wenn der Motor noch nicht gestartet wurde...{if(vec.GetNumPassengers() == 0) //...wird geprüft, ob im Fahrzeug null Personen sitzen{return false;vec.RemoveCommand("MoveTo");vec.RemoveCommand("GoHome");//hier die restlichen Command deaktivieren. Zeile kopieren und den Namen anpassen//allgemein://v.RemoveCommand("CommandName");}else //...wird geprüft, ob im Fahrzeug nicht null Personen sitzen{return true;vec.RemoveCommand("MoveTo");vec.RemoveCommand("GoHome");//hier die restlichen Command deaktivieren. Zeile kopieren und den Namen anpassen//allgemein://v.RemoveCommand("CommandName");}}else //Wenn das Fahrzeug schon gestartet wurde...{if(vec.GetNumPassengers() == 0) //...wird geprüft, ob im Fahrzeug null Personen sitzen{return false;vec.RemoveCommand("MoveTo");vec.RemoveCommand("GoHome");//hier die restlichen Command deaktivieren. Zeile kopieren und den Namen anpassen//allgemein://v.RemoveCommand("CommandName");}else //...wird geprüft, ob im Fahrzeug nicht null Personen sitzen{return true;vec.AssignCommand("MoveTo");vec.AssignCommand("GoHome");//hier die restlichen Command aktivieren. Zeile kopieren und den Namen anpassen//allgemein://v.AssignCommand("CommandName");}}}bool CheckTarget(GameObject *Caller, Actor *Target, int childID){if(Target->GetID() == Caller->GetID())return true;return false;}void PushActions(GameObject *Caller, Actor *Target, int childID){Vehicle v(Caller);Vector VPos = v.GetPosition();if (!v.HasCommand("Dummy_Start")){v.EnableCommand("MotorAnAus", true);v.AssignCommand("Dummy_Start");Audio::PlaySample3D("mod:Audio/FX/Vehicles/Engine_On_1.wav", VPos, false);v.AssignCommand("MoveTo");v.AssignCommand("GoHome");//hier die restlichen Command aktivieren. Zeile kopieren und den Namen anpassen//allgemein://v.AssignCommand("CommandName");Mission::PlayHint("Engine Started");}else{v.PushActionExecuteCommand(ACTION_NEWLIST, "EmptyCar");//hier können noch mehrer Commands ausgeführt werden, wie zum Beispiel das ausschalten des Blaulichts//allgemein://v.PushActionExecuteCommand(ACTION_APPEND, "CommandName");v.RemoveCommand("Dummy_Start");v.RemoveCommand("GoHome");v.RemoveCommand("MoveTo");//hier die restlichen Command deaktivieren. Zeile kopieren und den Namen anpassen//allgemein://v.RemoveCommand("CommandName");Mission::PlayHint("Engine Off");Audio::PlaySample3D("mod:Audio/FX/Vehicles/Engine_Off_1.wav", VPos, false);}}};//Hier darf nichts verändert werdenobject Dummy_Start : CommandScript{Dummy_Start(){SetGroupID(20);}bool CheckGroupVisibility(GameObject *Caller){return false;}bool CheckPossible(GameObject *Caller){return false;}bool CheckTarget(GameObject *Caller, Actor *Target, int childID){return false;}void PushActions(GameObject *Caller, Actor *Target, int childID){}}; Link to comment Share on other sites More sharing options...
Xplorer4x4 Posted March 26, 2014 Report Share Posted March 26, 2014 After:Vehicle vec(Caller);Create new line(enter) and add something like this:Vehicle v(Caller); if (v.IsCollidingWithVirtualObject(VO_ENGINE01) || v.IsCollidingWithVirtualObject(VO_ENGINE02) || v.IsCollidingWithVirtualObject(VO_TILLER)) return false;No I assume you have more VOs then that, so you could use a SQUAD VO that covers the entire FS, but the engine would die to soon imo. Actually even this way it might die to soon..you might be better off usign the LAtoFireStation script like this:else if(StrCompare(v.GetPrototypeFileName(), OBJ_TILLER) == 0) { GameObjectList l4; Game::CollectObstaclesOnVirtualObject(VO_TILLER, l4, ACTOR_VEHICLE); if(l4.GetNumObjects() > 0) { Mission::PlayHint(HINT_NOSPACE); Game::ExecuteCommand(CMD_GOHOME, &v, &v); return; } else { ActorList l1 = Game::GetActors(VO_FP3); ActorList l2 = Game::GetActors(VO_TURNTO3); m.PushActionWait(ACTION_APPEND, 3.5f); m.PushActionExecuteCommand(ACTION_APPEND, CMD_COMMAND, Caller, 0, false); } }In this case CMD_COMMAND could be CMD_E1 and at the top of the tofs script with the constants for the OBJs and VOs addconst char CMD_E1[] = "Engine1"; Because you have decided the game is going to recognize this command as simply "Engine1" when you go to the editor to assign the command. If your going to do a separate script for each vehicle I would suggest naming this one object VcmdEngine1Noise : CommandScript Also:object Engine1 : CommandScript{Engine()The Engine on the second lien should be Engine1 as well. Whatever comes afer object and before the : should always go on that following line:object Engine1 : CommandScript{Engine1() Link to comment Share on other sites More sharing options...
Jonas Maeckelburg Posted April 2, 2014 Report Share Posted April 2, 2014 Can I test the WIP? Link to comment Share on other sites More sharing options...
ThePoliceGuy Posted April 9, 2014 Report Share Posted April 9, 2014 Looking forward to this submod, looks well done. Link to comment Share on other sites More sharing options...
Jonas Maeckelburg Posted April 23, 2014 Report Share Posted April 23, 2014 YEAH! Link to comment Share on other sites More sharing options...
ses Posted May 6, 2014 Report Share Posted May 6, 2014 sounds greatlooking forward to this one as well Link to comment Share on other sites More sharing options...
Marshall8946 Posted May 13, 2014 Author Report Share Posted May 13, 2014 Hey guys, I'm still here! Here's a very small post about some of the things that have been being worked on recently.A very generous person has gratefully came to me and given me full permission to use and edit all of his models within the Ravenna Mod. I thank RD_Saarland for doing this! So many of the new models you see will be from his generosity. Others are pulled from various mods that are fully credited or give full free to use permissions.As an added bonus, at the bottom you will see the work of a private little submod from the Montana Mod; Based off the fire department I work with. Its just something for me to mess around and play with. Which may be released later on.Also, the new ford vehicles will be implemented into the mod! The new railroad crossings! Sheriff golf cart will be located at the plaza for your convenience. New Pepsi and Budweiser trucks! The Budweiser truck also has an idling sound where it is parked. A civil off duty EMT has his own house and POV. Outfitted with caution lights. Just some added scenery. A few buildings under construction. Most likely the last of the volunteer povs. There are now four available. Lastly, the new Ravenna school buses! Bonuses!Charlestown Fire Submod! Which is still a huge WIP!! Link to comment Share on other sites More sharing options...
Guest Posted May 13, 2014 Report Share Posted May 13, 2014 This mod is the one I want most xD Link to comment Share on other sites More sharing options...
Fred03 Posted May 13, 2014 Report Share Posted May 13, 2014 Looking forward to its release! How much more work is needed? Are you still having to wait for the RMCP mod to be released? Link to comment Share on other sites More sharing options...
Modzzguy202 Posted May 13, 2014 Report Share Posted May 13, 2014 Very nice work! Looking forward to the release! Link to comment Share on other sites More sharing options...
jdclark2008 Posted May 13, 2014 Report Share Posted May 13, 2014 Wow..impressive. Link to comment Share on other sites More sharing options...
ENG343INE Posted May 14, 2014 Report Share Posted May 14, 2014 awesome job Link to comment Share on other sites More sharing options...