It was not mentioned in 10.7.0.5000 but for me auto-accepting requests (e.g. party invitation or mount-ride invitation from a guild member or a friend) stopped working.
Any idea how to fix it? For example, in Polish ride invitation is "XXX zaprasza cię do jazdy." The code I had to accept a ride was:
Code
for n=1,4 do
if getglobal("StaticPopup"..n):IsVisible() then
if string.find(getglobal("StaticPopup"..n.."Text"):GetText()," zaprasza cię do jazdy.$")~=nil then
AcceptRideMount()
getglobal("StaticPopup"..n):Hide();
return;
end;
end;
end;
Anyone knows what needs changing to make it work again??