Help: IGF:[string "?"]:1569: attempt to index field '?' (a n
Posted: Mon Jan 21, 2013 5:38 am
I run various chars at the same time and I make group with them.
My main char sends invitations for party and the followers accept.
When I invite a follower who is connecting but hasn't entered the game (is on the loading screen) appears as connected to all the people so my main ca invite him
When the followers enters game, he sees the static popup to accept invitation for party pending.
The problem is that in that case the addons where not loaded yet so the follower doesn't auto-accept invitation.
To solve this I put in the onload secction of the follower's waypoint:
It usually goes well, the follower enters the game and accepts party. But after two or three "changeChars" I get that error:
Did not find any crashed game clients.
11:12am - IGF:[string "?"]:1569: attempt to index field '?' (a nil value)
I tried looking if I had a "popup" pending:
but in that case invitepopup is always false and the follower never accepts party.
When I get the IGF error, I tried running the CommandLine.lua and executing from ther the StaticPopup_onClick and I get the same error.
Also executed ingame:
and surprisingly executing ingame it doesn't make any error.
The line 1569 in IGF doesn't exists and I don't know where to search. Also the problem is that this error doesn't appears always. It crashes at random.
Also I tried to restart the client, but the error persist in that char. Now I'm not sure if it crashes in the same chars or if it is 100% random. I use the default.xml profile
Can you help me? I'm lost
thanks in advance
My main char sends invitations for party and the followers accept.
When I invite a follower who is connecting but hasn't entered the game (is on the loading screen) appears as connected to all the people so my main ca invite him
When the followers enters game, he sees the static popup to accept invitation for party pending.
The problem is that in that case the addons where not loaded yet so the follower doesn't auto-accept invitation.
To solve this I put in the onload secction of the follower's waypoint:
Code: Select all
RoMScript("StaticPopup_OnClick(StaticPopup1, 1);")Did not find any crashed game clients.
11:12am - IGF:[string "?"]:1569: attempt to index field '?' (a nil value)
I tried looking if I had a "popup" pending:
Code: Select all
local invitepopup = RoMScript("StaticPopup_Visible('PARTY_INVITE')")
if invitepopup == "StaticPopup1" then
sendMacro("StaticPopup_OnClick(StaticPopup1, 1);")
end
When I get the IGF error, I tried running the CommandLine.lua and executing from ther the StaticPopup_onClick and I get the same error.
Also executed ingame:
Code: Select all
/run StaticPopup_OnClick(StaticPopup1, 1);The line 1569 in IGF doesn't exists and I don't know where to search. Also the problem is that this error doesn't appears always. It crashes at random.
Also I tried to restart the client, but the error persist in that char. Now I'm not sure if it crashes in the same chars or if it is 100% random. I use the default.xml profile
Can you help me? I'm lost
thanks in advance