Search results

  1. D

    [Help] Donn Chocolat Tools

    Hi, Here a brief description of Chocolat Tools: You can access the release topic on the section Script/Addon releases, or by this link: http://opendayz.net/threads/donn-chocolat-tools.19702/
  2. D

    Donn Chocolat Tools

    Bug found and fixed. The bug was: On nearveh.sqf [release 1] your [Chance Of Vehicle Show On Map] will be changed from the desired value x (50% default) to: x+(x/100)*(100-x). So the Default value of 50% will turn into 50+(50/100)*(100-50), that is, 75%. A value of 30% will be changed to...
  3. D

    Donn Chocolat Tools

    Chocolat Tools is a Self Action Option that you can turn on/off any moment. Chocolat Tools Off: Game plays as normal. Chocolat Tools On: 1) Land vehicles *1000 m arround player have a chance of *50% to be show on map: - Turn on/off Chocolat Tools don't change the land vehicles that are...
  4. D

    Make Deployable Bikes Not Disapears on Server Restart

    I'm also a noobie, lets think together. When you deploy something, you will probably need to create a variable defining the object you is deploying, this is _vehicle, for example. So you can use this same variable, _vehicle, to put the vehicle in the MySql Database, after the deploy...
  5. D

    Find Vehicles Around Player

    Still need to test, but i believe: "getpos player select 0" get player X position, and "getpos player select 1" get player Y position.
  6. D

    Find Vehicles Around Player

    This commands: position = [4550, 6200]; scanrad = 3000; helicrashes = nearestObjects [position, ["UH1Wreck_DZ"], scanrad]; Will find all the crashed helicopters (["UH1Wreck_DZ"]), 3000 meters around the position (4550, 6200), and store the list of finds in "helicrashes". 1) POSITION TO AROUND...
  7. D

    Make Deployable Bikes Not Disapears on Server Restart

    Nice rockeumel! This command will put in the MySql database the vehicle stored in _vehicle? What about this variable _publichVeh at the end? It is set by Epoch itself?
  8. D

    Getting Server to Show up on DayZ Commander

    Ross, the problem is fixed? I am reporting already to "arma2oapc.master.gamespy.com" and the server does not apperas in DayZ Commander. Any tip?
  9. D

    Make Deployable Bikes Not Disapears on Server Restart

    I have a Deploy Bike script, and when it deploy a bike it set the bike ObjectUID to 1 and its ObjectID also to 1. 1 is the value for objects that does not save on the MySql database? Can i set different ID and UID (not 1) and let the bike save on the database and "survive" a server restart...
  10. D

    How to Know if the Player is Standing up (not Proned or Crouched)?

    This capture the player animation: _state = (getText (configFile >> "CfgMovesMaleSdr" >> "States" >> animationState player >> "actions")); This check if the player animation is proned, and if he is, make the player stand up: if (_state in...
  11. D

    How to Know if the Player is Standing up (not Proned or Crouched)?

    Thankyou cyrq! This open a wide variety of option to my new scripts and changed ones. Once i figure the last bit out, you is checkling prone, i an checking stand, i will post the solution here.
  12. D

    How to Know if the Player is Standing up (not Proned or Crouched)?

    Hi, I need to know if the player is standing up, so i make he stands, if he is not. Private ["_isStanding"]; _isStanding = ??? if (!_isStanding) then { player playAction "playerStand"; } _isStanding must be True, if player is standing, and False, if player is not standing. Or just...
Back
Top