View Single Post
10-14-20, 11:50 PM   #4
Drudatz
A Fallenroot Satyr
Join Date: Aug 2009
Posts: 20
I have another questions I hope the gurus here can help me with:

I have an old guild addon that I use and before PrePatch this worked:
Lua Code:
  1. _G.hooksecurefunc("GuildRoster", function()
  2.     nextGuildRoster = GetTime() + 0.1
  3. end)

after PrePatch THIS doesnt work
Lua Code:
  1. _G.hooksecurefunc("C_GuildInfo.GuildRoster", function()
  2.     nextGuildRoster = GetTime() + 0.1
  3. end)
and throws an "uGuild.lua:99: Usage: hooksecurefunc([table,] "function", hookfunc)"-Error?
  Reply With Quote