Recent content by fgw

  1. F

    Radio Messages no longer showing

    can confirm radio messages working! have some custom ai units and get radio messages! one remark though: the messages are displayed for a fairly short period of time. might be a good idea to spawn the display of the messages and run it in a loop for a few times. most of the time, in the heat of...
  2. F

    "Server menu" script for DayZ. Interested?

    count me in ...
  3. F

    stop spawning zombies at crashsites?

    thanks ebay, for your suggestion! as sarges script works as expected i simply use this script. no need to look into using different classnames and do some further testing. my scripts is doing what i want and i can move on to other things on my list ...
  4. F

    no entry 'bin\config.bin/CfgWeapons.'.

    just for info here are the related lines from my rpt (removed all lines i think are not related to this for simplicity): 11:04:02 "Initializing DZAI version 1.9.2" 11:04:02 "[DZAI] Reading DZAI configuration file." 11:04:02 "[DZAI] DZAI configuration file loaded." 11:04:02 "[DZAI] Compiling...
  5. F

    no entry 'bin\config.bin/CfgWeapons.'.

    have seen this too, but did not look into it yet! as far as i remember, the weapon mentioned in the popup is an ak74.../burst. have to look for the correct name when it pops up next time. using custom loot tables too, but i doubt its related to them as i left weapon configs untouched. but as...
  6. F

    stop spawning zombies at crashsites?

    actually i did not find a way to prevent zeds from spawning, but this thread http://opendayz.net/threads/anti-zombie-zone.13389 pointed me to a script created by sarge http://opendayz.net/threads/zed-nuker-script.12071/ which removes zeds right after spawn. a workaround i can live with ...
  7. F

    stop spawning zombies at crashsites?

    anybody an idea how to stop zombies from spawning at crashsites? what triggers the zombies to spawn at crashsites? searched through the scripts but was unable to find an answer ... reason is, i want to have ai instead of zombies around crashsites and thus get rid of the zeds!
  8. F

    starting DZAI from init.sqf?

    buttface, your instructions state to call dzai_initserver.sqf from server_monitor.sqf. i usually start all my added functionality from init.sqf. the only difference i can see is the startup of DZAI is a bit delayed compared to your recommendation. can i safely start DZAI from init.sqf or is...
  9. F

    About AI land vehicle patrols - Early testing results

    if the wrecks spread all over the map are the major problem i would assume this is not a big deal for many servers. many server admins have removed the wrecks and junk anyway as i did. so to have the option to switch vehicle patrols on and keeping in mind this will only work if wrecks are...
  10. F

    Possible to publish to new table in database?

    guess the main reason is not having ObjectID at hand after publishing an object to the database. as 308 function now returns ObjectID you should be able to solve this. dont expect such issues here, as i dont read back all objects from the database but the object just published. so there is...
  11. F

    Possible to publish to new table in database?

    kikyou2, digged into the hive again as i was in the need of a modification for my server. would like to be able to spawn vehicles to the running server which are published to the database and also correctly updated and streamed after restart. remember i'm talking about plain vanilla dayz...
  12. F

    Possible to publish to new table in database?

    sorry to hear that! i just pulled the source code and compiled it. as said before, i don't use this hive version so have not looked into it. i stick to the standard hive which is used on vanilla dayz, though slightly modified ... no idea whats wrong with this version.
  13. F

    Log to a file when player joins or leaves

    using callExtension this should be doable fairly easy, as long as we are talking about character strings. but as i understand this is the case in your situation. the file will be written record by record (line by line). lets say whenever somebody logs in you write such a record to the file. no...
  14. F

    Clearing rockets debris in 1.8.3

    done in variables.sqf: dayz_Trash = 0;
  15. F

    Possible to publish to new table in database?

    table name is supplied in the sql statement. this calls allow you to access any table in your database. from looking at the example supplied by kaotix _key = format["CHILD:999:UPDATE `object_data` SET `characterid` = '%1' WHERE `objectUID` = %2 LIMIT 1:[]:",_survivorID,_objectUID]; _result...
Back
Top