Jump to content

numpty

Member
  • Posts

    517
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by numpty

  1. It doesn't if you have the sql creation script coded in as custom script properly it should auto import.. if it was my config they should be in there just look at the create dB script last kindle you mist rename sql to the file name in there and also put in correct directory... you can change directory if you want or file name up to you but it should work as has for me for last few years Sent from my SM-G975F using Tapatalk
  2. It should work if you update the file with my change then... and also make sure you remove the create database line in the sql file otherwise will mess it up
  3. i dont understand... you stopped using phpmyadmin and started using workbench and got the error...??
  4. this is how my first few lines look like if this helps change root to a specific user if you want SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; -- -- Compatible with newer MySQL versions. (After MySQL-5.5) -- This SQL uses utf8mb4 and has CURRENT_TIMESTAMP function. -- /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `altislife` -- Default Schema -- -- -- Drop procedures to ensure no conflicts -- DROP PROCEDURE IF EXISTS `resetLifeVehicles`; DROP PROCEDURE IF EXISTS `deleteDeadVehicles`; DROP PROCEDURE IF EXISTS `deleteOldHouses`; DROP PROCEDURE IF EXISTS `deleteOldGangs`; DROP PROCEDURE IF EXISTS `deleteOldContainers`; DROP PROCEDURE IF EXISTS `deleteOldWanted`; DELIMITER $$ -- -- Procedures -- Edit root to match a user in MySQL -- For external databases: Edit localhost to match rootserver IP -- CREATE DEFINER=`root`@`localhost` PROCEDURE `resetLifeVehicles`() BEGIN UPDATE `vehicles` SET `active`= 0; END$$ CREATE DEFINER=`root`@`localhost` PROCEDURE `deleteDeadVehicles`() BEGIN DELETE FROM `vehicles` WHERE `alive` = 0; END$$ CREATE DEFINER=`root`@`localhost` PROCEDURE `deleteOldHouses`() BEGIN DELETE FROM `houses` WHERE `owned` = 0; END$$ CREATE DEFINER=`root`@`localhost` PROCEDURE `deleteOldGangs`() BEGIN DELETE FROM `gangs` WHERE `active` = 0; END$$ CREATE DEFINER=`root`@`localhost` PROCEDURE `deleteOldContainers`() BEGIN DELETE FROM `containers` WHERE `owned` = 0;
  5. You are using an unedit mysql file... you need to remove that line and it should work as its trying to connect via user arma 3 only via localhost... so thats the reason
  6. No problem good luck hope you get it fixed Sent from my SM-G975F using Tapatalk
  7. I would contact tcadmin and see what they suggest then looks like a bug. Let them know what you have tried and give them as much information to help and then they should be able to help more and if possible debug the issue to get it resolved Sent from my SM-G975F using Tapatalk
  8. Hi I had a similar issue and found out as I had copied the steam password it had inadvtantly added a space at the end triple check for that by manually typing in the password and username and then also make sure you have done the necessary steps for steamcmd from the tcadmin wiki like adding the steam api key and also the default steam account in settings.... what I usually do is connect to the dedi and run the steamcmd.exe and Login username Password Once logged in type exit to quit Then should save the information Hopefully doesn't always and then should work.. hope this helps
  9. I don't know if its possible I will look into it but I think the game is vocoder for redisdb...so you would need to re code the game but will look for you Sent from my SM-G975F using Tapatalk
  10. What do you mean I have given everything that is used in my config and it works perfectly shits down server perfectly and everything
  11. oh i will have to give it a try thanks man
  12. Best thing is ask the dev or open issue on the hithib as thags hiw i got my issue resolved ... Sent from my SM-G975F using Tapatalk
  13. I gave up with trying after a while if you managed to get one working id be grateful if you would share
  14. are you using the one shared by tcadmin the steam workshop dowenloaer scripts with the butons n stuff which is now built into tcadmmin for certain games.. if so i had similar issue.. i just tell my customers to check which mods it needs and download the requred first and no issues then
  15. its in the ini file if i remember in the custom config files should be something like DB INFO or something...
  16. add me on discord if you want to bug test on my system ? numpty9989'3464 and see what is wrong
  17. correct i am using server 2008 R2.. yes i know its old bt so far had no issues with the interactive services unlike on my 2016 box where i cant do anything in it ? so i prefer 2008 .. i have tried the DLL you send in the shared folder and still same error.. it does work kind of on my 2016 box but unfortunatly its too far r from my databsde will probly case issues.. also i am getting rid of soon and upgrading to new one... ... and have cpl issues with that one after i enter the connection string in the module.. i woudl prefer to use the 2008 one as it has the DB on that box
  18. i try and start the bot and i get Unhandled Exception: System.PlatformNotSupportedException: The WebSocket protocol is not supported on this platform. at System.Net.WebSockets.WebSocketHelpers.ThrowPlatformNotSupportedException_WSPC() at System.Net.WebSockets.ClientWebSocket..ctor() at DSharpPlus.Net.WebSocket.WebSocketClient.<ConnectAsync>d__19.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at DSharpPlus.Net.WebSocket.WebSocketClient.<ConnectAsync>d__19.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at DSharpPlus.DiscordClient.<InternalConnectAsync>d__60.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at DSharpPlus.DiscordClient.<ConnectAsync>d__57.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at Nexus.DiscordMain.<RunAsync>d__3.MoveNext() in E:\Development Related\Projects\Nexus\Nexus.Program\DiscordMain.cs:line 78 --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at Nexus.Program.<MainAsync>d__4.MoveNext() in E:\Development Related\Projects\Nexus\Nexus.Program\Program.cs:line 88 --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at Nexus.Program.Main(String[] args) in E:\Development Related\Projects\Nexus\Nexus.Program\Program.cs:line 22 any idea what is causing this?? i have re tried making sure i entered correct info like Client ID n token and all is correct just not getting any luck
  19. In that script i gave with ctrl +c i think.. replace that with /shutdown see if that helps n fixes it as it will basically do exactly what u do ingame When you're editing the config on ledmft. If using mvc theme you will see custom scriprs.. press that and create new... done
  20. When you're editing the config on ledmft. If using mvc theme you will see custom scriprs.. press that and create new... done
  21. that's all i have in the Query and RCon stuff and i queries perfectly fine and a custom script to run before shutdown Script.WriteToConsole("^C"); that has not failed for me with over 200 conan servers
  22. BEC Download All working Here is my BEC fully works just put in correct Directory and make sure the Scheduler is a config file to update with Location and IP info
  23. I havent had an issue with bec.. ibwill share my working version all you need to do is drop them in profile directory Sent from my SM-G975F using Tapatalk
  24. Hi mate no worries... well one of them had the setup for bec but it was bugging the server so stopped it thats y if you look in custom scripts you will see start bec set to no action :)... but all you really need as the pages mention is a sql database locallly on each service that will have a server running and the ckient and server files are all posted im the posts also except altis life.. well it has link to mission files. as extdb3 cud grt updated and dont want to have users grabbing the old version xd. But the others are all there Hope that helped
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Terms of Use