Search found 98 matches

by JackBlonder
Sat Apr 23, 2011 3:41 am
Forum: Runes of Magic
Topic: Sell Blue items, but not Monstercards,,, how ?
Replies: 8
Views: 2268

Re: Sell Blue items, but not Monstercards,,, how ?

I think

Code: Select all

INV_AUTOSELL_IGNORE = "Card",      -- itemnames never so sell
should work.
by JackBlonder
Sat Apr 23, 2011 2:53 am
Forum: Runes of Magic
Topic: Bot wont recognize an Ü/ä/ö
Replies: 39
Views: 8246

Re: Bot wont recognize an Ü/ä/ö

I tried to insert autosell to my profile, but itemtypestable is in german so I have to use the german words.
e.g Rüstungen.
Try

Code: Select all

R..stungen
This worked for me.
by JackBlonder
Mon Apr 11, 2011 1:12 pm
Forum: Runes of Magic
Topic: Display running time
Replies: 4
Views: 1943

Re: Display running time

It's because of the

Code: Select all

if ( seconden < 60 ) then
He could also do

Code: Select all

if  60 > seconden ) then
to solve it, right?
by JackBlonder
Tue Mar 29, 2011 12:02 am
Forum: Runes of Magic
Topic: need some coding help
Replies: 3
Views: 1346

Re: need some coding help

Code: Select all

if...
if...
if...
Every if is getting checked.

Code: Select all

if...
elseif...
elseif...
The second if is only checked, when the first fails.
by JackBlonder
Sun Mar 27, 2011 3:22 am
Forum: RoM Bot revision notes
Topic: Rev 584: moving in 3 dimensions!
Replies: 11
Views: 3671

Re: Rev 584: moving in 3 dimensions!

I updated today. Now I get an error sometimes (reproduceable) after targeting an NPC (Locken at Silverfall) : .../player.lua:1934: attempt to perform arithmetic on field 'Y' (a nil value) Line 1934 (part of moveInRange): local ry = self.Y + (target.Y - self.Y) * ratio I added printf("self.Y: %d...
by JackBlonder
Mon Mar 14, 2011 7:47 am
Forum: Runes of Magic
Topic: Teaming & Aggro Issue
Replies: 46
Views: 9380

Re: Teaming & Aggro Issue

Maybe the network bot I started is helpful: http://www.solarstrike.net/phpBB3/viewtopic.php?f=21&t=2248 I don't have time atm to improve it but feel free to use its code. The targeting is solved by using a GUID that Rock found in memory (I also tried to find RaidTargetIndex but gave up). It also...
by JackBlonder
Sun Mar 13, 2011 1:29 pm
Forum: Off topic
Topic: editing game display settings
Replies: 12
Views: 8638

Re: editing game display settings

im running new intel i7 3.47 ghz + 12gb of RAM ... but im running windows xp 32-bit.. so only 3.12gb is displayed (does this mean 12gb isnt getting used, or it just isnt being displayed in properties?)
Windows 32Bit is not able to handle your 12GB.
by JackBlonder
Sun Mar 06, 2011 11:13 am
Forum: Runes of Magic
Topic: loadpath after death?
Replies: 1
Views: 988

Re: loadpath after death?

Name it like your waypointfile but with the suffix _return.
waypointfile.xml <-- your waypoints
waypointfile_return.xml <-- will be loaded after death
by JackBlonder
Sat Mar 05, 2011 4:20 am
Forum: Userfunctions, waypoint scripts, etc.
Topic: Rock5's Mail Mods
Replies: 766
Views: 238433

Re: Rock5's Mail Mods

I just tried on a german client and I can confirm this.
by JackBlonder
Thu Mar 03, 2011 1:27 am
Forum: Runes of Magic
Topic: Operation party network bot
Replies: 9
Views: 3560

Re: Operation party network bot

I have no other idea then putting your partyleader REALLY near to your partymember. If this doesn't work maybe you should update rombot
by JackBlonder
Wed Mar 02, 2011 6:12 am
Forum: Runes of Magic
Topic: Operation party network bot
Replies: 9
Views: 3560

Re: Operation party network bot

This error appears when your partyleader is to far away from your partymember or if you are not in a group.
Maybe I should add a check for this but I have not much time at the moment to play with rombot.
by JackBlonder
Mon Feb 28, 2011 1:57 pm
Forum: Runes of Magic
Topic: CPawn error occasionally during load screen.
Replies: 15
Views: 3864

Re: CPawn error occasionally during load screen.

I tested the waitForLoadingScreen() with my netbook (low CPU power ) and the "Error reading memory in CPawn:update()" appears while the loading screen is still shown. I even added a yrest(15000) after waitForLoadingScreen() but it didn't help. I then added a printf("") waitForLoa...
by JackBlonder
Fri Feb 25, 2011 7:33 am
Forum: Runes of Magic
Topic: CPawn error occasionally during load screen.
Replies: 15
Views: 3864

Re: CPawn error occasionally during load screen.

I think it's trying to move to the next waypoint although the loading screen is still shown.
by JackBlonder
Fri Feb 25, 2011 7:07 am
Forum: Runes of Magic
Topic: CPawn error occasionally during load screen.
Replies: 15
Views: 3864

Re: CPawn error occasionally during load screen.

I can confirm this.
Sometimes there is a Cpawn Error when using waitforLoadingScreen.
And as Lisa said it depends on how much your CPU has to do.
by JackBlonder
Wed Feb 23, 2011 12:46 pm
Forum: Runes of Magic
Topic: Millers Ranch Chicken_ Rerutn.xml
Replies: 7
Views: 2594

Re: Millers Ranch Chicken_ Rerutn.xml

Which Miller-waypointfile do you use?
What does the bot do? Any info in the micromacro window?
by JackBlonder
Wed Feb 23, 2011 9:36 am
Forum: Runes of Magic
Topic: Millers Ranch Chicken_ Rerutn.xml
Replies: 7
Views: 2594

Re: Millers Ranch Chicken_ Rerutn.xml

This is just a warning that the bot can not find a return file.
Return files are used to get back to the farmpoint when you die.
by JackBlonder
Wed Feb 23, 2011 1:56 am
Forum: Runes of Magic
Topic: Rev 578 - getpos not work
Replies: 8
Views: 2436

Re: Rev 578 - getpos not work

by JackBlonder
Tue Feb 22, 2011 9:02 am
Forum: Runes of Magic
Topic: Runes of Magic login security
Replies: 8
Views: 3274

Re: Runes of Magic login security

The way local networks work is actually by sending the data in every direction and letting the client decide whether or not it will handle it This is only true for hubs and wireless lan repeaters which are working on layer 1 in the ISO/OSI model. Switches work on layer 2 and send only to MAC-Addres...
by JackBlonder
Tue Feb 22, 2011 4:13 am
Forum: Runes of Magic
Topic: Operation party network bot
Replies: 9
Views: 3560

Re: Operation party network bot

I've tested it with two clients running on one pc yet.
You may have to open your firewall for micromacro.