- Joined
- Jun 19, 2014
- Messages
- 2,030
- Reaction score
- 1,459
- First Language
- Dutch
- Primarily Uses
- N/A
Well, I'm going through the tester demo's because I encountered a bug in my game.
And I spotted it happening in the complete scripts section as well.
What happens is as follows:
When you go to the Configuration Equip Menu and turn Window_Commands to TRUE
Then add
To Lunatic Equip Config
The description doesn't update on the correct time.
Here is what happens:
Basically it won't list the name/icon/description of the axe until you go to the equipment slot, then when you go back to what you've equipped it does show the info. When you exit the screen and you go to the equipment again, it again won't show info of the axe/shield, unless you select different equipment again.
If you disbale windows_commands (thus not having the option of equip/optimize/clear) it won't happen.
Anyone knows a fix?
I'd like to have my item/item name/description into the lunatic configurations, but this bug is making it hard to do so.
And I spotted it happening in the complete scripts section as well.
What happens is as follows:
When you go to the Configuration Equip Menu and turn Window_Commands to TRUE
Then add
Code:
# Text for Description Window
def self.user_description_text(item, contents)
if item
result = [
["$bitmap[Icons, #{item.name} - Big]", [16, 10], 255, [0, 0, "bw", "bh"]],
["#{item.name} - #{item.price}G",
[104, 6], [520, 0], [255, 255, 0], ["Estrangelo Edessa", 22, true, false]],
]
item.description.split(/[\r\n]+/).each_with_index { |line, i|
result.push(["#{line}",
[104, i * 24 + 32], [520, 0], [255, 255, 255], ["Estrangelo Edessa", 16, false, false]],
)
}
return result
else
return []
end
The description doesn't update on the correct time.
Here is what happens:
Basically it won't list the name/icon/description of the axe until you go to the equipment slot, then when you go back to what you've equipped it does show the info. When you exit the screen and you go to the equipment again, it again won't show info of the axe/shield, unless you select different equipment again.
If you disbale windows_commands (thus not having the option of equip/optimize/clear) it won't happen.
Anyone knows a fix?
I'd like to have my item/item name/description into the lunatic configurations, but this bug is making it hard to do so.

