Jump to content

Luisinho

Members
  • Posts

    1,135
  • Joined

  • Days Won

    2

Everything posted by Luisinho

  1. Wuppertal Mod rocks! I really liked the new interface and features such as foam, etc...
  2. Happy late birthday! And also congratulations with your promotion!
  3. Good luck, but I'd also suggest you start learning the basics of Modeling, UV Mapping, Scripting, etc...
  4. Good work Hoppah, that is some awesome work! Ever thought of making something similar to those script but for an ambulance?
  5. I was talking about the dutch cars. Thanks so much.. I didn't know those details.
  6. How can you recognize them? Those vehicles look so similar to the local police.
  7. Luisinho

    Help

    I don't get you, first you said you wanted 6 firefighters with scba gear. Could you be more specific?
  8. Tricky question, I have absolutely no idea.
  9. London uses the following vehicles: Vauxhall Astra - Patrol Car BMW 5 - Response Car Mercedes-Benz Sprinter - Personnel Carriers Range Rover BMW Motorcycle BMW 5 - Diplomatic Protection Group Vauxhall Zafira - Diplomatic Protection Group Ford F450 Police Boat EC-145 - Helicopter
  10. I ban you because that's not a valid reason to ban someone! HAHHA
  11. Replace your saved game with this one. Next time don't click on start a new campaign, otherwise it will happen again.
  12. Luisinho

    Help

    I'm going to show you how to add 6 firefighters with gas masks in Engine 2. Once you've done this, you should be able to do it with other units. Good luck! 1. Open up: LABattalionChief.script 2. Press "Ctrl + F" then search for: const char OBJ_PM[] = "mod:Prototypes/Persons/01 LA Ambulance/ff_paramedic.e4p"; 3. Once you found it, add this underneath it: const char OBJ_PM_SCBA[] = "mod:Prototypes/Persons/01 LA Ambulance/ff_paramedic_scba.e4p"; 4. Now search for: n = Game::CreateVehicle(PROTO_ENGINE02, UNNAMED); 5. You should now be able to see something like this: Person p1; Person p2; Person p3; Person p4; n = Game::CreateVehicle(PROTO_ENGINE02, UNNAMED); n.SetSpeed(9.0f); p1 = Game::CreatePerson(OBJ_EMT, UNNAMED); p2 = Game::CreatePerson(OBJ_EMT, UNNAMED); p3 = Game::CreatePerson(OBJ_EMT, UNNAMED); p4 = Game::CreatePerson(OBJ_EMT, UNNAMED); n.SetPlayerMP(Caller->GetPlayerMP()); p1.SetPlayerMP(Caller->GetPlayerMP()); p2.SetPlayerMP(Caller->GetPlayerMP()); p3.SetPlayerMP(Caller->GetPlayerMP()); p4.SetPlayerMP(Caller->GetPlayerMP()); p1.SetUpgradeLevel(3); p2.SetUpgradeLevel(3); p3.SetUpgradeLevel(3); p4.SetUpgradeLevel(3); n.SetMaxPassengers(6); n.SetMaxTransports(0); n.AddPassenger(&p1); n.AddPassenger(&p2); n.AddPassenger(&p3); n.AddPassenger(&p4); 6. Now replace that with this: Person p1; Person p2; Person p3; Person p4; Person p5; Person p6; n = Game::CreateVehicle(PROTO_ENGINE02, UNNAMED); n.SetSpeed(9.0f); p1 = Game::CreatePerson(OBJ_PM_SCBA, UNNAMED); p2 = Game::CreatePerson(OBJ_PM_SCBA, UNNAMED); p3 = Game::CreatePerson(OBJ_PM_SCBA, UNNAMED); p4 = Game::CreatePerson(OBJ_PM_SCBA, UNNAMED); p5 = Game::CreatePerson(OBJ_PM_SCBA, UNNAMED); p6 = Game::CreatePerson(OBJ_PM_SCBA, UNNAMED); n.SetPlayerMP(Caller->GetPlayerMP()); p1.SetPlayerMP(Caller->GetPlayerMP()); p2.SetPlayerMP(Caller->GetPlayerMP()); p3.SetPlayerMP(Caller->GetPlayerMP()); p4.SetPlayerMP(Caller->GetPlayerMP()); p5.SetPlayerMP(Caller->GetPlayerMP()); p6.SetPlayerMP(Caller->GetPlayerMP()); p1.SetUpgradeLevel(3); p2.SetUpgradeLevel(3); p3.SetUpgradeLevel(3); p4.SetUpgradeLevel(3); p5.SetUpgradeLevel(3); p6.SetUpgradeLevel(3); n.SetMaxPassengers(6); n.SetMaxTransports(0); n.AddPassenger(&p1); n.AddPassenger(&p2); n.AddPassenger(&p3); n.AddPassenger(&p4); n.AddPassenger(&p5); n.AddPassenger(&p6); Hope it helps
  13. Why don't you learn how to do it yourself? That is called laziness! I'm pretty sure. You won't find your sirens here!
  14. Looking good! Those are the vehicles from Google Warehouse, don't you think you should give the creator some credit too? Instead of keeping all the credit to yourself.
  15. There is a vehicle mod only. But I don't actually call it a mod, because it's incomplete. However, it can't be found on this forum, you'll need to go to the German forums instead.
  16. I ban you because you're a newbie. Welcome to the forums
  17. Probably not, because there will be a new map. Unless he makes another version.
  18. I have a better idea, how about we all go back to topic?
  19. Awesome. The police van looks so realistic, and the units too.
×
×
  • Create New...