PDA

View Full Version : How do you handle transfering conjured water/food in the team?



ockhamsrazor
07-26-2010, 09:37 AM
I searched around, but couldn't find any posts that seemed to answer the questioon. Assuming I've just conjured a whole bunch of water/food on my mage, is there a boxer friendly way to transfer it to the other accounts? Can I macro the transfer somehow?

Thanks,
Matt

genocyde
07-26-2010, 10:24 AM
Theres used to be addons that auto traded conjured water for mages that I know my friends used while raiding back in the day. Anymore I just use a mage table.

ockhamsrazor
07-26-2010, 10:26 AM
My chars are very low level at the moment :-)

MiRai
07-26-2010, 10:36 AM
1. Conjure up some food and/or water
2. Open up the trade window with whoever I need to trade with
3. Put in the amount I'd like to give them
4. Turn on mouse repeater
5. Click trade simultaneously on both windows
6. ???
7. ProfitUsing InnerSpace and ISBoxer of course.

Lyonheart
07-26-2010, 10:44 AM
I open trade with the slave and hit the keybind for this macro, can use mouse brodcasting if you want, but this is way faster.

/run AcceptGroup();
/run AcceptQuest();
/run AcceptTrade();
/run RetrieveCorpse();
/run RepopMe();
/run ConfirmAcceptQuest();
/run AcceptResurrect();
/run StaticPopup_Hide("QUEST_ACCEPT");
/run ConfirmReadyCheck(1);
/click LFDRoleCheckPopupAcceptButton
/click LFDDungeonReadyDialogEnterDungeonButton
/run LFGTeleport(IsInLFGDungeon())

Littleburst
07-26-2010, 10:53 AM
I open trade with the slave and hit the keybind for this macro, can use mouse brodcasting if you want, but this is way faster.

/run AcceptGroup();
/run AcceptQuest();
/run AcceptTrade();
/run RetrieveCorpse();
/run RepopMe();
/run ConfirmAcceptQuest();
/run AcceptResurrect();
/run StaticPopup_Hide("QUEST_ACCEPT");
/run ConfirmReadyCheck(1);
/click LFDRoleCheckPopupAcceptButton
/click LFDDungeonReadyDialogEnterDungeonButton
/run LFGTeleport(IsInLFGDungeon())

That.

jinkobi
07-26-2010, 11:22 AM
The pain in the butt of transferring conjured food just doesn't seem worth it to me. I log in and out all the time and it goes bye bye too fast. If you have a healer all you need is water really. Think I put 200 waters on my slaves several months ago and they still have like 80.

What about using a refreshment table+mouse repeater? The cost is practically nothing.

Oatboat
07-26-2010, 03:34 PM
I miss the old everquest days where mages would target someone and click summon food/water and it would be on that players cursor.

If only WoW would do that.....

but then again Tables are pretty handy... just click 4 times for a full load ;)

Zub
07-26-2010, 07:18 PM
hes' too low to have a refreshment table yet

HPAVC
07-27-2010, 05:26 AM
I use a pretty hacked tradeDispenser addon, this is because the non mage slaves will trade the mage cloth or whatever your gimmick is using that addon.

Anyways using something like this snippet you could trade a spell's worth to your target, or a health stone to your tank. I'll post a better setup if you want it in the morning when I am done with work if needed.



--/targetraid
/cast Conjure Water
/run for i=0,4 do for x=1,24 do y=GetContainerItemLink(i,x)if y and GetItemInfo(y)=="Conjured Crystal Water" then PickupContainerItem(i,x) DropItemOnUnit("target")end end end
--/run AcceptTrade();

ockhamsrazor
07-27-2010, 01:58 PM
That last snipit looks promising, I can just hardcode my chars I guess and get it all traded appropriately

Thanks!