macro

Excel Magic Trick #126: Macro: Advanced Filter Extract Text

See how to create a macro that will do an Advanced Filter Movie Title Extract for a Movie Database. See how to create the TRUE FALSE formula for advanced filter before creating a Macro and then adding the Macro to… Continue reading

Fundamentals Tutorial Part 1: Macro – SC2 Noob School

A 10 minute high level description of macro concepts. Three specific aspects of good macro style play are discussed: 1) Constant worker production 2) Keeping money low 3) Good keyboard use/Multitasking My dream is to be able to make videos… Continue reading

Cool WoW macro

just a macro i use ALOT /script for bag = 0,4,1 do for slot = 1, GetContainerNumSlots(bag), 1 do local name = GetContainerItemLink(bag,slot); if name and string.find(name,”ff9d9d9d”) then DEFAULT_CHAT_FRAME:AddMessage(“- Selling “..name); UseContainerItem(bag,slot) end; end;end

Macro: Sell Junk

This is a very sophisticated macro that makes use of a lot of lua calls. Note that you can’t have the code indented as shown within a macro due to how the /script command works so find the compressed version… Continue reading

Igiwarcraft’s Tricks pt.2: Sell macro

Script: /script for bag = 0,4,1 do for slot = 1, GetContainerNumSlots(bag), 1 do local name = GetContainerItemLink(bag,slot); if name and string.find(name,”ff9d9d9d”) then DEFAULT_CHAT_FRAME:AddMessage(“Selling “..name); UseContainerItem(bag,slot) end; end; end

Get the book now