Actually it's the ingame? check in the Utils script within MCM.
In the <Cheats Mod>/mod/Utils.rb file, change Scene_LangFirstPicker to Scene_FirstTimeSetup
After this change everything seems to be working fine on my end.
I don't seem to have that [ Scene_LangFirstPicker ] in my file. I'll copy what I have in it from Notepad++.
##---------------------------------------------------------------------------
## CheatUtils Module
##---------------------------------------------------------------------------
module CheatUtils
def self.ingame?
return !$game_player.actor.nil?
end
end
# Add text buffer
module TextCache
#--------------------------------------------------------------------------
# * Check Cache Existence
#--------------------------------------------------------------------------
def self.include?(key)
Cache[key] && !@cache[key].nil?
end
#--------------------------------------------------------------------------
# * Txt info
#--------------------------------------------------------------------------
def self.txt_info(path, file, title)
Cache ||={}
Cache[path] = Text.new(path) unless include?(path)
Cache[path]["#{file}:#{title}"]
end
end
module CheatsMod
#Get info from text file
def self.getTextInfo(_info)
fileName = _info.split(':')[0];
title = _info.split(':')[1];
return TextCache.txt_info("#{MOD_FOLDER}/text/#{$lang}", fileName, title)
end
end
I mostly just copy the version I used for awhile now. Have you released any updates?