Skip to content

Status Menu

This hook is triggered whenever the Status Menu (the character screen with stats) is opened and initialized for display.
It allows you to run your own script function right after the status menu is set up.

When the status menu is displayed, the hook will try to call a Daedalus function named: MENU_STATUS_API.

Example usage
1
2
3
4
func void MENU_STATUS_API()
{
    Menu_SetItemText("MENU_ITEM_PLAYERGUILD", "Necromancer");
};