라벨이 Macro인 게시물 표시

[와우] 3.3.5 공통 매크로, 개인적인 매크로, 몇 가지 도움되는 매크로 작성 팁 (Some tips for creating macros, regular macros and personal macros for World of Warcraft Wrath of the Lich King)

 <구매> 설명 : 상인에게서 구매. 상인을 선택하고 작동 57번째의 아이템을 50000개 구입한다. /run BuyMerchantItem(57,50000) <판매> 설명 : 상인에게 아이템 판매. 해당 아이템을 수량에 관계없이 모두 판매. 가방에 해당 아이템이 어디에 있어도 판매. 한글부분을 아이템 이름으로 수정 /run for bag = 0,4,1 do for slot = 1, GetContainerNumSlots(bag), 1 do local name = GetContainerItemLink(bag,slot); if name and string.find(name,"황천의 용비늘") then UseContainerItem(bag,slot) end end end <탈것> 설명 : 장신구교체, 랜덤탈것(지역에 따라, 겨울손아귀 전투에 따라) 주의 : 255자가 넘지 않도록 알아서 ㅋㅋ - [**] 요거는 지우고 필요한거 넣으면 됨 숫자 2.3=지상탈것, 8.9=공중탈것. 숫자 중에서 랜덤하게 됨 #showtooltip /장비 [nomounted,noflying] [탔을때 장신구] /장비 [mounted,noflying] [타지 않았을 때 장신구] /run if IsMounted() then Dismount() return end local m if not IsFlyableArea() or (GetWintergraspWaitTime()==nil and GetZoneText()=="겨울손아귀 호수") then m={2.3} else m={8.9} end CallCompanion("MOUNT",m[random(#m)]) <캐릭터, 몹 능력 보기> 설명 : 체력, 공격력, 공격속도, 방어력 표시됨. 그런데 왜 방어력이 0인지..좀...다른것도 이상함 ㅋ /script T="target"; SendChatMessage ("["..UnitN