Jump to content

tr3b0o

Member
  • Content Count

    8
  • Joined

  • Last visited

  • Medals

Everything posted by tr3b0o

  1. Hello, I wonder if I can export all items' image (weapon, attachment, ammo from vanilla, RHS, HAFM) or get at least the image path or what file they are in.
  2. tr3b0o

    Stealth Ghillie

    Update: added developer mode setting in the cba settings menu.
  3. Stealth Ghillie 1.1 Description This mod changes the player's camouflage value who wears any standard ghillie suit. If you wear any addon ghillie, the mod won't change your value (yet). From my experience, the AI does not care about your ghillie suit, he will spot you from 20-30m away while you on the ground in the forest. But this mod adds some realism to the ghillie suits. If you find that in some situation your value seems not right (AI spots you/not spots you), just write a comment plus what sitation you were in. Works in all side (blufor, opfor, independent, civilian). No addons required. Tested in SP, hosted server with 2 players and dedicated server. Factors Player's stance (stand, crouch, prone) Player's speed Terrain (meadow, forest, tree) Night Changelog - Download Steam workshop Armaholic
  4. tr3b0o

    Stealth Ghillie

    Update: fixed variable "meadows"
  5. tr3b0o

    Stealth Ghillie

    No, it does not affect the AI.
  6. tr3b0o

    Stealth Ghillie

    +Armaholic link and tested in dedicated server.
  7. I want to make a trigger which execVM an sqf file and wait until it finishes. But every time it gives me an error or it doesn't wait at all. I tried: myhandle = [] execVM "test.sqf"; waitUntil { scriptDone myhandle }; and it gave me this: waitUntil { |#|scriptDone my.. Generic error in expression also tried: myhandle = [] execVM "test.sqf"; null = [] spawn { waitUntil { scriptDone myhandle }}; then it does not wait at all. The trigger activates before the sqf finish. Inside the sqf, there is a variable at the end: test_sqf_running = nil I also tried: [] execVM "test.sqf"; waitUntil { sleep 1; isNil "test_sqf_running" }; and this happened: waitUntil { |#|sleep 1; is... Generic error in expression. also tried with spawn and it activates before the sql finish. Where is it wrong?
  8. Thanks 7erra and Horner, it works now!
×