Jump to content

Xplorer4x4

Members
  • Posts

    4,836
  • Joined

  • Last visited

  • Days Won

    8

Everything posted by Xplorer4x4

  1. Open the script, i suggest notepad2 At the very end of the script you will see if(StrCompare(p.GetPrototypeFileName(), "mod:Prototypes/Persons/03 LA Police/lapd_officer_f.e4p") == 0) { p.SetSpeed(1.4f); } else { p.SetSpeed(1.4f); System::Log("Vehicle on patrol not identified!"); } Now play with these numbers(the 1.4f numbers) till you find something that seems reasonable. I would try something in the range of 3.5f to 5.0f. See what seems reasonable.
  2. He seemed interested in modeling for me but then up and disappeared, and that was before the crash, so I dont think he was up to the task anyways.
  3. Well I can translate it using balefish, while rough, atleast gives me the basic idea but it would be a matter of memorizing these things to really get a grasp on it.
  4. Sorry no edit button on the mobile version of forums. After you click modifications and choose the la mod, the game will freeze for 1-5 minuetes. That's normal. Be patient.
  5. Did you click the button in the main menu that says modifications?
  6. You got that right, seems like the tornado was just yesterday. I believe that was the worst natural disaster in the cities history. Things that devastate your community like that stick with you.
  7. I thought you lived IN texas? lol Now that you mention it, I tend to notice the DSL go out every so often for no reason. 3Gs speeds are slightly over 1.5 here. I once dropped a call 5 times in 30 minuets..2-3 of the times I was outside. Internet speeds over priced! 6mbps MAX DSL from ATT, $35. 10mbps max from cable company, $40 a month. The only reasonable plan is there cheapo dsl plan. They screw up the bill every month. Oh and not to mention they sell faulty modems. Everyone I know who has the silver colored Motorola modem, has had theres die just after the one year warranty ran out. I raised hell over finding out they knowingly sell a defective modem. They over heat just after a year, so I suspect there using very low grade transistors that eventually blow after about a year. Now the only positive thing I can say about AT&T,is they always give credit to my account for there screw ups. That was fine at first, and hey nothings perfect, but month after month, it gets old quick. Wheres the humor? Theres nothing funny about disturbing graves. Wow that was almost funny. The one minute it took you to read that made your but hurt? Just stop trying to be funny, because you fail.
  8. First things first, check if theres a newer video card driver available. It is fairly current as is, but it cant hurt to try. Then I suggest clearing your cache and cookies. Redownload the mod. Reinstall the mod(after deleting the current install of the LA Mod. If everything else fails, well first off you got an ASUS PC. Your asking for reliability problems imo,but your running an Intel Integrated Graphics chip. These are horrible for gaming unless you want to play flash based games, or something simple like that. These chips are really not designed for gaming in the least. There designed for surfing the web, word processing and tasks like this that dont actually use any video resources.
  9. Good work to the authors. Itd be nice if the scren shots were jpg, png takes so long to load even on my 5mbps connection, and really doesn't offer an advantage when taking pics in em5.
  10. Just make sure the paths are set to looped, and named properly. If you get script errors let me know what the error is and then hit ignore, and let me know what it says the second time, including the line number. The info should hsow up in the logfile to though.
  11. Not for me it doesnt but thats not the point. I have an app to look in to my files but, for example, mannschaft_rufen is found 9 times in 3 files. I am sure the others will show up in other files a few times as well. Now if I knew german and atleast knew what all this stuff meant, then it would be easier, but I havent noticed traffic lights on the current winterburg map so it may be useless anyways.
  12. Does any one actually use the stretcher teams to heal patients?
  13. corazon_siete.script has two patrol commands, Fahre_Patrouille and Patrouille_frei, which looks like it means, more or less, freely patrol and patrol freely respectively The odd thing is Patrouille_frei just seems execute Fahre_Patrouille. However Fahre_Patrouille is set to execute a few commands like mannschaft_rufen,fzfrei,nachbar_holen and a few others. Now I could go through and find these commands in other scripts but it is a real pita.
  14. Exactly. Judging by the street lights it looks like they are spread out enough to where flood lights could actually be useful. Is this the case?
  15. pcmd and vcmd are simply letters for organization and have no real effect on the game/commands. Try this one: LAFootPatrol.zip
  16. You did add the command to officers right? It will show up as the patrol icon. I think I actually do need to fix the script though. Noticed some thing earlier when looking at it.
  17. I was doing some searching and came across this. Soulbody, I know you paused the project but wanted to point out some stuff in this script: You were using: VehicleList patrolCars(VT_FIREFIGHTERS_ASF); Your trying to do dispatch based onaq vehichle type, but the way your code is written, it is written where VT_FIREFIGHTERS_ASF is a specific vehicle, not vehicle type. If you are doing vehicle type, you want something like this: if (v.GetVehicleType() == VT_FIREFIGHTERS_ASF) You can also optimize the script. You have: int NewMoney = Money - 1000; Mission::SetMoney(NewMoney); Vehicle n; Person p1; Person p2; Person p(Caller); if(StrCompare(p.GetPrototypeFileName(), OBJ_BATTALION_CHIEF) == 0) { if(l1.GetNumActors() == 0 && l2.GetNumActors() > 0) { Spawn = l3.GetActor(0)->GetPosition(); Rotate = l6.GetActor(0)->GetPosition(); } n = Game::CreateVehicle(PROTO_CHARGER_LAPD, UNNAMED); n.SetSpeed(8.0f); } else if(StrCompare(p.GetPrototypeFileName(), OBJ_OFFICER_LASD) == 0 || StrCompare(p.GetPrototypeFileName(), OBJ_TRAFFIC_OFFICER_LASD) == 0) { if(l1.GetNumActors() == 0 && l3.GetNumActors() > 0) { Spawn = l3.GetActor(0)->GetPosition(); Rotate = l6.GetActor(0)->GetPosition(); } n = Game::CreateVehicle(PROTO_CV_LASD, UNNAMED); n.SetSpeed(8.0f); } else if(StrCompare(p.GetPrototypeFileName(), OBJ_OFFICER_CHP) == 0 || StrCompare(p.GetPrototypeFileName(), OBJ_TRAFFIC_OFFICER_CHP) == 0) { if(l1.GetNumActors() == 0 && l3.GetNumActors() > 0) { Spawn = l3.GetActor(0)->GetPosition(); Rotate = l6.GetActor(0)->GetPosition(); } n = Game::CreateVehicle(PROTO_CV_CHP, UNNAMED); n.SetSpeed(8.0f); } else { if(l1.GetNumActors() == 0 && l2.GetNumActors() > 0) { Spawn = l2.GetActor(0)->GetPosition(); Rotate = l5.GetActor(0)->GetPosition(); } n = Game::CreateVehicle(PROTO_CV_LAPD, UNNAMED); n.SetSpeed(8.0f); } Most of this code is not needed. The code is written so if the BC calls for a patrol car a LAPD Charger is bought and dispatched. If an LASD officer calls for a patrol car, then an LASD CV shows up, and if CHP call for back up CHP Charger shows up. However in your case there calling a tow truck, so theres no need for that. First delete: Person p1; Person p2; Person p(Caller); Your not spawning people so no need for that. Secondly any one that calls the tow truck is calling the same unit, thw tow truck, so no point in the extra checks, and I would do it like this...first define PROTO_TOW_TRUCK as a constant at the top of the script, then do this: if(StrCompare(p.GetPrototypeFileName(), OBJ_BATTALION_CHIEF) == 0) { if(l1.GetNumActors() == 0 && l2.GetNumActors() > 0) { Spawn = l3.GetActor(0)->GetPosition(); Rotate = l6.GetActor(0)->GetPosition(); } n = Game::CreateVehicle(PROTO_TOW_TRUCK, UNNAMED); n.SetSpeed(8.0f); } else { if(l1.GetNumActors() == 0 && l2.GetNumActors() > 0) { Spawn = l2.GetActor(0)->GetPosition(); Rotate = l5.GetActor(0)->GetPosition(); } n = Game::CreateVehicle(PROTO_TOW_TRUCK, UNNAMED); n.SetSpeed(8.0f); } This way there is less code and less if/else checks. No point in checking all those things when there all calling the same unit. If you want to use my call tow truck script instead, let me know. It is in game and working.
  18. Still no luck, current code is: if (v.GetVehicleType() == VT_FIREFIGHTERS_ASF || StrCompare(v.GetPrototypeFileName(), "mod:Prototypes/Vehicles/04 LA Tec/tow_truck.e4p") == 0) { v.EnableBlueLights(true); } if (v.GetVehicleType() == VT_FIREFIGHTERS_ASF || StrCompare(v.GetPrototypeFileName(), "mod:Prototypes/Vehicles/04 LA Tec/tow_truck2.e4p") == 0) { v.EnableBlueLights(true); } Full script: http://pastebin.com/2cp6GxYw
  19. I havent played it in ages but i think there regular choppers out fitted for USAR. Its a fun game though. Try it out.
  20. Your kidding right? Please tell me your kidding? ATT is a second rate company with third rate service. I had to spend over an hour on the phone this month to get a refund for an app I didnt purchase! Not to mention the idiot on the phone was well an idiot. I had to explain 3 times it was on the cell phone bill and not the dsl portion of the bill, or the home phone bill(which we do not have anyways). He was stuttering away and triping himself up. Got a supervisor on the line after 3 requests! The supervisor claimed to issue the refund. Drop the call. Call back only to find out that she didnt put a note or refund on the account like she said. Every month AT&T screw up our bill. Literally if you went through the AT&T computer system you could find a note for almost every month I have had there service. The internet is filled with tech blogs with people irate over AT&Ts horrible service. I live about a block from an AT&T Store, now granted there is no tower there but you would think service would be good right? Wrong. Horrible reception. If it werent for the early termination fee, I would have dropped AT&T and went with Verizon ages ago and got me a Moto Droid, maybe DroidX.
  21. If you set print screen to be your hotkey in fraps it does
  22. http://forum.emergency-planet.com/index.php?/forum-42/announcement-4-read-before-requesting-assistance/ This info might be helpful to. Are you by chance playing EM4?
  23. If you cant redirect them, blow them up and tow them off.
  24. 1. Read the rules as double posting is not allowed. Please use the edit button. 2. Check the pinned topic in this forum which is conveniently called "Where's my editor?" 3. Again, please read this before continuing: http://forum.emergency-planet.com/index.php?/forum-42/announcement-4-read-before-requesting-assistance/ We are trying to help you. Help us to help you.
×
×
  • Create New...