Код HTML:
1) /run ClearCursor()local g,i,j,s,a,b=gsub;for i=0,4 do for j=1,GetContainerNumSlots(i)do s=GetContainerItemLink(i,j)if(s)then a,b,s=GetItemInfo(g(g(s,".*\124H",""),"\124h.*","" ))if(s==0)then PickupContainerItem(i,j)DeleteCursorItem()end;end; end;end -- Удаление серых вещей из сумки
2) /run local function buy (n,q) for i=1,100 do if n==GetMerchantItemInfo(i) then BuyMerchantItem(i,q) end end end buy ("Имя вещи", 2 ) -- Покупка определённых вещей у вендора
3) /run name="Имя_Ответственного"; l, _, _= GetLootMethod(); if l=="freeforall" then SetLootMethod("master", name) else SetLootMethod("freeforall") end -- Смена дута, между фри лутом и мастер лутом
4) /run m = GetNumRaidMembers() d = GetRaidDifficulty() if (m<11) then if (d==1) then SetRaidDifficulty(3) else SetRaidDifficulty(1) end else if (d==2) then SetRaidDifficulty(4) else SetRaidDifficulty(2) end end -- Смена сложности рейдового подземелья, универсальность в том, что данный макрос меняет сложности в зависимости от кол-ва человек