Jump to content

Dedmen

BI Developer
  • Content Count

    2910
  • Joined

  • Last visited

  • Medals

Everything posted by Dedmen

  1. Dedmen

    Briefing screen

    It should be. There were problems in the past where you could manipulate the code behind some of these buttons and execute arbitrary scripts even in multiplayer with battleye.
  2. At that point you already joined the server. As far as I know the server will only send over a list of slots/players and basic info about the mission like name, terrain, requiredAddons (hardcoded in the mission.sqm) and parameters. Players that join might be able to look into the mission parameters and see what mods it's configured for?
  3. Dedmen

    This site is dangerous?

    That a moderator has been informed and will remove it. There is nothing wrong with your or the BI forum.
  4. Yes. Because you tell them to not do anything. You need to pass a script to the addAction's "script" parameter. What you are doing is executing [this, ["ACE_surgicalKit"]] call ace_arsenal_fnc_initBox And passing that result to addAction. the initBox function returns nothing, so you are passing nothing to the addAction. Thus the addAction also does.. Nothing. As said multiple times, ACE Arsenal add's it's own action to the box in the ACE Interaction menu, just use that. Correct. You are trying to pass a object (player) as the whitelist, that doesn't make sense. It can only be bool or array. You are setting up the whitelist correctly. But then right after that you are deleting the whitelist again and are allowing all items. Yeah because it's not in the scroll menu, it's in the ACE menu.
  5. No they won't. They'll get error messages and will not be able to join. You don't crash from missing a mod. sqm* And he already said he wants to have it be configurable. You cannot edit mission.sqm from a script. Negative. Only thing I can think of is you kicking people if they enter the mission without the required mods aka after they joined in, when preInit fires. But you cannot show people what mods they need before they join the server.
  6. Yes it is CBA. profileNamespace setVariable ["CBA_diagnostic_statements", nil]; Execute that in debug console. All "previous" scripts will be deleted.
  7. Dedmen

    This site is dangerous?

    One of the guys in that thread has a image embed from raptr in his signature.
  8. I'd say more ease of implementation than size. Also afaik you need to pay patent fee's for H264 (I assume that's what you mean by mp4) decoders that are used commercially (FYI Arma is a commercial product).
  9. "Insider Preview" Windows insider preview builds are not supported by battleye.
  10. The Arma Debug console doesn't save script history. There are no previous/next buttons. You must be using some mod.
  11. Do you mean the previous/next script buttons? are you using any mods? What "scripts" do you mean? There is only one script field and 4 watch fields.
  12. Dedmen

    Enhanced Movement

    He is very much still there. Atleast I can reach him. Don't know why you can't. I'd say just give him a little more time. It's not like it's his job to work on this.
  13. Can be combined into !(_this getVariable ["BIS_exitScript", true]) But why are you exiting when exitScript is false? Seems opposite of what it logically should be.
  14. Yes just had another guy in Discord with the same problem. Seems to be Battleye being bugged: https://feedback.bistudio.com/T127848
  15. One part of the armor value like thickness is defined in the material which is defined in the model.
  16. I don't understand? Do you know what a Public Variable Eventhandler does?
  17. https://community.bistudio.com/wiki/publicVariableClient @gc8 :D split second!
  18. Okey. I'll go take a nap. Seems like I need it.
  19. True. Modern CPU's can now execute more code in these 3ms as old CPU's. If anything, the limit would be shortened by modern CPUs It was chosen based on the expected fps the devs wanted. Averaging out all the other stuff done in a fame, they looked how much spare time they can dedicate while not letting the fps drop too far +1. I'd say people should only use unscheduled if they know what they are doing. And if they do know what they are doing unscheduled has quite a few benefits. But can be very detrimental if you don't know what you are doing.
  20. Adding keybinds like "key pressed" or "key released" is easy. But if you want "key held for a second" and similar you have to code that manually. I wouldn't know how to detect that. Something about being in gunner view, I think that's possible but also don't know how. Certainly not a easy thing you chose for a beginner. Might be easier to just be more vocal towards BI about that bug ^^
  21. Dedmen

    Can't log into the Wiki

    For small contributions you could also drop them into the Arma discord's #community_wiki channel. Maybe one of the other very active wiki editors can make that change for you.
  22. WeaponOnBack is lowering the weapon? I love Arma.
  23. Not really.. A check after every expression sums up quite quickly. CBA does one check at most which is a few microseconds. Also I didn't compare the 3ms check with CBA code. I compared scheduled with unscheduled. Yes. That would be a reason not to use scheduled. Especially with animations. What? adapted? What do you mean? 3ms is hardcoded, CPU doesn't matter. Bullshit. Same machine != same instance.
×