A very good software I used to capture solarus bugs (see my chanel on youtube : https://www.youtube.com/user/Renkineko/videos ) is Fraps. I have not a very good PC and it's pretty good at recording

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
function item:on_npc_interaction_item(sign,item)
if sign:get_name() == "ForestSign" then
item:get_map():get_entity("hero"):set_animation("book")
game:start_dialog("book.translation", nil, function ()
item:set_finished()
end)
end
end
-- Part for contributor1
[Here, all the dialog contributor1 will write]
-- End part for contributor1
-- Part for contributor2
[Here, all the dialog contributor2 will write]
-- End part for contributor2
...
...
...