Amulets (the best one is an amulet that you can manually proc for up to 10% patk)
Pusher stats (these are stats that you can combine with equal / lower stats to make gear)
Right now I use rombot in a very... bad way to farm this instance.
I'm sorry for all of you experts out there
Code: Select all
<?xml version="1.0" encoding="utf-8"?>
<waypoints>
<onLoad><![CDATA[
startGMDetect()
]]></onLoad>
<onLoad>
while (true) do
keyboardHold( key.VK_D ); -- The A key will be held down
yrest(250);
keyboardRelease( key.VK_D ); -- The A key is now released
camera:setRotation(0)
yrest(50);
sendMacro("UseAction(2)");
yrest(50);
sendMacro("UseAction(3)");
yrest(50);
sendMacro("UseAction(2)");
yrest(50);
sendMacro("UseAction(3)");
yrest(50);
sendMacro("UseAction(2)");
camera:setRotation(1.59)
yrest(50);
sendMacro("UseAction(3)");
yrest(50);
sendMacro("UseAction(2)");
yrest(50);
sendMacro("UseAction(3)");
yrest(50);
sendMacro("UseAction(2)");
yrest(50);
sendMacro("UseAction(3)");
camera:setRotation(3.15)
yrest(50);
sendMacro("UseAction(3)");
yrest(50);
sendMacro("UseAction(2)");
yrest(50);
sendMacro("UseAction(3)");
yrest(50);
sendMacro("UseAction(2)");
yrest(50);
sendMacro("UseAction(3)");
camera:setRotation(4.7)
yrest(50);
sendMacro("UseAction(3)");
yrest(50);
sendMacro("UseAction(2)");
yrest(50);
sendMacro("UseAction(3)");
yrest(50);
sendMacro("UseAction(2)");
yrest(50);
sendMacro("UseAction(4)");
end
</onLoad>
</waypoints>
Also notice the 'useaction[2-4]'
These are macros I have made to have the bot spam.
Actionbar slot 2 spams this
Code: Select all
/script if GetPlayerCombatState(true) then MoveForwardStop(); KillSequence('v2',1); CastSpellByName("Attackk"); TargetNearestEnemy(); elseif (IsPetSummoned(3)) then MoveForwardStart() else MoveForwardStop(); SendChatMessage("Summon Pet", "WHISPER", 0, "XXXXXXXXXXXXXXXXX") end
/run for i = 1,40 do TargetNearestEnemy() if UnitName("target") == "Nightmare Puppet Warrior" then break end end
/run for i=1,20 do local name = UnitName("target") if name =="Hlethfir Deliriumscribe" then TargetNearestEnemy() else end end
/rep set0
/rep
/wait 0.5
/rep
/wait 0.5
/rep
If in combat, STOP MOVING FORWARD, USE DIYCE, CAST ATTACK (misspelled on purpose), Target enemy, if these conditions are not meant, IS PET SLOT "#" SUMMONED, if yes then START MOVING FORWARD, if no, STOP MOVING FORWARD, WHISPER YOURSELF "SUMMON PET" (It's set to whisper because you cannot summon pet if bot is active)
--
Target Nightmare Puppet Warrior (this mob deals TONS OF DAMAGE IF YOU DONT KILL IT ASAP, CAN ONE SHOT)
--
If target name = Hlethfir Deliriumscribe target other enemy. (This is because this boss goes immune and summons add. Doing this prevents player from constantly dps'ing an immune boss and instead targets the mobs.
--
Repair gear.
Problem with this macro:
Since bot constantly moves to the right, can never get an actual pet summon off. After all mobs are dead and out of combat, will run forward into a wall (you go into next room when all mobs have been looted) and if GM sees you, is suspicious. Keep in mind if you actually do this manually, you are going to run into a wall regardless. It's how the macro is setup (I was looking for a one button wonder to do dreamland).
Action Bar slot 3 spams a macro that isn't necessary with diyce. Just useactions with buffs if target is boss
Code: Select all
/script if (UnitSex("target")>2) then if GetActionUsable(X) then UseAction(X);
Action Bar slot 4 uses foods. Checks if has food and buffs. For example
Code: Select all
/run SP = false; for i=1,40 do if UnitBuff("player", i) == "Hero Magic Medicine" then SP = true break end end if (not SP) then UseItemByName("Hero Potion") end
1) manually loot mobs (always need to get pet perfume)
2) once the 30 minutes are over, your backpack spaces are FULL. Macro does not sell to vendors.
3) to re-enter, you must spend 20 dusts (drops from mobs) to re-enter again. You can do this infinite times a day. That must be done manually aswell.
4) I have camera rotations in the bot, this is to view the room 360 degrees. Since I am macro'ing everything, it won't target mobs unless you have LoS. Without the turns, the macros will not target mobs out of view (ex; if are on healer behind you etc)
I guess what I'm trying to do is get a person who is willing to put all this into a working bot. What I have is dandy and all, but the inefficiencies are... well inefficient.
btw zoneid for dreamland is 356.
If nothing else, I hope this is some kind of value to someone.