Hi, this crash this crash related to state icon. If you use ROenglishRE from zackdreaver
open
data/luafiles514/lua files/stateicon/stateiconinfo.lub
change
StateIconList[EFST_IDs.EFST_GEFFEN_MAGIC1] = {
haveTimeLimit = 1,
posTimeLimitStr = 3,
descript = {
{ "Increases physical damage against Demihuman monster" },
{ "%s", COLOR_TIME }
}
}
StateIconList[EFST_IDs.EFST_GEFFEN_MAGIC2] = {
haveTimeLimit = 1,
posTimeLimitStr = 3,
descript = {
{ "Increases magical damage against Demihuman monster" },
{ "%s", COLOR_TIME }
}
}
StateIconList[EFST_IDs.EFST_GEFFEN_MAGIC3] = {
haveTimeLimit = 1,
posTimeLimitStr = 3,
descript = {
{ "Reduces damage taken from Demihuman monster" },
{ "%s", COLOR_TIME }
}
}
to
StateIconList[EFST_IDs.EFST_GEFFEN_MAGIC1] = {
haveTimeLimit = 1,
posTimeLimitStr = 2,
descript = {
{ "Increases physical damage against Demihuman monster" },
{ "%s", COLOR_TIME }
}
}
StateIconList[EFST_IDs.EFST_GEFFEN_MAGIC2] = {
haveTimeLimit = 1,
posTimeLimitStr = 2,
descript = {
{ "Increases magical damage against Demihuman monster" },
{ "%s", COLOR_TIME }
}
}
StateIconList[EFST_IDs.EFST_GEFFEN_MAGIC3] = {
haveTimeLimit = 1,
posTimeLimitStr = 2,
descript = {
{ "Reduces damage taken from Demihuman monster" },
{ "%s", COLOR_TIME }
}
}