Bernt Posted November 26, 2009 Report Share Posted November 26, 2009 Nice scania:D Quote Link to comment Share on other sites More sharing options...
bma Posted November 26, 2009 Report Share Posted November 26, 2009 Hey UKmod999.I need to talk to you about the Scania your guys borrowed from Aarhus mod(send me a PM)I have some good news for you Quote Link to comment Share on other sites More sharing options...
UkMod999 Posted November 28, 2009 Author Report Share Posted November 28, 2009 I hope this can get back up and carry on despite...well, needs no mentioning.Least we can take heart in the fact a mod paid a visit and all is still well in terms of the thread being open =]I wish I could mod, i'd offer straight up to help otherwise Best of luck with this (I especially like the idea of 15 minor followed by major )Thanks Allot Mate. Its Going To Take Allot Of Time To Get This Mod Going. Im Not Stopping. This Mod Is Going To Keep Getting Better. Thanks For The Comment On The 15 Then A Major. Thanks And I Hope You Can Keep Giving Great Comments And Feedback. Quote Link to comment Share on other sites More sharing options...
randomperson139 Posted November 28, 2009 Report Share Posted November 28, 2009 It's good that you are carrying on with the mod. Good luck The mod sounds great so far. I really like your ideas. Quote Link to comment Share on other sites More sharing options...
UkMod999 Posted November 28, 2009 Author Report Share Posted November 28, 2009 It's good that you are carrying on with the mod. Good luck Not Letting This Mod Go Down! Just Because That Guy Stuffed Up The Mod. It Does Not Mean Its Over. randomperson139 Is New Admin For Scotland Mod. Who Will Answer Questions. Quote Link to comment Share on other sites More sharing options...
randomperson139 Posted November 28, 2009 Report Share Posted November 28, 2009 randomperson139 Is New Admin For Scotland Mod. Who Will Answer Questions.OK. Quote Link to comment Share on other sites More sharing options...
UkMod999 Posted November 28, 2009 Author Report Share Posted November 28, 2009 OK. No Problem Mate Quote Link to comment Share on other sites More sharing options...
UkMod999 Posted November 28, 2009 Author Report Share Posted November 28, 2009 Good News. Ahrus Modder Has Gave Scotland Mod The Authority To Use There Fire Engines. It Was Not My Mind To Use Them But Its A Start. I Need A Skinner ASAP. And This Mod Is Now Back On Working Thanks bma.Also We Have A New Modder Joining AsWell, Thanks Allot Folks Quote Link to comment Share on other sites More sharing options...
randomperson139 Posted November 28, 2009 Report Share Posted November 28, 2009 Great Quote Link to comment Share on other sites More sharing options...
UkMod999 Posted November 28, 2009 Author Report Share Posted November 28, 2009 Great Thanks. Welcome To The Scotland Mod Reopening And Begining Of The Greatest Details To Give (i hope) Quote Link to comment Share on other sites More sharing options...
UkMod999 Posted November 28, 2009 Author Report Share Posted November 28, 2009 Here is a design of the Equipment Pod. It has Clips And Then You Push The Curtains Back. Its A Rough DesignBackk Front. Quote Link to comment Share on other sites More sharing options...
randomperson139 Posted November 28, 2009 Report Share Posted November 28, 2009 It looks good Quote Link to comment Share on other sites More sharing options...
Forensics Posted November 28, 2009 Report Share Posted November 28, 2009 It looks great Quote Link to comment Share on other sites More sharing options...
UkMod999 Posted November 28, 2009 Author Report Share Posted November 28, 2009 Thanks Allot Quote Link to comment Share on other sites More sharing options...
UkMod999 Posted November 29, 2009 Author Report Share Posted November 29, 2009 Kentfireandrescue is back helping folks. Ahrus Modder Is Helping Edit Scanias As These Are The Ones I Need For Retained Tonight. Im Adding Light Video Tonight. Thanks Quote Link to comment Share on other sites More sharing options...
randomperson139 Posted November 29, 2009 Report Share Posted November 29, 2009 Great. Can't wait for the video Quote Link to comment Share on other sites More sharing options...
bazz Posted November 29, 2009 Report Share Posted November 29, 2009 Great. Can't wait for the video Same can't wait Quote Link to comment Share on other sites More sharing options...
Forensics Posted November 29, 2009 Report Share Posted November 29, 2009 Me too Looking forward to video. Quote Link to comment Share on other sites More sharing options...
UkMod999 Posted November 29, 2009 Author Report Share Posted November 29, 2009 Great. Can't wait for the video Quote Link to comment Share on other sites More sharing options...
UkMod999 Posted November 29, 2009 Author Report Share Posted November 29, 2009 How do i add sirens to my truck. Its in game and i have the siren i want to use. How can i make it work on the truck Quote Link to comment Share on other sites More sharing options...
cops Posted November 29, 2009 Report Share Posted November 29, 2009 (edited) How do i add sirens to my truck. Its in game and i have the siren i want to use. How can i make it work on the truckFirst of al you need the SoSi script (you can download it from www.lamod.emergency-planet.com)Than you need to add your vehicle prototype line:**explain**(LA mod 1.9)(beginning)const char CMD_AUTOSIREN_OFF[] = "VcmdAutoSirenOff";const char EACTION_FINDPATH[] = "EActionFindPath";const char EACTION_EXTINGUISH[] = "EActionExtinguish";const char DUMMY_HASSIREN[] = "DummyHasSiren";const char DUMMY_UPDATEPOS[] = "DummyUpdatePos";const char DUMMY_FINDPATH[] = "DummyFindPath";const char DUMMY_HOSESON[] = "DummyHosesAreOn";const char NAME_DUMMYOBJECT[] = "HelpingObjekt_Hoppah";const char DUMMY_GETTIL[] = "DummyGetTiller";(the car line('s))const char PROTO_ENGINE01[] = "mod:Prototypes/Vehicles/02 LA Fire Department/fire_engine1.e4p";const char PROTO_ENGINE02[] = "mod:Prototypes/Vehicles/02 LA Fire Department/fire_engine2.e4p";than you need to have this:int DummyGroup = 23;object VcmdSiren : CommandScript{ VcmdSiren() { SetIcon("sirenson"); SetCursor("sirens"); SetRestrictions(RESTRICT_SELFEXECUTE); SetPossibleCallers(ACTOR_VEHICLE); SetGroupID(DummyGroup); SetGroupLeader(true); } bool CheckPossible(GameObject *Caller) { if (!Caller->IsValid()) return false; if (Caller->HasCommand(DUMMY_HASSIREN)) SetIcon("sirensoff"); else SetIcon("sirenson"); if(Caller->HasCommand(DUMMY_HOSESON)) return false; return true; } bool CheckTarget(GameObject *Caller, Actor *Target, int childID) { if (!Target->IsValid() || Target->GetID() != Caller->GetID()) return false; return true; } void PushActions(GameObject *Caller, Actor *Target, int childID) { Vehicle v(Caller); if (!v.HasCommand(DUMMY_HASSIREN)) {and after this you need to add a line for sirene } int soundID; Vector CarPos = v.GetPosition(); if (StrCompare(v.GetPrototypeFileName(), PROTO_ENGINE01) == 0 || StrCompare(v.GetPrototypeFileName(), PROTO_ENGINE02) == 0 || StrCompare(v.GetPrototypeFileName(), PROTO_WATERTENDER) == 0 || StrCompare(v.GetPrototypeFileName(), PROTO_LADDER) == 0 || StrCompare(v.GetPrototypeFileName(), PROTO_TILLER) == 0 || StrCompare(v.GetPrototypeFileName(), PROTO_HAZMAT) == 0 || StrCompare(v.GetPrototypeFileName(), PROTO_MOTORBOAT) == 0 || StrCompare(v.GetPrototypeFileName(), PROTO_CRASHTENDER) == 0 || StrCompare(v.GetPrototypeFileName(), PROTO_USAR) == 0 || StrCompare(v.GetPrototypeFileName(), PROTO_MCU01) == 0 || StrCompare(v.GetPrototypeFileName(), PROTO_USFS02) == 0 || StrCompare(v.GetPrototypeFileName(), PROTO_SWAT_TRUCK) == 0 || StrCompare(v.GetPrototypeFileName(), PROTO_HEAVY_RESCUE) == 0 || StrCompare(v.GetPrototypeFileName(), PROTO_FBI_COMMAND) == 0) {(this is for the Fire department but you also can do it for police EMS etc...)If I have it wrong please say it to me!!( you can also look in an siren script for an mod LA mod or something like that)I hope it works :12:Cops Edited November 29, 2009 by cops Quote Link to comment Share on other sites More sharing options...
bennie900 Posted November 29, 2009 Report Share Posted November 29, 2009 The first bit is ok, but the rest of the script has nothing to do with configuring the sounds.Tutorial here - Has everything you need for it. Quote Link to comment Share on other sites More sharing options...
UkMod999 Posted November 29, 2009 Author Report Share Posted November 29, 2009 One more problem. Im Playing A Mod. I Click On The Map And em4 goes Back To Desktop? Its A Legal Version Quote Link to comment Share on other sites More sharing options...
cops Posted November 29, 2009 Report Share Posted November 29, 2009 The first bit is ok, but the rest of the script has nothing to do with configuring the sounds.Tutorial here - Has everything you need for it.I complete forget that tutorial Quote Link to comment Share on other sites More sharing options...
UkMod999 Posted November 30, 2009 Author Report Share Posted November 30, 2009 Scripter(Urgent)Building Maker For The Bases, Fire Stations etc..Skinner (Urgent)Modder! (Urgent) Just to make more models. Equipment maker.UV Mapper.Please Put Your Name Forward To Help The Scotland Mod. Quote Link to comment Share on other sites More sharing options...