Page 22 of 26

Re: RoM server Patch 4.0.3. - The Mighty Shield.

Posted: Sun Oct 09, 2011 12:06 am
by Reymauro
I think all "profile not loading" and system menu poping up are related to "Extra Action Bars". So before doing what Lisa suggests, try removing that addon first (and maybe defaulting the key bindings).
This did fix all the issue whit the bot not running profile and the toggle of the in-game system window for me.

Re: RoM server Patch 4.0.3. - The Mighty Shield.

Posted: Sun Oct 09, 2011 12:10 am
by Reymauro
I know the Useitem might comme back but is there a different way to equip/unequip an specific weapon? I use to use this.

it takes the mail and well obviously equip that specific weapon.

Code: Select all

	yrest(2000);
	player:target_Object("Mailbox",2000);
	RoMScript("ChoiceOption(1)"); 
	yrest(2000);
	UMM_TakeMail ();
	
	inventory:useItem("Fine Wooden Bow");

Re: RoM server Patch 4.0.3. - The Mighty Shield.

Posted: Sun Oct 09, 2011 12:20 am
by s018mes
I had similar issues to others in this post, got it working like the others. Meaning, I reset my bindings, which I hope did not cause this problem:

However..... my bot is not looting on the DoD madman boss anymore! I copied my profiles and waypoints into the new 654 revision folder, so NO changes were made, but it is clearly not looting. What? OH noes!

Re: RoM server Patch 4.0.3. - The Mighty Shield.

Posted: Sun Oct 09, 2011 12:25 am
by Reymauro
I use this I hope it can help you.

Code: Select all

         player:update()
         player:lootAll();

	end 
And on Profile.

Code: Select all

		<!-- Loot settings -->
		<option name="LOOT"               value="true" />
		<option name="LOOT_ALL"			  value="true" />  <!-- Loot all nearby dead mobs after combat -->
		<option name="LOOT_IN_COMBAT"     value="false" />
		<option name="LOOT_DISTANCE"      value="250" />
		<option name="LOOT_PAUSE_AFTER"   value="10" />		<!-- probability in % for a short rest -->

Re: RoM server Patch 4.0.3. - The Mighty Shield.

Posted: Sun Oct 09, 2011 12:33 am
by s018mes
Reymauro wrote:I use this I hope it can help you.

Code: Select all

         player:update()
         player:lootAll();

	end 
And on Profile.

Code: Select all

		<!-- Loot settings -->
		<option name="LOOT"               value="true" />
		<option name="LOOT_ALL"			  value="true" />  <!-- Loot all nearby dead mobs after combat -->
		<option name="LOOT_IN_COMBAT"     value="false" />
		<option name="LOOT_DISTANCE"      value="250" />
		<option name="LOOT_PAUSE_AFTER"   value="10" />		<!-- probability in % for a short rest -->
Where would I put the

Code: Select all

         player:update()
         player:lootAll();

	end 
?

My looting options in my profile have not changed since the last patch, so that shouldn't be it. I have all looting to TRUE. I even changed it to what you have and still NO looting.

Re: RoM server Patch 4.0.3. - The Mighty Shield.

Posted: Sun Oct 09, 2011 12:35 am
by kanta
Reymauro wrote:I know the Useitem might comme back but is there a different way to equip/unequip an specific weapon?
Well, I don't know why this runic thorn function works for me but it does. It equips my Rune War bow, makes arrows, equips the arrows then re-equips my Fury bow. Maybe you could try the code lines from mine in your waypoint/profile and see if it works for you. Of course you need to change values to the item you want to use.

Code: Select all

function runicthorn()
   if 999 > inventory:itemTotalCount("Runic Thorn") then
      inventory:useItem(212183) -- Use Rune War Bow
      yrest(1000)
      RoMScript("UseEquipmentItem(10);") -- Make arrows
      yrest(1000)
      inventory:useItem(212615) -- Use Fury of the Defender of the Jungle
      yrest(1000)

      if inventory:getAmmunitionCount() == 0 then
      inventory:useItem(212185) -- Use/equip arrows
      end
   end
end

function runicthorn2()
   if 999 > inventory:itemTotalCount("Runic Thorn") then
      inventory:useItem(212183) -- Use Rune War Bow
      yrest(1000)
      RoMScript("UseEquipmentItem(10);")
      yrest(1000)
      inventory:useItem(212615) -- Use Fury of the Defender of the Jungle
      yrest(1000)
      end
   end

Re: RoM server Patch 4.0.3. - The Mighty Shield.

Posted: Sun Oct 09, 2011 12:39 am
by Reymauro
Thanks Kanta working on it :)

@s018mes

I put them after the last WP when it starts attacking the boss.

Re: RoM server Patch 4.0.3. - The Mighty Shield.

Posted: Sun Oct 09, 2011 12:51 am
by s018mes
FIXED my loot problem.

I figured out that I had removed the ATTACK icon from the 1st action bar position for testing something out. Put it back and now we loot all day every day.

Thanks Reymauro for helping.

