AutoSell and Latest RoM Patch

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
Alkaiser
Posts: 222
Joined: Sat Sep 25, 2010 2:03 pm

AutoSell and Latest RoM Patch

#1 Post by Alkaiser » Tue May 17, 2011 1:20 pm

Looks like something broke with the latest patch. My clops farmers stopped selling items.

Edit:

Weird! Now it's working again... Must have been a temporary client/server problem. I relogged and it's working fine now.
Last edited by Alkaiser on Tue May 17, 2011 1:54 pm, edited 1 time in total.

fubar
Posts: 4
Joined: Tue May 17, 2011 1:49 pm

Re: AutoSell and Latest RoM Patch

#2 Post by fubar » Tue May 17, 2011 1:53 pm

Mine is only selling the weapons, runes no armor or offhand items

Alkaiser
Posts: 222
Joined: Sat Sep 25, 2010 2:03 pm

Re: AutoSell and Latest RoM Patch

#3 Post by Alkaiser » Tue May 17, 2011 1:55 pm

fubar wrote:Mine is only selling the weapons, runes no armor or offhand items
Guess I'd better keep an eye on things to see if this crops up for me or not.

Alkaiser
Posts: 222
Joined: Sat Sep 25, 2010 2:03 pm

Re: AutoSell and Latest RoM Patch

#4 Post by Alkaiser » Tue May 17, 2011 2:07 pm

Nope, now it's messed up again. It sold only a couple items in 3 bags full of stuff. It only sold weapons. All armor won't sell. I wonder if ingamefunctions needs to be updated or something.

When merchant window is open the bot rapidly cycles through the items in inventory but doesn't seem to do anything beyond that.

Also seeing LOTS of table not found for item id and wrong value returned for item id messages.

As a temporary solution I replaced player:merchant in my waypoint with this:

Code: Select all

if player:openStore("Carey Delis") then
	RoMScript("ClickRepairAllButton()")
	for i, item in pairs(inventory.BagSlot) do
		if( (i >= (settings.profile.options.INV_AUTOSELL_FROMSLOT + 60)) and ((settings.profile.options.INV_AUTOSELL_TOSLOT + 60) >= i) ) then 
			item:use()
		end
	end
end
Skipping the item filtering functions allows me to sell again.
Last edited by Alkaiser on Wed May 18, 2011 9:34 am, edited 1 time in total.

fubar
Posts: 4
Joined: Tue May 17, 2011 1:49 pm

Re: AutoSell and Latest RoM Patch

#5 Post by fubar » Tue May 17, 2011 2:56 pm

Thank you
works for now

User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: AutoSell and Latest RoM Patch

#6 Post by rock5 » Tue May 17, 2011 10:46 pm

I've been running KS runs and it's been selling fine for me.
  • Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
  • I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
  • How to: copy and paste in micromacro
    ________________________
    Quote:
    • “They say hard work never hurt anybody, but I figure, why take the chance.”
          • Ronald Reagan

User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: AutoSell and Latest RoM Patch

#7 Post by lisa » Wed May 18, 2011 1:22 am

I just tested with a WP i use regular and it is selling without any issues, I don't have any not sell attributes or anything though. The issue might be there.
Remember no matter you do in life to always have a little fun while you are at it ;)

wiki here http://www.solarstrike.net/wiki/index.php?title=Manual

fubar
Posts: 4
Joined: Tue May 17, 2011 1:49 pm

Re: AutoSell and Latest RoM Patch

#8 Post by fubar » Wed May 18, 2011 1:50 am

I don't have any not sell attributes but i did notice the bot is giving me "Table not found for ID:" and "Wrong value returned in update of item id:(various item numbers) whenever it loots a armor item.
then if you use the merchant sale command it will not sell the same items it is giving the errors for

also noticed that if i pick up any cards at all it errors out and crashes the bot cannot remember the error at the moment but if it pops back up will post it.

Alkaiser
Posts: 222
Joined: Sat Sep 25, 2010 2:03 pm

Re: AutoSell and Latest RoM Patch

#9 Post by Alkaiser » Wed May 18, 2011 9:34 am

I don't have problems with cards, but I am getting an almost constant stream of table not found for ID and wrong value etc... and maybe the merchant function is skipping over many items because it isn't getting valid data on them.
Here is the autosell options from my profile:

Code: Select all

        <option name="INV_AUTOSELL_ENABLE"    value="true" />
        <option name="INV_AUTOSELL_FROMSLOT"    value="7" />
        <option name="INV_AUTOSELL_TOSLOT"    value="90" />
        <option name="INV_AUTOSELL_QUALITY"    value="white,green,blue,purple" />
        <option name="INV_AUTOSELL_IGNORE"    value="Purify Rune,Frost Rune,Blend Rune,Link Rune,Quiver" />
	<option name="INV_AUTOSELL_TYPES_NOSELL"	value="Monster Cards" />
