What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Click "Do you really want to trade a high-quality item?"

ladygamer

Member
Joined
Oct 15, 2010
Messages
175
Reaction score
1
anybody have anything to make it click the

"Click "Do you really want to trade a high-quality item?"

it's for turning in leve quests.. i got it to that point..i just can't seem to get it to click yes.

Thanks so much for all the help!

-LG
 
Last edited:
anybody have anything to make it click the

"Click "Do you really want to trade a high-quality item?"

Thanks so much for all the help!

-LG

I cannot test this atm, but, try to un-check everything under Character Configuration>Character>Display confirmation prompt when selling items. Including that box itself.
 
I cannot test this atm, but, try to un-check everything under Character Configuration>Character>Display confirmation prompt when selling items. Including that box itself.

man i feel dumb if it works..either way thank u :D
 
man i feel dumb if it works..either way thank u :D

The code would likely be

Code:
ff14bot.RemoteWindows.SelectYesno.ClickYes();

If you are trying to make it a friendly profile, hope this helps.
 
Code:
		<CodeChunk Name="TurnIn2827">
			<![CDATA[ 
				await Buddy.Coroutines.Coroutine.Sleep(1000);
				ff14bot.Managers.GameObjectManager.GetObjectByNPCId(1002402).Interact();
				await Buddy.Coroutines.Coroutine.Sleep(2000);
				ff14bot.RemoteWindows.Talk.Next();
				await Buddy.Coroutines.Coroutine.Sleep(2000);
				foreach(ff14bot.Managers.BagSlot slot in ff14bot.Managers.InventoryManager.FilledSlots)
				{
					if(slot.RawItemId == 2827)
					{
						slot.Handover();
					}
				}
			await Buddy.Coroutines.Coroutine.Sleep(1000);
				if (ff14bot.RemoteWindows.Request.IsOpen)
					ff14bot.RemoteWindows.Request.HandOver();
				await Buddy.Coroutines.Coroutine.Sleep(1000);
	

				ff14bot.RemoteWindows.SelectYesno.ClickYes();
								await Buddy.Coroutines.Coroutine.Sleep(2000);
				if (ff14bot.RemoteWindows.JournalResult.IsOpen)
					ff14bot.RemoteWindows.JournalResult.Complete();
		]]>
		</CodeChunk>
.. this worked for me :) ty much guys for the help.
 
Back
Top