Re: RoM server Patch 4.0.3. - The Mighty Shield.

Posted: Sun Oct 09, 2011 1:09 am
by Reymauro
remove the "end" and sorry about that

Re: RoM server Patch 4.0.3. - The Mighty Shield.

Posted: Sun Oct 09, 2011 1:13 am
by Reymauro
lol nice have fun farming that guy :)

Re: RoM server Patch 4.0.3. - The Mighty Shield.

Posted: Sun Oct 09, 2011 1:37 am
by lisa
I use this, profile onload and onleavecombat

Code: Select all

   if 999 > inventory:itemTotalCount("Runic Thorn") then
		inventory:useItem("Rune Catapult") -- Use Rune War Bow
		yrest(1000)
		RoMScript("UseEquipmentItem(10);")
		yrest(1000)
		inventory:useItem("Striker's Catapult")
		yrest(1000)

		if inventory:getAmmunitionCount() == 0 then
			inventory:useItem("Runic Thorn")
		end
   end
It's the same code just in both events in profile.
obviously change the inventory:useItem("Striker's Catapult") to your weapon you use to fight with.

Re: RoM server Patch 4.0.3. - The Mighty Shield.

Posted: Sun Oct 09, 2011 1:58 am
by grande
I noticed that the character wasn't waiting for the 25 second timer when I told it to change channels which would cause it to not change channels at all and then require a relog to be able to change channels. So I added in yrest(25500) and it seems to work better:

Code: Select all

<waypoint y="" z="" x="">sendMacro("ChangeParallelID(2)"); yrest(25500); </waypoint>

Re: RoM server Patch 4.0.3. - The Mighty Shield.

Posted: Sun Oct 09, 2011 2:47 am
by lisa
Party bot is back to all it's glory again, rev 655.

Finally found the address thanks to rock.

Check herefor info.

Re: RoM server Patch 4.0.3. - The Mighty Shield.

Posted: Sun Oct 09, 2011 5:42 am
by lolstuhl
hey
I can not really English. Therefore I write here the text by google translate (I speak German) ^ ^ maybe someone can write a detailed description or post as I gave the golden-egg-run again to get since the patch of 4.10.
I am very pleased dignity when someone takes time 1-2 min time shows me the little bit more detail:)
Many thanks in advance ^ ^

Re: RoM server Patch 4.0.3. - The Mighty Shield.

Posted: Sun Oct 09, 2011 10:59 am
by Qwan-Ki
Hello :D

J have same problem that alpha :
When I load profile, the test goes well, accept quest, move to the waypoints but can not collect bags of food and he uses chicken.
J'm in V.655, J update my ingamefunctions, Attack in 1...
Thank's for your help ^^

Ps: my addresses.lua become red when I load the boot :(

Re: RoM server Patch 4.0.3. - The Mighty Shield.

Posted: Sun Oct 09, 2011 11:29 am
by rock5
Qwan-Ki wrote:Ps: my addresses.lua become red when I load the boot
Where did you get your bot from? The problem is not with the bot, it is with the scripts being supplied to you. Can you please!, please! tell your supplier to remove 'update' from the starting script that they are giving you guys.

'update' should not be in your starting script. It should only ever be run when you get a message telling you to run it and not after big patch updates like this one. Not until Administrator has had a chance to fix the address patterns in update.lua.

Re: RoM server Patch 4.0.3. - The Mighty Shield.

Posted: Sun Oct 09, 2011 11:37 am
by Qwan-Ki
Thank's a lot Rock ! :D

It's work perfectly now
J'm so stupide sometime's ^^

Re: RoM server Patch 4.0.3. - The Mighty Shield.

Posted: Sun Oct 09, 2011 1:05 pm
by noodlenoob
Hi guys and girls,

im having some trouble getting my bot up again, updated to latest revision and renewed InGameFunctions. Redid the macro button ingame too and my skills are hotkeyed like i normally had them, VK_1 to VK_8

So now when i run it, in game it looks as if im pressing Esc repeatedly (getting System settings window)

MM itself gets past macro test but is stuck then. Any clues what went wrong here?
(if this question is so dumb that it makes u laugh, then im happy to have made your day :)

Re: RoM server Patch 4.0.3. - The Mighty Shield.

Posted: Sun Oct 09, 2011 1:19 pm
by noodlenoob
ok nvm im stupid, i could have read the solution 10 posts ago

EAB must have caused this..

Re: RoM server Patch 4.0.3. - The Mighty Shield.

Posted: Sun Oct 09, 2011 1:23 pm
by bobdole
Anymore testing about this one? Which is better right now to use?
rock5 wrote:I've done a bit of testing of MRC_Optimized with rev 654 and I am noticing a bit of a hesitation that I didn't notice with the last couple of revisions, even missed or interrupted harvests. I decided to switch back to keypresses for "Attack" and it definately seems quicker with less stutters. It just might be a matter of adjusting a few timings but if anyone would like to try keypresses just change this,

Code: Select all

RoMScript("UseSkill(1,1)")
and add this line

Code: Select all

keyboardPress(key.VK_1)