Any mods installed? [in particular, any palette mods]
It is a a clean install, the game was running fine until today.
Try a clean install in a secondary folder. If that secondary install works fine, switch to that install.
Try adding the game folder to your AV's exclusion list (optionally, delete
NyxLauncher.exe from ModScripts/ as it is a known false positive, but isn't actually needed for mods)Alternatively, add the following line of code to the
ModScripts/3_LonaBitmapChanger_hugememmonkeyfix.rb file:
Code:
prp value1
Code:
class Bitmap
alias_method :initialize_pre_failsafe, :initialize
def initialize(value1=nil, value2=nil)
#WARNING: MONKEY CODE!
#Simulating initial constructor call. It's either Bitmap.new(FILENAME) or Bitmap.new(width,height) so pass to original initializer.
if value2.nil?
initialize_pre_failsafe(value1)
else
initialize_pre_failsafe(value1, value2)
end
Code:
class Bitmap
alias_method :initialize_pre_failsafe, :initialize
def initialize(value1=nil, value2=nil)
#WARNING: MONKEY CODE!
#Simulating initial constructor call. It's either Bitmap.new(FILENAME) or Bitmap.new(width,height) so pass to original initializer.
if value2.nil?
prp value1
initialize_pre_failsafe(value1)
else
initialize_pre_failsafe(value1, value2)
end
Last edited: