-
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 ExcellentAbout Brett Nordin
-
Rank
Capo
Personal Information
- Homepage
-
厉害救济 started following Brett Nordin
-
Use the one from exad, and that should solve all your issues!
-
Okay, so what virtual garage are you using? As those issues are pertaining to virtual garage.
-
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)!
-
lucy2990 started following Brett Nordin
-
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
-
SET @@sql_mode = ''; SET @@GLOBAL.sql_mode = ''; Boom try that
-
<Deleted>
-
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!
-
ALTER TABLE `player` CHANGE COLUMN `assigned_items` `assigned_items` TEXT CHARACTER SET 'utf8' NULL ; Try running that
-
Run this: ALTER TABLE `player` CHANGE COLUMN `assigned_items` `assigned_items` TEXT CHARACTER SET 'utf8' NULL DEFAULT '[]' ; It should fix that issue
-
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.
-
Thanks, Completly Missed it!
-
Discoverd a issue with the repository not updating properly. Here is a key update : https://github.com/BrettNordin/Exile/commit/4c5b65d25d6816c5d3af4cf40a4d32be104bb374?diff=split
-
Brett Nordin started following [Done] Exile UI override addon (Serverside)
-
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!
-
If you would like better support, The exile discord can help out, Join it here Discord
-
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.