Jump to content

kylania

Member
  • Content Count

    9181
  • Joined

  • Last visited

  • Medals

  • Medals

Everything posted by kylania

  1. kylania

    New Player or about to be questions.

    Hope you enjoy ArmA2! :)
  2. Ack, sorry! Here's the link to Armed Assault Editing Guide - Deluxe Edition - English version by Mr-Murray. :)
  3. Unless it's changes, I thought most camera scripts were still done in SQS? Either way, use sleep 5; for 5 seconds of pause in an SQF or ~5 for 5 seconds of pause in an SQS. I know the great ArmA cam tutorials had lots of ways of pausing and timing the camera, check out Mr Murry's guide.
  4. kylania

    ArmA II demo problems

    I have horrible mouse stuttering on the menus, but not in game or the Editor. It's only when a menu is up, as in game loading, or dialogs within the game. Other times the mouse is smooth. This is with the full game.
  5. kylania

    Easy artillery??

    One one as in one one explosion or after one use it no longer appears on your Communications menu? If it's still on there saying 'Active' it means it's waiting for you to tell if it the hit was good and they should commit, or if you wanted to cancel the mission I think.
  6. kylania

    Turning off all street lamps

    Place a GameLogic where in the middle of your city and add this to it's init: {_x switchLight "OFF"} forEach ((getPos this) nearObjects ["StreetLamp",200]); Change the "200" to whatever range you want.
  7. kylania

    Trigger Question

    Add in EventHandlers for the shilkas that setPos random villagers +10000m in the air when the shilka is killed, then have triggers that check to see if those villagers die, and if so createUnit a chicken on a remote island. Then have a area trigger there that once 3 chickens are in the zone the mission ends. Slightly more complex, but far more rewarding I feel.
  8. kylania

    Easy artillery??

    You are missing a ; after execVM "briefing.sqf" in the first line of your init.sqf. :) It should be: execVM "briefing.sqf"; Had a feeling it would be something simple like that. :)
  9. I swear I tried that, but it was at 3am, so who knows! :)
  10. You're quite welcome. I know there's a method for referring to it via it's id number (961831 in that bridge's case), but can't for the life of me remember how. :)
  11. Well done Rocket, superb work as always! :)
  12. Place a GameLogic on the bridge called bridgeMonitor. Then create a Trigger with the Condition of: !alive nearestObject [bridgeMonitor, "House"];
  13. This is why I won't use the VOPSound pack. I hear it breaks things in Single Player too. A SOUND mod shouldn't do that.
  14. kylania

    Easy artillery??

    Can you zip up your mission and upload it somewhere. Because it should be working as you just described it.
  15. Yeah, this new briefing thing seems overly complicated. While it seems to have more flexibility, without some kind of wizard or tutorial in the editor it's very clumsy to use.
  16. kylania

    Easy artillery??

    Make sure you have your SOM module named "SOM".
  17. kylania

    Easy artillery??

    Yeah, looking through both the Artillery Module and SOM module I'm not really seeing anything to limit how many times you can use it. There's probably a SOM value for that, but since the documentation is non-existent, I'm not sure. You could setup a variable to keep track of how many times it's fired and remove the option after that perhaps?
  18. kylania

    Template Waypoints

    I think that's a bug, there was another post about it last week. No one seemed able to save the waypoints, even with the full game.
  19. Is the player grouped with the heli? Actually, even grouped it works, just if you're the leader the heli starts where you were instead of where you placed it. If you place a Rifleman someone on the island, and put player moveincargo [plane1,1]; in it's init field, then you place an MH-60S (flying!) over the water somewhere and call it plane1 and Preview your mission, your rifleman will end up in the backseat of the heli.
  20. You need to unPBO a mission file to get the editable folders/files out of it. Download something like Arma Unpbo Tool.
  21. Here's how to do that: How to Collect Evidence
  22. kylania

    Easy artillery??

    You don't need the Radio Command. You can do it from the init.sqf, just have to wait for the SOM module to load, try this (assumes your SOM module is named SOM: init.sqf: waitUntil { not isNil { SOM getVariable "initDone"} }; waitUntil { SOM getVariable "initDone" }; [["artillery_barrage"], player, [[]]] call BIS_SOM_addSupportRequestFunc;
  23. You can place the Troop on the ground anywhere in the Editor, and as long as you have the "moveInCargo" thing in it's init field, it'll start the missions in the heli.
  24. Yup, some missions won't even need the init.sqf actually. It all depends on what you're going to be doing with scripts and such. I'd highly suggest getting ArmAEdit. It's a neat text editor that'll color code your SQF files for you so you can catch syntax errors and look at pretty code.
  25. kylania

    Print screen in game?

    Or just, Print Screen. :) Then paste into your favorite picture editor program.
×