November 24, 20178 yr My wand pretty much spam clicks so i can't use it in the way i want to aka just use it normally after i apply dots.
November 24, 20178 yr Hello, is this for vanilla? I use the following function to check if I can wand: public static bool IsAutoRepeating(string name) { string luaString = @" local i = 1 while true do local spellName, spellRank = GetSpellName(i, BOOKTYPE_SPELL); if not spellName then break; end -- use spellName and spellRank here if(spellName == ""{0}"") then PickupSpell(i, BOOKTYPE_SPELL); PlaceAction(1); ClearCursor(); return IsAutoRepeatAction(1) end i = i + 1; end return false;"; return Lua.LuaDoString<bool>(string.Format(luaString, name)); } Edited November 24, 20178 yr by Matenia
Create an account or sign in to comment