Jump to content

zhxwbr8

Members
  • Posts

    68
  • Joined

  • Last visited

Recent Profile Visitors

866 profile views

zhxwbr8's Achievements

  1. For example, the name of an item in the backpack is "delicious cake". How to use the macro command to search for "cake" and put the item in the bank?Thx.
  2. Sorry about my English. I mean: there are green, blue and purple items in the backpack. I just want to deposit the purple items in the bank. How should the runmacrolua command be written?
  3. Is there any RunMacroLua command that can do this? Now I only know the following command: deposit all items in the bank. I want to deposit items of specified quality in the bank.thx. /run for t = 0,GetNumGuildBankTabs() do for b = 0, 1 do for s = 0, GetContainerNumSlots(b) do SetCurrentGuildBankTab(t)UseContainerItem(b,s) end end end
  4. First of all, I would like to thank those who have helped me@inselmann@Droidz@TheSmokie(he got banned lol)..etc..Thx all. After nearly two years of study, I have made some contributions to the forum. Here's a code format for Teleport! I hope you can use it. Of course, I hope you can get a better way to realize this function. My idea in this code:First, I create a blank memory address, and then give it a game coordinate (destination coordinate). Of course, you can also use other blank memory addresses. Then use this coordinate to teleport.Finally,it works great! Code: float X=XXXf; float Y=XXXf; float Z=XXXf; int processId = (int)wManager.Wow.Memory.WowMemory.Memory.GetProcess().Id; MemoryRobot.Memory memory = new MemoryRobot.Memory(processId); uint BaseAddress = (uint)memory.ReadInt32(0xCD87A8); BaseAddress = (uint)memory.ReadInt32(BaseAddress + 0x34); BaseAddress = (uint)memory.ReadInt32(BaseAddress+0x24); memory.WriteFloat(BaseAddress + 0x798, X); memory.WriteFloat(BaseAddress + 0x79C, Y); memory.WriteFloat(BaseAddress + 0x7A0, Z); In some undetected servers, you can travel a long distance on the same map. Of course, you can also change it to a small distance of 5 yards to travel. enjoy My English is not very good, please forgive me.
  5. I solved it myself. I need two macro commands. Click command 1 and then command 2 /run l={"name1","name2","name3","name4"}for j=1,#Rubb do if GetItemInfo(l)==Rubb[j]then return 1 end end end /run for bag=0,4 do for slot=1,50 do local b=GetContainerItemLink(bag,slot) if b and IRubb(b)then UseContainerItem(bag,slot)end;end;end
  6. Hi,can tell me if i want store designated items in bank,how to writ this commands with MacroLua?
  7. If I want the mouse to move to the specified coordinates (relative to desktop coordinates) and click. What should I write in Quester editing mode?
  8. Thank you all. Many of my questions have been answered for me.i love Wrobot.
  9. If I want to implement the command in "is complete condition", how do I express the return command? wManager.Wow.Helpers.Usefuls.MapZoneName != "Westfall" I want to judge, if not in this area, then return. Thx.
  10. I ran into a problem in Easy Quest.I only know to use the RunMacroLua command in EasyQuest this command: . /Targetenemy HighPriestessJeklik . /Cast DarkCommand . /Cast ChainsOfIce . /Cast DeathGrip I want ask how can I use Runcode to complete this command? thx you.
  11. This function doesn't seem to work. I don't use other input methods (Just yesterday, I wrote the code in the middle of the night. The mouse click times were too many. My wife woke up and criticized me severely)
  12. Yes,Wotlk,i put id in there cant use,and i put item name there still cant use.There is no forced use of the flight mount option, in Grindr mode.
  13. I use Grinder mode.but my sever the mount is an item in a backpack.How do I set up items that let me use backpacks as mounts?
  14. Thx,and i want ask ,i know Blue is 0070dd,so when i want sell purple+blue,it is right? RunMacroLua->/run local q;if MerchantFrame:IsVisible()then for i=1,69 do q=GetContainerItemLink(i/35,i%35)if q and q:sub(5,10)=="a335ee,0070dd"then
×
×
  • Create New...