Jump to content

NorthStar

Member
  • Content Count

    91
  • Joined

  • Last visited

  • Medals

Everything posted by NorthStar

  1. Anybody know a way to turn off a lighthouse? I tried "switchlight" but that doesn't seem to work on lighthouses. The best I can do so far is to destroy it, but I'd rather not have the huge explosion at the start of my mission :p
  2. I started using the site module, and I noticed it has a cool capture mechanic if you set the "Interactive" field. Does anyone know if there's a way to check which side owns the site, or get an event trigger when the ownership changes?
  3. There are a number of lovely "composition" objects shown here: http://www.armatechsquad.com/ArmA2Class/Objects/compositions/ I was wondering if it's possible to place these from the editor, or do you have to use the Createcomposition.sqf script? If they are placeable, is it possible to make alterations to the individual objects that make up the composition? For example, could I remove the vehicles parked at some of them, etc. Thanks.
  4. What unit are you using this on? If it's civilians, make sure "Independent" side is set to be unfriendly with whoever they are supposed to throw at. Also, if it's a unit that already has no weapons I'd recommend just adding the stones without executing 'removeAllWeapons.' I know you tried giving them back the 'throw' weapon but removeAllWeapons definitely kills their ability to use the stones. Anyway, if you do get this to work I think you'll be disappointed, because the AI can't throw for crap. They wouldn't even make a Little League team.
  5. That could be it as well... I remember there was a bug where after respawning with First Aid, the player would become invincible, but that was fixed. So this is a separate bug?
  6. So what's the difference between the original and the expansion versions?
  7. NorthStar

    Blur screen

    It's due to the "post-processing" graphics setting. If you don't like it then turn that off in your settings. Unfortunately it will also disable some other graphical effects associated with that.
  8. Seems like you could also take the reverse approach and do something like: {alive _x} count cupcakes <= 15 as a trigger condition for END, where the original number of civilians is 20. This approach assumes that you have a fixed number of civilians.
  9. NorthStar

    Tripwire Script

    What you have there seems like it would work... have you tried it in a test mission?
  10. You may also need to execute publicVariable "civ_casualties" if it is to work properly in MP. Otherwise each client will have their own copy of the variable and the values could get out of sync.
  11. That's quite interesting actually... I had been using SAD waypoints almost exclusively in the missions where I experienced the problem. Maybe there is a bug in the SAD logic regarding respawns? Guard waypoints work quite a bit differently, so if that is indeed the problem it would be nice not to have to avoid using SAD. I guess for now I'll try using a combo of Guard and Move+Cycle. Edit: Something else I just remembered... when I experienced this issue, the players being ignored by OPFOR were also unable to satisfy trigger condition 'BLUFOR present'. So it may be something more complicated.
  12. UnitPlay and UnitCapture sound all well and good as long as you have a static LZ, but won't work if you want a dynamic pickup or dropoff location. Same with waypoints, unless you move the waypoints around via script, which is as much or more code than what he has already.
  13. Yeah, the command is 'chopper flyInHeight whateverTheDefaultFlyingHeightIs' :D
  14. I was just working on a script to do this last night, trying all kinds of stuff, and what I ended up with is pretty much exactly what you have. Scripting proper chopper landings has been an eternal struggle even since OFP.
  15. I thought the point of attaching an IR strobe was to get a plane to bomb something that it normally wouldn't be able to target.
  16. I definitely had the issue in ArmA2, but only in later versions. Maybe? :p
  17. After a certain ArmA2 patch a while back the game started displaying script errors in the main window... in OA these messages no longer seem to be there. Anyone know how to enable them?
  18. Hmm... it doesn't seem to work, even with the command line option. Edit: Nevermind, it does work... I just have a script that doesn't throw any errors but also doesn't work, apparently.
  19. Quite possibly; will try it when I get home. Thanks.
  20. This places the strobe, but it doesn't look like AI aircraft will target it. Anything special that can be done to make it target-able?
  21. I'm running into this issue as well in missions that have respawn. AI stops shooting at me post-respawn. Used to work fine; not sure what has changed. Would love to find a solution to this, though.
  22. NorthStar

    Orange-yellow bushes are complete fps killers

    Sad to say this still isn't fixed in 1.04 :(
  23. Enemy group sizes should depend on the number of players you plan to support in the mission. If it's for 4 or fewer, I wouldn't have any full strength infantry squads running around. A rule of thumb might be to make groups of at most 2x the number of players. Regarding the enemy accuracy, this needs to be set in the .ArmAProfile on the server who is hosting the mission. The variable you want to set is "precisionEnemy." UPS is good for small-scale stuff but in large cities with a lot of AI using it it's extremely taxing on all machines, especially the host. A quick and easy alternative is to place the patrolling squad at roughly the center of your desired patrol area, give them a "seek and destroy" waypoint at the same location with speed "limited" and behavior "safe," followed by a "cycle" waypoint at the same location. This will make them slowly patrol that area indefinitely, engaging enemies as they see them. Hope this helps.
  24. Put forceSpeed 8 in the init line of each of the convoy vehicles. You'll see a big improvement.
  25. NorthStar

    Lights

    You can use the "lightAttachObject" function to add lights on existing buildings and other objects. There's an example here: http://community.bistudio.com/wiki/lightAttachObject
×