View Single Post
12/18/14, 06:47 AM   #17
Garkin
 
Garkin's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 832
Originally Posted by recreare View Post
I set my LUA memory from 64 to 128 as I saw here, and I save the file, but it seems to keep setting itself back to 64. Any similar experiences/suggestions?
If you want to make changes to the UserSettings.txt, you have to do it when game is not running.

It's because game reads settings from the file only during the startup. But settings are saved from memory to the file everytime when you logout to the character selection screen, to the account login and finally when game is closed. In other words if you've made any changes to the settings when game is running, it will be automatically overwritten with the settings currently in use.

If you want to change Lua memory limit value when game is running, type the following command to the chat:
Code:
/script SetCVar("LuaMemoryLimitMB", "128")


Originally Posted by igerup View Post
Don't forget to set the file properties to read only after you've made the changes you want.
I do not recommend making UserSettings.txt read only.

Last edited by Garkin : 12/18/14 at 06:50 AM.
  Reply With Quote