Quoted from "TheMann64;210399"
Is there a way to activate a macro within a macro?

Quoted from "GnatB;216083"
1. You can no longer call a macro from a macro to prevent botting, so your UseAction(1) and UseAction(2) won't work.
2. Those macros are exactly the type of botting that caused them to make the change, and is most likely a bannable offense.
3. You can still probably bot through the use of add-ons, but I for one won't tell you how, and would hope that Runewaker/Frogster has taken steps to detect such addons and presumably ban you for using them.
Quoted from "DTAWOU;216254"
So i cant use potions in my action bar either ( because UseAction(AB#) won't work???
Quoted from "Tigsman;152621"
sorry for necroposting, but my wife and I along with guildies were looking for a quick 1 click way of autoloot on and off. Your example made it possible.
thanx
for anyone else wanting it:
![]()
Source code
1/script if (BOOTYFRAME_AUTO_TAKE==true) then BOOTYFRAME_AUTO_TAKE=false,DEFAULT_CHAT_FRAME:AddMessage("Autoloot Disabled!"); else BOOTYFRAME_AUTO_TAKE=true,DEFAULT_CHAT_FRAME:AddMessage("Autoloot Enabled!"); end
I'm no coder, just a simple find, tweak it and make it work kinda guy, so dont anyone ask me for upgrades please lol
T
)|
|
Source code |
1 |
/run isAutoTakeBooty:SetChecked(not isAutoTakeBooty:IsChecked()); GCF_OnApply(); (SELECTED_CHAT_FRAME or ChatFrame1):AddMessage("Auto Loot " .. (IsAutoTakeLoot() and "enabled." or "disabled."))
|