Brett Nordin

Donator
  • Content count

    182
  • Donations

    10.00 EUR 
  • Joined

  • Last visited

  • Days Won

    2

Brett Nordin last won the day on October 1 2018

Brett Nordin had the most liked content!

Community Reputation

80 Excellent

4 Followers

About Brett Nordin

  • Rank
    Capo

Personal Information

Recent Profile Visitors

1862 profile views
  1. Brett Nordin

    [Done] ExtDb3 Compatibility with Exile

    Use the one from exad, and that should solve all your issues!
  2. Brett Nordin

    [Done] ExtDb3 Compatibility with Exile

    Okay, so what virtual garage are you using? As those issues are pertaining to virtual garage.
  3. Brett Nordin

    [Done] ExtDb3 Compatibility with Exile

    Just make sure you are using the latest exile.ini from my repo, if it still doesn't solve the issue let me know and i will look into it further. (It seems your exile.ini is missing a few lines)!
  4. Brett Nordin

    [Done] ExtDb3 Compatibility with Exile

    This was not an instruction listed in the install, but it is listed in my wiki THE GREAT WIKI OF ALL WIKIS (Not Wikipedia) :P
  5. Brett Nordin

    [Done] ExtDb3 Compatibility with Exile

    SET @@sql_mode = ''; SET @@GLOBAL.sql_mode = ''; Boom try that
  6. Brett Nordin

    [Done] ExtDb3 Compatibility with Exile

    <Deleted>
  7. Brett Nordin

    [Done] ExtDb3 Compatibility with Exile

    We made progress! If you are using workbench edit the players table and uncheck the not null box on the backpack column. If you are having issues doing this I will be home in 30 min and will send you the query!
  8. Brett Nordin

    [Done] ExtDb3 Compatibility with Exile

    ALTER TABLE `player` CHANGE COLUMN `assigned_items` `assigned_items` TEXT CHARACTER SET 'utf8' NULL ; Try running that
  9. Brett Nordin

    [Done] ExtDb3 Compatibility with Exile

    Run this: ALTER TABLE `player` CHANGE COLUMN `assigned_items` `assigned_items` TEXT CHARACTER SET 'utf8' NULL DEFAULT '[]' ; It should fix that issue
  10. Brett Nordin

    [Done] ExtDb3 Compatibility with Exile

    Arma 3 will crash while running 64bit during any shutdown or restart, this is to be expected. Could you also provide your extdb log for me to help diagnose the issue? It may just be that you have a duplicate player entry in the database.
  11. Brett Nordin

    [Done] Exile UI override addon (Serverside)

    Thanks, Completly Missed it!
  12. Brett Nordin

    [Done] ExtDb3 Compatibility with Exile

    Discoverd a issue with the repository not updating properly. Here is a key update : https://github.com/BrettNordin/Exile/commit/4c5b65d25d6816c5d3af4cf40a4d32be104bb374?diff=split
  13. Hello Exile Community, Today I present to you a serverside addon for editing the client UI! This script requires a good knowledge of how eliteness works due to you having to debin your exile client. I will not provide a description of how to do that. How does this script work? It creates a thread on the client to change and update the UI on the fly, meaning you can update this script with the server running (if you know how variables work :P) Download: https://github.com/BrettNordin/ExileCLO Good luck with this! If you have any questions relating to the addon and not mikero tools, please feel free to post them here!
  14. Brett Nordin

    [Done] ExtDb3 Compatibility with Exile

    If you would like better support, The exile discord can help out, Join it here Discord
  15. Brett Nordin

    [Done] ExtDb3 Compatibility with Exile

    If you are still experiencing this issue, go back to extdb2 you don't need extbd3, your arma server doesn't have enough content to utilize the additional ram. The issue is most likely the way you have setup your server environment. If you want to fix the issue you would have to revert what this did to your db. ALTER TABLE `container` DROP FOREIGN KEY `container_ibfk_2`; ALTER TABLE `container` DROP INDEX `territory_id` ; ALTER TABLE `construction` DROP FOREIGN KEY `construction_ibfk_2`; ALTER TABLE `construction` DROP INDEX `territory_id` ; ALTER TABLE `territory` DROP FOREIGN KEY `territory_ibfk_2`; ALTER TABLE `territory` DROP INDEX `flag_stolen_by_uid` ; If you do this I will not provide support for issues that reverting this causes.