Search results

  1. AlienX

    Repair all vehicles on restart?

    You have set fuel to 1? So, do you have this at the moment? if (_object isKindOf "AllVehicles") then { { _selection = _x select 0; _dam = 0; if (_selection in dayZ_explosiveParts and _dam...
  2. AlienX

    Repair all vehicles on restart?

    No, however the code path looks fine. The last code should not have deleted your vehicles from the database, if anything it just would have not loaded them into the game if an error existed in the sqf.
  3. AlienX

    Repair all vehicles on restart?

    Looks fine... Try this perhaps: if (_object isKindOf "AllVehicles") then { { _selection = _x select 0; _dam = 0; if (_selection in dayZ_explosiveParts and _dam > 0.8) then {_dam = 0.8}...
  4. AlienX

    Repair all vehicles on restart?

    Pastebin the modified file after you changed it dude so i can have a look.
  5. AlienX

    Repair all vehicles on restart?

    Its not what your adding, its whats taken away... You need the fuel and velocity. The fuel, well that gives it fuel The velocity just twitches the vehicle out of the floor a little to make it drivable in certain circumstances.
  6. AlienX

    Inventory Check

    _item = "ItemTent"; //Example _itemName = getText (configFile >> "CfgMagazines" >> _item >> "displayName"); _result = [player,_item] call BIS_fnc_invAdd; if (_result) then { cutText [format["You now have a %1!", _itemName], "PLAIN DOWN"]; }else{ cutText [format["I cannot...
  7. AlienX

    Inventory Check

    There is a useful function for this, one sec i will look it up
  8. AlienX

    cannibalism

    Shin, i assume that "RawInfectedFlesh" and "RawHumanFlesh" is custom to 2017? If so, how did you add the new items/models? (feel free to just point me to a folder/class where i can learn from it :)) ** edit ** O, found it in dayz_equip config.cpp - coolies
  9. AlienX

    Mission.sqm problem

    bit confused, either we are missing a load of your mission file to tell you where the error is correctly, or this is the problem: So, you have class Item99 defined, which is cool - however you have 3 too many closing braces: class Item99 { position[]={-18725.248,379.55328,25889.797}...
  10. AlienX

    Get value from database?

    I assume you want to get the value from the database within arma code? Or are you just asking for the SQL Query that is required to get some data from the database?
  11. AlienX

    Need help with Coordinates

    Could you please show the coord values BEFORE and AFTER conversion for the mission sqm?
  12. AlienX

    Repair all vehicles on restart?

    Sure is pal! in dayz_server.pbo\system\server_monitor.sqf find the line: if (_object isKindOf "AllVehicles") then { This is the code snippet we are interested in: if (_object isKindOf "AllVehicles") then { { _selection = _x select 0...
  13. AlienX

    DX | Custom Debug Monitor v2.0

    I must say i had the same issue when using the multi user/admin debug menu (also used the hint function)... Just made my log files MASSIVE - thats why I made my own... Doing the debug monitor is a great way to start learning sqf tho - keep at it Fusi0n and make something unique :D **edit**...
  14. AlienX

    BEC not enough memory when restarting?

    how much physical RAM has your server got?
  15. AlienX

    Moving & Resizing GUI Elements Dynamically

    Na i mean like custom GUI elements i create in RscTitles on the clients mission pbo :D
  16. AlienX

    Ideas wanted on getting Southern Part of Chernarus to be night and north day.

    Please share this accelerated time script with us, i am interested in its contents :) In theory yes its possible for players to have different times, if setDate is called on their clients - not from the server.
  17. AlienX

    Moving & Resizing GUI Elements Dynamically

    Hello all, Does anyone know of any way of dynamically moving or resizing a GUI element while its on the screen via sqf? Thanks.
  18. AlienX

    Ideas wanted on getting Southern Part of Chernarus to be night and north day.

    This is in theory possible, however it will look gawd damn aweful if it were to be implemented. So - lets take this into account: Take the coords of the player and do some magic math to create a time based off the coords... Now we use a local client setDate() command (in theory) to set their...
  19. AlienX

    DX | Custom Debug Monitor v2.0

    Anytime, i am all for helping people trying to learn Arma's extremely weird scripting language :P
  20. AlienX

    Server Side Effects

    Got it, will look at it soon :)
Back
Top