Search found 9 matches

by gerrison
Wed Jan 05, 2011 4:08 pm
Forum: Runes of Magic
Topic: Memento farming - concept - Dalanis Dungeon
Replies: 255
Views: 100837

Re: Memento farming - concept - Dalanis Dungeon

you can also easily use the ingame addons "ComeOnIn" or "Invite Last Group" for group-invitation ComeOnIn: Activate autoinvite Set Keyword From the other chars: RoMScript("SendChatMessage('keyword', 'WHISPER', 0, 'charactername');"); Pro: You do not have to accept the i...
by gerrison
Sat Dec 25, 2010 10:15 pm
Forum: Runes of Magic
Topic: Stuck on loading items tables
Replies: 92
Views: 19810

Re: Stuck on loading items tables

guess what happens: 67... :D
if you got some idea maybe you should also supply some printf debugging lines becaus i have no clue what i am doing ;)
by gerrison
Sat Dec 25, 2010 8:18 pm
Forum: Runes of Magic
Topic: Stuck on loading items tables
Replies: 92
Views: 19810

Re: Stuck on loading items tables

yeah as already written in my previous post.. thats what i am getting too all the time when i came through the loop.
i tried to bypass the loop by setting if currId == "my current loop stuck number"
next thing is the nil error :(
by gerrison
Sat Dec 25, 2010 5:46 pm
Forum: Runes of Magic
Topic: Stuck on loading items tables
Replies: 92
Views: 19810

Re: Stuck on loading items tables

ok, wrong line. tried at 57: while ( lastId ~= nil and lastId ~= 0 ) do currItemDir = currItemDir - itemSize; -- We move itemSize bytes up to go to next one dupeIdCheck = currId; currId = memoryReadInt(proc, currItemDir + addresses.idOffset ); -- 12 bytes offset id object print("dupeIdCheck&quo...
by gerrison
Sat Dec 25, 2010 5:19 pm
Forum: Runes of Magic
Topic: Stuck on loading items tables
Replies: 92
Views: 19810

Re: Stuck on loading items tables

Are we still talking bout Line 90? if ( currItemDir ~= nil ) then dupeIdCheck = currId; currId = memoryReadInt(proc, currItemDir + addresses.idOffset ); -- 12 bytes offset object id if ( currId == nil or currId == 0 or dupeIdCheck == currId or ( ( currId > ( lastId + 3 ) ) or ( currId < ( lastId - 3...
by gerrison
Sat Dec 25, 2010 4:06 pm
Forum: Runes of Magic
Topic: Stuck on loading items tables
Replies: 92
Views: 19810

Re: Stuck on loading items tables

stuck :cry:
posting output one line before:
currid: 113177
lastid: 113176
currid: 113177
lastid: 113176
currid: 113177
lastid: 113176
endless
by gerrison
Fri Dec 24, 2010 8:36 am
Forum: Runes of Magic
Topic: Stuck on loading items tables
Replies: 92
Views: 19810

Re: Stuck on loading items tables

It doesn't work for me because it loops endless with a single currid: 113177 currid before was: 111130 Adding if ( currId == nil or currId == 0 or currId == currId or ( ( currId > ( lastId + 3 ) ) or ( currId < ( lastId - 3 ) ) ) ) then brings up an "attempt to compare number with nil" err...
by gerrison
Thu Dec 23, 2010 12:22 pm
Forum: Runes of Magic
Topic: Stuck on loading items tables
Replies: 92
Views: 19810

Re: Stuck on loading items tables

CTDef calls CTDef:Update() which loops endless.
Activating the debugging capabilities shows the loop in the attached screenshot.
by gerrison
Thu Dec 23, 2010 12:01 pm
Forum: Runes of Magic
Topic: Stuck on loading items tables
Replies: 92
Views: 19810

Re: Stuck on loading items tables

For me running as administrator doesnt work - that was the first option i tried. As jduartedj already mentioned it still gets stuck in the memorytable.lua at: i = 18 Name = "QuestNPCObjectDB" I separated the lines with increasing numbers as printf output It goes into the 18th loop which is...