Everything posted by Droidz
-
reloger Crash
it is strange. You have get this problem recently? (or you just start to use Relogger)? In google, all repport similar at this crash is very recent https://www.google.com/search?q=ltc_game32-116096.dll . What version of Windows do you use? do you have get update recently?
- macros
-
reloger Crash
Hello, can you give more details about problem. When this happen? The frequency? Do you get errors in your log files (you can found your log file in folder Logs).
-
attack dead object (log attend )
Hello, if problem persist, can you share the name of your fightclass and buffs of dead npc please (tab "Tools" > "Development Tools" > select npc in game and click on "Player/target buff/debuff", send me text after "TARGET Buff/Debuff:").
- possible to fishbot during queue time?
-
Asking add copy function on Relogger
Hello, I'll not add this feature. But you can copy manually (for it, edit setting file with notepad (WRobot\Settings\ReloggerGeneralSettings.xml)
-
Bought key but not working
Hello, try again, you can now use your license key with this version.
-
fishing retraitre of Margoss
Bonjour, pouvez vous décrire votre problème en Français.
-
Moves when fishing
Hello, do you have new line in log when this happen? Do you have try to reinstall WRobot in new folder and use default settings (without fightclass) to check if problem appear? And what frequency do you get this problem?
-
New FIGHT CLASS Guide [Willing To Contribute]
Hello, I'll not write more guide for create fightclasses (. Eeny has already create good guide and a lot of fightclasses (for Legion or older versions), with this fightclasses, you can see what conditions you need to use with your spell. I am agree, he missing descriptions of the conditions availables.
-
Repair/Install WRobot
Why I get message "The Game is currently used by this bot or contains traces of a recent of bot usage, are you sure you want to use this process ?" without reason?
-
Repair/Install WRobot
Why I can't download files (Error code 1D161/3 : "You are not allowed to download that file.")?
-
Repair/Install WRobot
How do I renew the subscription?
-
Repair/Install WRobot
How to use my license key to unlock WRobot?
-
Repair/Install WRobot
Where is my license key?
-
Repair/Install WRobot
-
Add "Focus" in fightclasses
In next days.
-
Bot
-
Can this run on Linux?
Hello, I have never try, but I don't think than WRobot works correctly with Wine on linux. But you can run WRobot and wow in Windows virtual machine.
-
Crashing my game
Hello, http://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 steps 6, 7, 10, 14, 15
-
Macro only ONCE after combat
can you share your fightclass
-
Get WoWPlayer Realm
In CastSpellByNameOn you need to put lua unit id (not unit name) To don't stop move, you can try: Interact.InteractGameObject(partyMember.GetBaseAddress, false, true);
- Wrobot Don`t detect when quest is finish
-
Snippets codes for quest profiles
Dump all quests in "Quests log" with lua ret = ''; local numEntries, numQuests = GetNumQuestLogEntries(); for questLog = 1, numEntries do local questTitle, _, _, _, _, _, _, id = GetQuestLogTitle(questLog); if id > 0 and questTitle then local q = '\n================='; q = q .. '\n' .. tostring(questTitle) .. ' (' .. id .. ')'; local numObjectives = GetNumQuestLeaderBoards(questLog); for i=1,numObjectives do local description, objectiveType, isCompleted = GetQuestLogLeaderBoard(i,questLog); if description then q = q .. '\nObjective count: ' .. i .. ', Description: ' .. tostring(description) .. ', ObjectiveType: ' .. tostring(objectiveType) .. ', IsCompleted: ' .. tostring(isCompleted); end end q = q .. '\n================='; print(q); ret = ret .. q; end end Go to WRobot tab "Tools" > "Development Tools" > paste this lua code in textbox and click on button "Lua (return value in 'ret')"
- Wrobot Don`t detect when quest is finish