Jump to content

valentin2

Member
  • Content Count

    4
  • Joined

  • Last visited

  • Medals

Community Reputation

0 Neutral

About valentin2

  • Rank
    Rookie

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. valentin2

    Any questions about Arma 3

    1 : No 2 : Update the array with new units 3 : (typing error) Create an array with all units and all vehicule https://community.bistudio.com/wiki/allUnits https://community.bistudio.com/wiki/vehicles
  2. valentin2

    Any questions about Arma 3

    Hello sarogahtyp, thank you for your answer. 1/ For the script to manage the slots access : I'll use extDB3 + OO_EXTDB3 whit Mysql ( first test is OK) (Thanks @code34). I'll use too GUI EDITOR for the interface ( thanks @minipopov and @code34) 2/ Multiple Zeus : No solution currently. 3/ Manage AI : This code works pretty well: _newUnits = []; _oldUnits = []; while {true} do { sleep 5; _allUnits = allUnits + vehicles; _newUnits = _allUnits - _oldUnits; { _x addCuratorEditableObjects [_newUnits,true] } forEach AllCurators; _oldUnits =+ _newUnits; };
  3. Hello guys, First, I want to apologize for my english level, indeed, I'm a lil' frenchie you know ! I'm working on a "Sector Control" mission in WW2 RP (endless and multiplayer mission), but i'm brand new in Arma3 development and I have some questions, I hope you guys, may answer. 1/ I'm working on a script to manage the slots access (to allow players to spawn with this slot, referring to their ID (slot will be linked with a military rank that allow access to some military supply). My issue : the IDs database is a text file, and I would do this with a MySQL-like database. Is it possible ? (Is there addons with an example of connexion and SQL query call ? (I know pretty well the SQL part, it will not be an issue for me). Bonus : maybe a tuto for a graphic interface with an admin-only access ? 2/ Zeus : Is it possible for more than on person at time to be Zeus ? 3/ Manage AI : I'm using "ModuleSpawnIA" to automaticaly spawn AI to run the Objective. I can't control AI by using Zeus. Do you know why ? Is it possible to do it ? And is it possible to disable AI spawn with a command, if I want, even if the mission is still running ? Thank you for your help, If you have questions, please don't hesitate ! Valoche
×