Search results

  1. H

    Custom music while loading screen?

    protip: join Gld server take a look at their mission pbo ??? profit
  2. H

    how to stop the server from deleting weapons

    should be in server_monitor.sqf
  3. H

    "bin\config.bin/cfgWeapons."

    lol you answered your own question But yes some weapons get "errors" because rocket messed with cfgweapons in an attempt to blacklist weapons
  4. H

    Pulling data from SQL table in script

    first, in your HiveExt.ini you must use trace debug logging to log ALL queries. second, CHILD:999:select allowed_player_guid from player_domes WHERE id=%1 is wrong. CHILD:999:select allowed_player_guid from player_domes WHERE id=%1:[]: is correct Third, there is a chance if your have...
  5. H

    Pulling data from SQL table in script

    Try child id 501-504
  6. H

    Pulling data from SQL table in script

    They never had child:999 in the first place. The origins hiveext.dll is based on public hive hiveext.dll of dayz server 1.7.4.X
  7. H

    Some Coding Questions (_this select and other)

    player is just a reference to the unit (type object) that the client is controlling. There is really nothing special about player at all and yes you can use getvariable to find out values but there isn't really a need as most of the stuff is just medical stats that you can find out by looking at...
  8. H

    Some Coding Questions (_this select and other)

    private["_array","_source","_kills","_killsV","_humanity","_wait","_myKills"]; if (deathHandled) exitWith {}; deathHandled = true; //Death _body = player; _playerID = getPlayerUID player; //Send Death Notice //["dayzDeath",[dayz_characterID,0,_body,_playerID,dayz_playerName]]...
  9. H

    Gender Selection screen, help me get rid of it?

    oh noes the secret is out :p
  10. H

    How can I correctly reference this file from my init.sqf?

    one does not simply "recompile" cfgvehicles. The only thing you can do on that front is cfgsounds and rsctiles
  11. H

    Transfer Dayz CC to Reality Database

    all tables are the same except survivor (distancefoot) and instance_deployable which have 3 xtra fields
  12. H

    ChooChoo Trains Script

    Prolly something wrong with ur description.ext
  13. H

    [Request] How to read a variables from the database?

    to use child:999, you make an sql query (you got that part right) and the returned data is of type config. To convert it into usable data, call-compile-format it and it will become a 2d array. The first element of the array is an array containing 2 elements. The first element is of type string...
  14. H

    Kill messages/Death messages

    The death msg package (that most people) use MPhit and store the shooter and victim every time a player gets hit. Logically, the other alternative is to just wait until the player dies and then record the shooter and victim (which is what I did)
  15. H

    Kill messages/Death messages

    add my code at the very end of switchmodel.sqf. This way even if you change cloth the eventhandler is always added back
  16. H

    ChooChoo Trains Script

    Train spawns and runs automatically as long as there is 1 person in the server :D
  17. H

    Survivor, Hero and Bandit Voice Commands Menu [HELP]

    You should record your own voice and put that in the emote menu
  18. H

    Death Screen

    of course
Back
Top