Hi guys,
I'm making an examining system, where you can right click on an enemy and view text about it, pretty much a description.
I have a hash set up in a class called Sambase (dont ask aha)
when you click the 'Examine' button, it runs:
But for some reason, when i click examine, it does absolutely nothing at all. No error, nothing :\
What am I doing wrong?
I'm making an examining system, where you can right click on an enemy and view text about it, pretty much a description.
I have a hash set up in a class called Sambase (dont ask aha)
when you click the 'Examine' button, it runs:
Code:
@enemy_description = Sambase::Enemy_Descriptions[@abscmd_id]
$game_temp.message_text = 'No information available.'
$game_temp.message_text = @enemy_description if @enemy_description != nil
$game_system.map_interpreter.command_101
But for some reason, when i click examine, it does absolutely nothing at all. No error, nothing :\
What am I doing wrong?