View Single Post
04/05/14, 05:36 AM   #2
chase
Join Date: Apr 2014
Posts: 3
Try this:

Lua Code:
  1. local original = ZO_GameMenu_InGame:GetHandler("OnShow")
  2. ZO_GameMenu_InGame:SetHandler ( "OnShow" , function(...)
  3.     d("menus")
  4.     original(...)
  5. end)
  Reply With Quote