-
Posts
4,424 -
Joined
-
Days Won
645
Content Type
Profiles
Forums
Calendar
Tutorials
Downloads
Gallery
Everything posted by itchboy
-
New light equipment coming soon: Code 3 360 by LA mod team, modified by me Tomar 930 by bama with edits by me Everything else is mine.
-
This is the last "new" vehicle to be added to the civil car pack. Everything's been replaed. Unless anyone wants to take the time to add new instance vehicles.. Note the trim on the doors. Heavy duty and SSV version coming soon.
-
Los Angeles Mod Vehicle Set [STOPPED]
itchboy replied to itchboy's topic in Mod Development and Concepts
All completed FD units as of April 24 -
If you ask me, black and yellow looks classier and authoritative, whereas white and blue looks more clean and blends with the mod's (soon to be) rural theme better. I've cast my vote. More vehicles coming your way.
-
Oh yes we do. First look ingame
-
Los Angeles Mod Vehicle Set [STOPPED]
itchboy replied to itchboy's topic in Mod Development and Concepts
Latest skins by EM6299 and Reaper -
Looks like you've added the new vehicles improperly. Your parenthesis for the if statement is placed prematurely, thus causing the condition to end. You also have no parenthesis in the last condition (the LAPD Impala). By itself, your list is too long for the game to process so you'd have to cut it into two. Here's how I'd write the code: if (v.IsValid() && !v.IsDestroyed()){ if(StrCompare(v.GetPrototypeFileName(), "mod:Prototypes/Vehicles/03 LA Police/rescue_truck01_lapd.e4p") == 0 || StrCompare(v.GetPrototypeFileName(), "mod:Prototypes/Vehicles/03 LA Police/rescue_truck02_lapd.e4p") == 0 || StrCompare(v.GetPrototypeFileName(), "mod:Prototypes/Vehicles/03 LA Police/swat_armoured_vehicle.e4p") == 0 || StrCompare(v.GetPrototypeFileName(), "mod:Prototypes/Vehicles/03 LA Police/swat_truck.e4p") == 0 || StrCompare(v.GetPrototypeFileName(), "mod:Prototypes/Vehicles/09 Government/fbi_suv.e4p") == 0 || StrCompare(v.GetPrototypeFileName(), "mod:Prototypes/Vehicles/03 LA Police/swat_suv.e4p") == 0 || StrCompare(v.GetPrototypeFileName(), "mod:Prototypes/Vehicles/09 Government/fbi_command.e4p") == 0) return true; else if(StrCompare(v.GetPrototypeFileName(), "mod:Prototypes/Vehicles/03 LA Police/suv_lapd.e4p") == 0 || StrCompare(v.GetPrototypeFileName(), "mod:Prototypes/Vehicles/03 LA Police/dodge_charger_lapd.e4p") == 0 || StrCompare(v.GetPrototypeFileName(), "mod:Prototypes/Vehicles/03 LA Police/cv_lapd_slicktop.e4p") == 0 || StrCompare(v.GetPrototypeFileName(), "mod:Prototypes/Vehicles/03 LA Police/cv_umpc.e4p") == 0 || StrCompare(v.GetPrototypeFileName(), "mod:Prototypes/Vehicles/03 LA Police/bpat_dodge_charger.e4p") == 0 || StrCompare(v.GetPrototypeFileName(), "mod:Prototypes/Vehicles/03 LA Police/cv_lapd.e4p") == 0 || StrCompare(v.GetPrototypeFileName(), "mod:Prototypes/Vehicles/03 LA Police/lapd_impala.e4p") == 0) return true;}This is to be placed at the CheckTarget portion of MP5Get and Remove. This is intended to replace the prototypes listed in the mentioned section.
-
Why don't you show us the script. Use pastebin or similar.
-
I can haz skin?
-
*ring* 7.....days.....
-
The model would be this: http://www.emergency-forum.de/index.php?page=DatabaseItem&id=751&highlight=mondeo Next time get your credits right when using other people's stuff Just some advice. Judge Dredd takes place in the dystopian future where government rules everything and cops are judge, jury and executioner. I'd imagine they'd be driving around in things more armored than Mondeos. Vehicles have probably changed. But for sake of not having to model completely new cars, you could do this to it: For your fire engines, I'd probaby just take a random modern era fire engine and add some defenses to it. You could also do it your way and make firetrucks based off of airport crash tenders. Your choice. Ambulances could be these instead of those boxes you presented. Has anyone else in EmP played the game Carmageddon? Those vehicles definitely have the theme of "dystopian future where running over pedestrians is a sport"
-
Thanks. Slowly but surely. Modelling the cab is half the job. The bed has to be done too.
-
Original Emergency games had this feature as standard. It is quite possible in EM4. All Hoppah needs to do is play with the physics engine via mission script. Some of my own examples here: This has many more negatives than positives: The game has spotty physics. Might not always work/might crash gameThese things are optimized for cutscenes, not general gameplayPAIN IN TEH *bleep* TO TEST AND DEBUGToo much work IMO for only a minor cosmetic gameplay function.An alternate solution would be to only allow redirection and traffic control when wearing the traffic vest If anyone wants to try this out, here's some of the code used. MoveCollCheck OnCheckMoveCollision(GameObject *Collider1_, Actor *Collider2_){ if ( Collider1_ && Collider1_->GetID() == ccrash.GetID() )) { return MCC_IGNORE_CONTINUE; } if ( Collider1_ && Collider1_->GetID() == gcar.GetID() )) { return MCC_IGNORE_CONTINUE; } return MCC_HALT_CONTINUE;}void OnCollision(GameObject *Collider1, GameObject *Collider2){ if (!Collider1 || !Collider2) return; if (Collider1->GetType() == ACTOR_VEHICLE && Collider2->GetType() == ACTOR_VEHICLE) { if (Collider1->GetID() == ccrash.GetID() || Collider2->GetID() == ccrash.GetID()) { GameObject *suv = NULL, *sedan = NULL; if (Collider1->HasName("cs_gcar") && Collider2->HasName("cs_crash_car")) { suv = Collider1; sedan = Collider2; } else if (Collider1->HasName("cs_crash_car") && Collider2->HasName("cs_gcar")) { sedan = Collider1; suv = Collider2; } if(suv) { suv->ChangePrototype(PROTOTYPE_WRECK2); suv->EnablePhysicsSimulation(true); suv->EnablePhysics(); suv->SetPhysicsVelocity(10.0f, -8.0f, 2.0f); } if(sedan) { sedan->ChangePrototype(PROTOTYPE_WRECK1); sedan->EnablePhysicsSimulation(true); sedan->EnablePhysics(); sedan->SetPhysicsVelocity(24.0f, -6.0f, 1.0f); } Audio::PlaySample3D(SOUND_CAR_CRASH, ccrash.GetPosition(), false); for (int d=0; d < MAX_DEBRIS; ++d) { mDebris[d].Show(); } Vector EmitterPos1 = ccrash.GetPosition(); Vector EmitterPos2 = gcar.GetPosition(); Game::PlayEmitter("thud01", EmitterPos1); Game::PlayEmitter("windowsplints02", EmitterPos1); Game::PlayEmitter("thud01", EmitterPos2); Game::PlayEmitter("windowsplints02", EmitterPos2); System::Log("M05: Car crash!"); Mission::StartSingleTimer(TIMER_ENDCRASH, TIME_ENDCRASH); } }}
-
Oh you mean not necesarrily has to be curved like a shoelace. I see. Its unlikely he'll make roads like that. He is basing his texture on a real location with real roads built by people who know that a straight road is usually better.
-
Its not a KME actually. I resized the lights bigger for him. Still not enough? And I don't understand what a "so real" road is. Do you mean a forest road that is clean or straight?
-
Is "Ambient Only" checked in their prototypes? Go to the editor and check if it is enabled.
-
None actually. Settings depend on the desires of the modder. Its up to you what you consider a tasteful amount of bloom. Try using the original EM4 settings as reference.
-
Have you changed the bloom or completely disabled it? Maybe your gamma settings are a bit high?
-
Go to map properties and change the bloom settings.
-
And itchboy said, let there be polygons, and there were polygons And he saw the polygons and that it was good, so he divided them into materials And he called the green "door" and the blue "windows" Work stopped in LA mod vehicles until this thing is complete.
-
Once again, the police vehicles do not have any lights yet. The author has not made them yet. Saving Mentor some rage points again.
-
Scale is how big/small the vehicle is overall. Note how the police vehicle(?) on the left is so much bigger than everything else on the right. So the vehicles are obviously fictional since we can't predict what vehicles are used in the future. Alright.
-
Honestly I think you should focus on reworking your models first before you advance to the mapping and texturing stage. If I had to say something about your models: They all appear way too boxy and sharp, almost square.Models lack definition, contours and shadingTheir scale might be off compared to similar vehicles in Em4Are you basing these vehicles off real existing ones or are these purely fictional?Are these vehicles from present day or future?The axis on Tanker 19 is reversed, needs to face forwardYou could advance to that if you want, but UV mapping cannot be edited and is final once you do it.
-
Map Change | Game Crash on map load
itchboy replied to Pottyscotty's topic in Modding Related Support
Thats the good news. Your map is not totally corrupted like what happened to me. Your map probably has a car accident or other freeplay event that is broken, causing game to crash upon startup. -
Map Change | Game Crash on map load
itchboy replied to Pottyscotty's topic in Modding Related Support
Looks like it crashes during initialization of freeplay events, specifically car crashes. Had an issue some years back where a wrongly setup car crash broke my freeplay. The important question. Does it load in the editor?