World of Warcraft scripts
Buy cheap World of Warcraft products A script is a small computer program written in a scripting language.World of warcraft has LUA scripting language embedded.
You can enter scripts as a part of a macro or type them in the chat box
starting with /script (255 character limit) or create your own addon.
Useful Wow scripts
Checking your coordinates
Run the script and get your coordinates./script z = C_Map.GetBestMapForUnit("player"); pos = C_Map.GetPlayerMapPosition(z,"player"); print(C_Map.GetMapInfo(z).name, math.ceil(pos.x*10000)/100, math.ceil(pos.y*10000)/100)
Automatically sell all grey items in your bags
Click the macro with a vendor window open and it will sell all your grey items../script for bag = 0, 4 do for slot = 1, GetContainerNumSlots(bag) 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
Target marker script
Sets a skull above your current target. 1 = Yellow Star/script SetRaidTarget("target",8);
2 = Orange Circle
3 = Purple Diamond
4 = Green Triangle
5 = White Moon
6 = Blue Square
7 = Red Cross
8 = White Skull
Remove gryphons from ui
Run the script to hide the gryphons. If you want the gryphons back :/script MainMenuBarLeftEndCap:Hide() MainMenuBarRightEndCap:Hide()
/script MainMenuBarLeftEndCap:Show() MainMenuBarRightEndCap:Show()
Arena frames outside Arena
Shows the Arena frames and castbars outside the Arena./run LoadAddOn("Blizzard_ArenaUI") ArenaEnemyFrames:Show() ArenaEnemyFrame1:Show() ArenaEnemyFrame2:Show() ArenaEnemyFrame3:Show() ArenaEnemyFrame1CastingBar:Show() ArenaEnemyFrame2CastingBar:Show() ArenaEnemyFrame3CastingBar:Show()