Search results

  1. M

    Add admin tag to username

    http://community.bistudio.com/wiki/Multiplayer_Server_Commands#Admin
  2. M

    Addition of Buildings to Overwatch

    If you want to keep the size of your mission file down, you can add your buildings to the dayz_server.pbo Inside your dayz_server.pbo create a folder called 'Buildings' inside that folder you should place your sqf's. Then find 'server_monitor.sqf' inside the 'system' folder, once open do as...
  3. M

    Death cross script ??

    It is certainly possible, as mentioned, this is how a death is handled in DayZ Origins. As far as I am aware nobody has published a script that achieves this. You would have to alter the 'player_death.sqf' and make use of createVehicle with a class name such as 'GraveCrossHelmet' then set its...
  4. M

    In-game Menus

    If this is the kind of thing you're looking for, these should help: Dialog Tutorial For Noobs User Interface Editor
  5. M

    [Release] Easy 3rd person limit

    If you're asking how to allow third person when not in a vehicle you should remove the type 'man' from the '_types' array like shown below: _types = [ "car" ]; That would disallow third person only in cars.
  6. M

    [Release] Easy 3rd person limit

    Discussion and help thread for Moses' Easy 3rd person limit script.
  7. M

    [Release] Easy 3rd person limit

    Easy 3rd person limit V1.0 This scripts allows server administrators to easily choose what vehicles a player cannot use the third person view in. Requirements Easy = Blue <5 mission.pbo Installation Steps - Download the '3rd.sqf' script from the download link below Place it in your...
  8. M

    Variable syntax help, please :)

    No problem, glad I was able to help.
  9. M

    Dancing Script?

    If you want to make your own script you'll need to use the playMove command with a desired move, you can find most moves here. The dance moves are: ActsPercMstpSnonWnonDnon_DancingDuoIvan ActsPercMstpSnonWnonDnon_DancingDuoStefan ActsPercMstpSnonWnonDnon_DancingStefan So, to start a dance...
  10. M

    Variable syntax help, please :)

    As far as I understand that is correct. Check this out, it should help. For your second question, one way this could be done would be using BIS_fnc_selectRandom and an array of potential locations, such as below: _destinations = [ [4676.18,2509.28,0.001], //BALOTA [9999,9999,9999], //ANOTHER...
  11. M

    side/global chat only available if you have a radio

    As far as I know, this isn't possible. There are no scripting commands that can be used to disable/enable chat, though I'm no expert.
Back
Top