Everything posted by Droidz
-
Add support for windows 8.1
Can you look in "Logs" folder if you have log please.
-
Immerseus won't rotate
Do you have this problem only when http://www.wowhead.com/npc=71543/immerseus has more than 200 000 000 hp? And you have try to go near Immerseus (spell range can cause problems also).
-
herbalism horde 75-125 fly and jup in mountain not geting up :O
Hello, What profile do you use? Do you have try another profile?
-
Repa et vendre sur ma monture
Non ça ne fait pas longtemps, a peux prêt une semaine. N'hésitez pas à me dire si vous avez des bugs avec cette option.
-
Spazing out
You need to use wow window mode. You cannot minimize wow in taskbar but you can resize wow window at minimum and put in the background and use your computer normally.
- Stuck in Dread wast
-
Coordination
Hello, Yes it is good idea. Me I'll continue my profile for Alliance (16 to 60 for the moment).
-
Networkz QProfiles Bugs & Questions
Can you try to remove folder "WRobot\Meshes\" and share me your log, I haven't this problem.
-
Immerseus Breaks My Rotation
Hi, I'll continue this post here:
-
Immerseus won't rotate
Hello, Can you target this NPC and go to tab "Tools" > "Development Tools" > "Memory informations" and post here output result. If you can also test with another fightclass (and wow class, just to test if problem is the fightclass (or one conditions)). Thanks.
- Stuck in Dread wast
-
Spazing out
Do you use mode window for wow?
-
Repa et vendre sur ma monture
Bonjour, Activez l'option "Use Traveler's Tundra Mammoth" qui ce trouve dans "General Settings > Enter advanced settings... > Vendor 'Selleting or Buying". Pour plus d'info ce référer au guide: http://download.wrobot.eu/wrobot/guides/
-
Goblin Starter Quester
Use this lua codes: if (not QuestLogFrame:IsVisible()) then QuestLogMicroButton:Click() end QuestLogFrameCompleteButton:Click() if (QuestLogFrame:IsVisible()) then QuestLogMicroButton:Click() end and if QuestFrame:IsVisible() then QuestFrameCompleteQuestButton:Click() end Sample here: male goblin quest FIXED.xml (I have also added c# condition "if Quest.HasQuest(24502)" before lua macro) To get button/frame name you can use this macro (put mouse over button/frame and launch in wow chat this macro): /run print( GetMouseFocus():GetName())
-
Goblin Starter Quester
Hello, You need by moment create one quest by objective: male goblin quest FIXED.xml
-
Interact with npc - Question
Can you share your profile I'll look it. Edit: I go to your new thread:
-
getting stuck in Dread Wastes
Hello, I cannot fix this problem with WRobot, this is due at wow server. What profile do you use?
-
Window Sizes
I have noted it in my todo list .
-
Advanced settings window
In Windows Settings you can change text size and interface size.
-
Networkz QProfiles Bugs & Questions
Nice work. Profile works fine, (just one small error in Burning Blade Medallion for "objective count 1" you have put 1 and you need to put 7). Do not hesitate to share your profile in download section (for more views) (you can use it to manage update).
-
-- Comment
Hello, Wait next update, I have fixed problem. But don't use "one line comment" in fightclass (it cause bug because when XML is converted in C#code all lua code is on one line).
-
Advanced settings window
Can you try it please: http://www.microsoft.com/surface/en-us/support/apps-and-windows-store/app-display-issues#Solution2 And what is your Windows settings (to view if I can fix this in program directly).
-
Malefic Grasp <--> Shadow Bolt
Hello, Reply here:
-
Fishbot + Mail/Vendor, Its Possible?
Hello, Yes you can. For add NPC/Mailbox use "NPC DB" (you can found it in tab "Tools" of main window). To use vendor/repair read this:
-
Warlock Afli - Shadow Bolt <--> Malefic Grasp
Hello, If when you write "Shadow Bolt" your character launching "Malefic Grasp" then is necessary to use "Shadow Bolt". This is in wow code, I ignore why (Wow use base spell name). You can use this macro to get base spell name: /run for i=1,200000 do local f=FindSpellBookSlotBySpellID(i,"spell") if f then local n,id=GetSpellBookItemName(f,"spell"),select(2,GetSpellBookItemInfo(f,"spell")) local s=GetSpellInfo(id) s=n==s and " " or "\124cFF4FF763"..s print(id,n,s) end end