An example of the errors I get when first starting bot:
Table not found for ID: 220680
Wrong value returned in update of item id: 220680
Table not found for ID: 220661
Wrong value returned in update of item id: 220661
Table not found for ID: 222667
Wrong value returned in update of item id: 222667
Table not found for ID: 225298
Table not found for ID: 226507
Table not found for ID: 225301
Table not found for ID: 225299
Table not found for ID: 226509
Table not found for ID: 220822
Table not found for ID: 226430
Table not found for ID: 225300
Table not found for ID: 223332
Table not found for ID: 223672
Table not found for ID: 223609
Table not found for ID: 224989

And after every loot:
Table not found for ID: 222143
Wrong value returned in update of item id: 222143
Table not found for ID: 222617
Wrong value returned in update of item id: 222617

Pre-patch I would very rarely see these messages and they didn't seem to cause any problems... now, after the patch they are constant.

Alkaiser
Posts: 222
Joined: Sat Sep 25, 2010 2:03 pm

Re: AutoSell and Latest RoM Patch

#10 Post by Alkaiser » Wed May 18, 2011 4:19 pm

I've just tried it on another pc and I'm not getting any errors. I'm guessing that my game installation is corrupt somehow.

EDIT:

I think I found the problem. I deleted everything in my scripts/rom/cache folder. Let it rebuild item tables. Seems to be doing ok now.

EDIT2:

Guh... It worked the first time... now it's showing up again on one character but not on another using the exact same files, even after I deleted the cache files.

EDIT3:

Now it's so bad I can't even start the bot:

Loading items tables.
100% [**************************************************]
Wrong value returned in update of item id: 202904
Wrong value returned in update of item id: 202435
Wrong value returned in update of item id: 202902
Wrong value returned in update of item id: 202506
Wrong value returned in update of item id: 202434
Wrong value returned in update of item id: 201086
Wrong value returned in update of item id: 201088
Wrong value returned in update of item id: 207761
Wrong value returned in update of item id: 201445
Wrong value returned in update of item id: 203784
Wrong value returned in update of item id: 203881
Wrong value returned in update of item id: 207743
Wrong value returned in update of item id: 201458
Wrong value returned in update of item id: 207763
Wrong value returned in update of item id: 201088
Wrong value returned in update of item id: 201141
Wrong value returned in update of item id: 201238
Wrong value returned in update of item id: 203294
Wrong value returned in update of item id: 202903
Wrong value returned in update of item id: 203293
Wrong value returned in update of item id: 201610
Wrong value returned in update of item id: 201459
Wrong value returned in update of item id: 201141
Wrong value returned in update of item id: 203884
Wrong value returned in update of item id: 201619
Wrong value returned in update of item id: 203910
Wrong value returned in update of item id: 203910
Table not found for ID: 222448
Wrong value returned in update of item id: 222448
Table not found for ID: 220453
Wrong value returned in update of item id: 220453
Table not found for ID: 220480
Wrong value returned in update of item id: 220480
Table not found for ID: 221564
Wrong value returned in update of item id: 221564
Table not found for ID: 221552
Wrong value returned in update of item id: 221552
Table not found for ID: 221564
Wrong value returned in update of item id: 221564
Table not found for ID: 220480
Wrong value returned in update of item id: 220480
Table not found for ID: 222479
Wrong value returned in update of item id: 222479
Table not found for ID: 221552
Wrong value returned in update of item id: 221552
Table not found for ID: 222545
Wrong value returned in update of item id: 222545
Table not found for ID: 221566
Wrong value returned in update of item id: 221566
Table not found for ID: 220480
Wrong value returned in update of item id: 220480
Table not found for ID: 221556
Wrong value returned in update of item id: 221556
Table not found for ID: 220697
Wrong value returned in update of item id: 220697
Table not found for ID: 221978
Wrong value returned in update of item id: 221978
Table not found for ID: 222544
Wrong value returned in update of item id: 222544
Table not found for ID: 220608
Wrong value returned in update of item id: 220608
Table not found for ID: 220334
4:4pm - ...nes of Magic/micromacro/scripts/rom/classes/item.lua:209: attempt to perform arithmetic on global 'itemInfoAddress' (a nil value)

EDIT4:

This problem is so random... I reinstalled RoM and micromacro and rom scripts and still having difficulty, but what's interesting is that it appears to be a problem on only one of my chars now. As soon as I start the bot on this char, all of his equipped items show "table not found for item ID" as well as any items in bag.

Post Reply

Who is online

Users browsing this forum: Bing [Bot] and 2 guests