Search found 98 matches

by JackBlonder
Thu Jan 13, 2011 2:20 pm
Forum: Runes of Magic
Topic: Party botting
Replies: 21
Views: 4699

Re: Party botting

I can't see any way to fix this other than abandoning the memory address targeting and going back to 'TAB' targeting.
Is there any way I can do that just for my uses.
Something like overwriting the targeting function by my own function?
by JackBlonder
Thu Jan 13, 2011 7:30 am
Forum: Runes of Magic
Topic: Party botting
Replies: 21
Views: 4699

Re: Party botting

I'm still confronted with this issue. When I use this little script and the leader is botted I noticed that the address of partyleader.Address is the same as partyleader.TargetPtr Anyone has a good idea to get rid of this problem? <?xml version="1.0" encoding="utf-8"?><waypoints>...
by JackBlonder
Wed Jan 12, 2011 8:19 pm
Forum: Runes of Magic
Topic: Multiclient?
Replies: 14
Views: 4172

Re: Multiclient?

You can't start the launcher multiple times but you can
-start the launcher
-start the game client
-start another launcher
-start the game
-...
That's the way it works for me.
by JackBlonder
Tue Jan 11, 2011 4:34 am
Forum: Userfunctions, waypoint scripts, etc.
Topic: My little helper
Replies: 41
Views: 14610

Re: My little helper

I added a link to the addon repo.
Here's the waypointfile with two priest casts
by JackBlonder
Fri Jan 07, 2011 2:53 pm
Forum: Userfunctions, waypoint scripts, etc.
Topic: My little helper
Replies: 41
Views: 14610

My little helper

This is my waypointfile to let a healer follow the party and heal if necessary. Maybe some of you like it. I'm just a noob in Rombot and LUA. <?xml version="1.0" encoding="utf-8"?><waypoints> <onLoad> local partymember={} local partymemberName={} local partymemberObj={} local noo...
by JackBlonder
Thu Jan 06, 2011 2:13 am
Forum: Runes of Magic
Topic: Party botting
Replies: 21
Views: 4699

Re: Party botting

I tried setting player.TargetPtr to leader.TargetPtr again and it didn't work. The second bot never attacks. The problem of comparing leader.TargetPtr and player.TargetPtr (after finding an enemy by player:findEnemy) is that they have different values although it's the same target (second bot attack...
by JackBlonder
Wed Jan 05, 2011 11:56 am
Forum: Runes of Magic
Topic: Party botting
Replies: 21
Views: 4699

Re: Party botting

I had the same idea but it didn't work for me.
I'll give it another try when I'm at home.
by JackBlonder
Wed Jan 05, 2011 5:21 am
Forum: Runes of Magic
Topic: Party botting
Replies: 21
Views: 4699

Re: Party botting

Comparing TargetPtr did not work for me. I think the two pointers point to different memory positions. But I got it to work by comparing player.Target and leader.Target but I'm not sure if this correct. <onLoad> local leader local leaderName local leaderObj local Enemy leaderName = RoMScript("U...
by JackBlonder
Mon Jan 03, 2011 10:46 am
Forum: Runes of Magic
Topic: Party botting
Replies: 21
Views: 4699

Re: Party botting

@lisa: Guessed right ;)
@rock5: That will help alot. Thanks
by JackBlonder
Mon Jan 03, 2011 9:22 am
Forum: Runes of Magic
Topic: AoE,CC, and SP
Replies: 12
Views: 2338

Re: AoE,CC, and SP

Or you put the skills used by both classes between

Code: Select all

<skills>
...your skills
</skills>
by JackBlonder
Sun Jan 02, 2011 11:44 am
Forum: Runes of Magic
Topic: Party botting
Replies: 21
Views: 4699

Re: Party botting

How can I check if my target is the target of the party leader? Edit: This almost does what it should do but sometimes I get a client crash. I think it's a memory access problem. Therefor I wanted to check if Enemy is target of the party leader <onLoad> while (true) do local Enemy while ( player.Bat...
by JackBlonder
Sun Jan 02, 2011 5:30 am
Forum: Runes of Magic
Topic: Party botting
Replies: 21
Views: 4699

Re: Party botting

Thanks for your effort.
I'll try to use player.Fighting instead and find a workaround for the target problem.
by JackBlonder
Sat Jan 01, 2011 3:17 pm
Forum: Runes of Magic
Topic: Party botting
Replies: 21
Views: 4699

Party botting

I have a problem with party botting. The second bot (priest) works (targets enemy and casts spells) if the partyleader (warrior) is played manually but doesn't work (doesn't target enemy) if the partyleader is botted. Any suggestions? Waypointfile of second party member: <?xml version="1.0"...
by JackBlonder
Fri Dec 24, 2010 11:45 am
Forum: Runes of Magic
Topic: Warden summons workaround?
Replies: 3
Views: 1189

Re: Warden summons workaround?

The problem is that the pet-pointer seems to be broken (PetPtr) as mentioned here:
http://www.solarstrike.net/phpBB3/viewt ... =21&t=1947
by JackBlonder
Wed Dec 22, 2010 12:37 pm
Forum: Runes of Magic
Topic: player.Pet.HP has this stop functioning since last past/svn
Replies: 1
Views: 875

Re: player.Pet.HP has this stop functioning since last past/

Same problem here.
Look at this thread: http://www.solarstrike.net/phpBB3/viewt ... =21&t=1947
I also think the PetPtr has changed.
by JackBlonder
Tue Dec 21, 2010 1:57 pm
Forum: Runes of Magic
Topic: player.Pet.HP / MaxHP
Replies: 2
Views: 1536

player.Pet.HP / MaxHP

I'm trying to get my pets HP, but when I use
cprintf(cli.blue, "Pet.HP: %d\n", player.Pet.HP);
cprintf(cli.blue, "Pet.MaxHP: %d\n", player.Pet.MaxHP);
I get values of

Pet.HP: 726893232
Pet.MaxHP: -1

Am I wrong with using %d for integer or what's the problem?
by JackBlonder
Sat Dec 18, 2010 9:15 am
Forum: Runes of Magic
Topic: Warden Pet Problems
Replies: 4
Views: 1165

Re: Warden Pet Problems

Code: Select all

player.PetPtr == 0
doesn't work for me as the pointer has an adress although the pet is not summoned.
Is there any player.pet.summoned or some other ideas?

By the way, to activate auto mode for summoner skills you have to rightclick not to press CTRL+x
by JackBlonder
Sat Dec 18, 2010 7:26 am
Forum: Userfunctions, waypoint scripts, etc.
Topic: Rock5's catchCavy script
Replies: 115
Views: 41461

Re: Rock5's catchCavy script

Works almost perfect for me, but I think there's a typo at line 42

Code: Select all

				player.IgnoreCavyy = cavy.Address
shoud be

Code: Select all

				player.IgnoreCavy = cavy.Address