Search results

  1. R

    [Tutorial] Custom Loot Tables and Adjusting Spawn Rates

    You can stop loot spawning without having all the files needed for custom loot. I'm curious as to why you would want a server to not spawn any loot though.
  2. R

    Base Building DayZ 1.2 Released

    For some reason Overwatch stuck with the 1.8 server_monitor code format, even though DayZ itself changed back in version 1.8.0.2. No idea why Overwatch kept it as it's a pain for script additions, you'll need to check the BB additions as they natively use _object which is no longer a defined...
  3. R

    Base Building DayZ 1.2 Released

    That's very likely the cause yes. Do you run Overwatch by any chance?
  4. R

    Base Building DayZ 1.2 Released

    Ok, in server_publishObject it calls a function from server_functions to do that check. Not sure where the REMOTE comes from as it's not listed in the diag_logs in that file. But yeah, it will pass that check anyway because it's in the allBuildables_class which you've added to the allowed...
  5. R

    Base Building DayZ 1.2 Released

    I believe that check makes sure the item is in the deployable table of the DB (if you use Reality, if not then it may be named something else like Object_classes). I'm not sure why it would have that issue, as I've never used Kikyou's improvements myself.
  6. R

    Base Building DayZ 1.2 Released

    You wouldn't want to move them server side, but you can move them to the mission file (if you make the relevant edits to associated files such as compiles.sqf) and edit them in there yes. The changes above though don't harm anything so you don't need to edit anything other than the variable they...
  7. R

    Base Building DayZ 1.2 Released

    Ah of course sorry you can't count fuel now they it isn't defined as an array. Try changing count _fuel > 0 to _fuel != 0
  8. R

    Base Building DayZ 1.2 Released

    Ah yeah, easy mistake, I got overzealous with my tabbing for the second if statement haha. Switch the definers to 0 instead of array possibly. So like this _fuel = 0; _code = 0;
  9. R

    Base Building DayZ 1.2 Released

    Yeah deleting the foreign key check was always an option, I prefer not to delete the checks though because they help secure it against hackers using the DB to store all manner of things. Plus, this is all going to become redundant very soon. What version of DayZ are you running again? I don't...
  10. R

    Base Building DayZ 1.2 Released

    It did, but it only works with the official hive or the epoch hive as far as I'm aware. That's what the changes you carried out with replacing playerUID with characterID, playerUID remains constant but only some database schemas allow it to be used on deployables. You can set that script up as...
  11. R

    Base Building DayZ 1.2 Released

    That's normal behaviour, since characterID changes every time you die and get a new character. Check my post here for a 'sort of' workaround. It's by no means a perfect solution, but it's only going to be temporary at this stage anyway.
  12. R

    Krixes - Self Bloodbag Script

    Check this post out. :)
  13. R

    Base Building DayZ 1.2 Released

    No problem. I know from fixing this for somebody else, who was running Overwatch, that replacing those variables and editing the database is all that's required. Provided you did everything else all right haha.
  14. R

    Base Building DayZ 1.2 Released

    Kikyou's improvements were designed to work with the Epoch hive, other DB schemas use variations on formatting and table layout. I know that with Reality, there is what they call a foreign key check on the instance_deployable table. This check makes sure when writing the table that the...
  15. R

    Base Building DayZ 1.2 Released

    Read the post again. :P
  16. R

    Base Building DayZ 1.2 Released

    For now, open player_remove and after disableserialization; Add player removeAction s_player_deleteBuild; s_player_deleteBuild = -1; player removeAction s_player_deleteCamoNet; s_player_deleteCamoNet = -1; Should remove the action from their screen. Since the fn_selfActions is already set not to...
  17. R

    Reading/setting a variable via a string

    Thanks to Killzone_Kid I got an answer to this problem. I can use missionNameSpace setVariable [format["%1",customDebug], true]; to set the variable that string is a place holder for.
  18. R

    Krixes - Self Bloodbag Script

    If you already have a full compiles.sqf in your mission file, you don't need to add another for fn_selfActions. Just change the path in the existing one. Though if you do add another compiles.sqf it can have the same name provided it's not in the same folder.
  19. R

    Reading/setting a variable via a string

    Ok, so I'm working on something that uses a lot of hint displays. The problem is that a lot of people use custom debug monitors these days so I want to be able to hide the custom monitor when showing my hints and restore it after my hints. That part is very easy to do and I've got it working...
  20. R

    Problems with AI missions, including "fixes" that aren't working...

    Haha sometimes you need a fresh pair of eyes. :)
Back
Top