




版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)
文檔簡介
1、既然是團隊部分,那就說明只有在團隊下才能使用,不在團里的別跑來問我為什么不能用!RL專用,給目標上團隊標記現(xiàn)在團長可以給目標上星星,三角等標記,但每次點右鍵很不方便,試試這個/script SetRaidTarget("target",圖標編號);上邊紅色數(shù)字取值 0-80 = 取消圖標1 = 黃色四角星2 = 桔黃色圓3 = 紫色鉆石4 = 綠色三角形5 = 白色月亮6 = 藍色方塊7 = 紅色X8 = 骷髏這樣可以做8個宏,快捷鍵分別設(shè)成Ctrl-F1 . Ctrl-F8,這個隨意,這樣給團員分配目標比如放逐,變羊,休眠等的時候能夠事半功倍而且后面有些宏需要標記作為依據(jù)
2、,可以和這個宏搭配使用所以,先給你的隊員分配好每個人專管的數(shù)字吧!自動鎖定RL給自己分配的怪,放逐/變羊/休眠并報告,怎么處理隨你便這個宏配合上面的RL分配標記宏一起使用,首先你需要RL給你分配你專門照顧的目標的圖標具體對應(yīng)關(guān)系看上邊那個宏,假如是黃色四角星,就是1把下邊紅色的數(shù)字換成RL給你分配的數(shù)字術(shù)士版/script local i,t;for i=1,GetNumRaidMembers() do t="raid".i."target"if GetRaidTargetIndex(t)=RL分給你的編號 then TargetUnit(t);Cast
3、SpellByName("放逐");SendChatMessage("%t放逐中","yell");break;end;end;法師版/script local i,t;for i=1,GetNumRaidMembers() do t="raid".i."target"if GetRaidTargetIndex(t)=RL分給你的編號 then TargetUnit(t);CastSpellByName("變形術(shù)");SendChatMessage("%t變羊中&q
4、uot;,"yell");break;end;end;德魯伊版/script local i,t;for i=1,GetNumRaidMembers() do t="raid".i."target"if GetRaidTargetIndex(t)=RL分給你的編號 then TargetUnit(t);CastSpellByName("休眠");SendChatMessage("%t催眠中","yell");break;end;end;注意,這個宏不是每次都能奏效,因為它實際
5、上是通過檢查你隊友目標是不是制定目標來實現(xiàn)的,當(dāng)包括團長的團隊中沒有任何人選中你的目標時你只能手動去選擇了密語團內(nèi)所有指定職業(yè) RL用比較好一次M團隊中所有指定職業(yè),打Nef這種BOSS時應(yīng)該很有用,注意別狂點,會刷屏指定職業(yè),說話內(nèi)容自己改/script local i,p;for i=1,40 do p="raid".i;if UnitClass(p)="牧師" then SendChatMessage("停止治療!","whisper",nil,UnitName(p);end;end;根據(jù)目標職業(yè)要buff如
6、果目標是法師就M他要智力,牧師要韌,小D要爪子/script local x,c,i,s="法師"="智力","牧師"="韌","德魯伊"="爪子",UnitClass("target");for i,s in x do if i=c then SendChatMessage("給個".s.",謝謝","whisper",nil,UnitName("target");end;e
7、nd;這個是加強版,增加了自報組號功能根據(jù)目標職業(yè)要buff,并報自己組號,太大了,需要SuperMacro支持左邊窗口/script RequestBuff();右邊窗口Code:function RequestBuff() local x,c,i,s,n,g,_="法師"="智力","牧師"="韌","德魯伊"="爪子",UnitClass("target");
8、0; for i=1,40 do n,_,g=GetRaidRosterInfo(i); if n=UnitName("player") then break;end; end;
9、60; for i,s in x do if i=c then SendChatMessage("給個".s.",我在".g."組,謝謝","whisper",nil,Un
10、itName("target"); end; end;end;報告當(dāng)前團隊活著、死亡、掉線人數(shù),還有boss血量宏/script local c,o,d,i,n,a,b,_=0,0,0;for i=1,40 do n,_,_,_,_,_,_,a,b=GetRaidRosterInfo(i);if n then c=c+1;if a then o=o+1;end;if b t
11、hen d=d+1;end;end;end;SendChatMessage("%t 還剩".UnitHealth("target")."%,共".c."人,死亡".d.",掉線".c-o,"raid")給目標所在小隊加群體Buff,并報告,團隊/小隊均可法師版/script local t,n,g,i,_;CastSpellByName("奧術(shù)光輝");if UnitInRaid("player") then t=UnitName(&q
12、uot;target");for i=1,40 do n,_,g=GetRaidRosterInfo(i);if t=n then SendChatMessage(g." 隊智力已加過","yell");break;end;end;end牧師版/script local t,n,g,i,_;CastSpellByName("堅韌禱言");if UnitInRaid("player") then t=UnitName("target");for i=1,40 do n,_,g=GetRa
13、idRosterInfo(i);if t=n then SendChatMessage(g." 隊韌已加過","yell");break;end;end;end德魯伊版/script local t,n,g,i,_;CastSpellByName("野性賜福");if UnitInRaid("player") then t=UnitName("target");for i=1,40 do n,_,g=GetRaidRosterInfo(i);if t=n then SendChatMessage
14、(g." 隊爪子已加過","yell");break;end;end;end團隊中自動給血最少的人刷血宏/script local p,h,i,j="raid",UnitHealth,1;for j=2,GetNumRaidMembers() do if h(p.i)>h(p.j) and h(p.j)>0 then i=j;end;end;p=p.i;if(not UnitIsDead(p)and UnitIsVisible(p) then TargetUnit(p);CastSpellByName("快速治療
15、");end快速治療可以換成別的法術(shù),看你什么職業(yè)了團隊復(fù)活宏本宏對所有復(fù)活職業(yè)通用,但首先你要知道你的復(fù)活技能所在按鈕的序號,看上邊基礎(chǔ)知識圖用你查到的復(fù)活所在的序號替換紅色數(shù)字/script local p,i,t="raid"for i=1,40 do t=p.i;if UnitIsDead(t) then TargetUnit(t);if IsActionInRange(你復(fù)活按鈕編號) then UseAction(你復(fù)活按鈕編號);SendChatMessage("我開始復(fù)活 %t",p);break;end;end;end;一鍵驅(qū)
16、散宏 - 256字節(jié)取代Decursive !注意:如果這個宏因為你和隊友中間隔著柱子等障礙物而停止的話,請你走幾步宏只能幫你簡化操作,不能幫你破壞游戲規(guī)則牧師,德魯伊,薩滿祭司的提供了單獨的 小隊版 和 團隊版,請注意版本,solo無效法師和圣騎士的是團隊/小隊自適應(yīng)版,solo無效原因是法師,圣騎士只有一種解除魔法,而牧師,德魯伊,薩滿祭司有兩種,限于256字節(jié)寫不下了=牧,德,薩 小隊版=牧師版/script local s,p,i,d,t,_="Magic"="驅(qū)散魔法","Disease"="驅(qū)除疾病"f
17、or i=1,4 do p="party".i;if CheckInteractDistance(p,4) then d,_,t=UnitDebuff(p,1,1);if d then TargetUnit(p);CastSpellByName(st);TargetLastTarget();break;end;end;end德魯伊版/script local s,p,i,d,t,_="Poison"="驅(qū)毒術(shù)","Curse"="解除詛咒"for i=1,4 do p="party&q
18、uot;.i;if CheckInteractDistance(p,4) then d,_,t=UnitDebuff(p,1,1);if d then TargetUnit(p);CastSpellByName(st);TargetLastTarget();break;end;end;end薩滿祭司版/script local s,p,i,d,t,_="Poison"="消毒術(shù)","Disease"="袪病術(shù)"for i=1,4 do p="party".i;if CheckInteractDi
19、stance(p,4) then d,_,t=UnitDebuff(p,1,1);if d then TargetUnit(p);CastSpellByName(st);TargetLastTarget();break;end;end;end=牧,德,薩 團隊版=牧師版/script local s,p,i,d,t,_="Magic"="驅(qū)散魔法","Disease"="驅(qū)除疾病"for i=1,40 do p="raid".i;if CheckInteractDistance(p,4) the
20、n d,_,t=UnitDebuff(p,1,1);if d then TargetUnit(p);CastSpellByName(st);TargetLastTarget();break;end;end;end德魯伊版/script local s,p,i,d,t,_="Poison"="驅(qū)毒術(shù)","Curse"="解除詛咒"for i=1,40 do p="raid".i;if CheckInteractDistance(p,4) then d,_,t=UnitDebuff(p,1,1);i
21、f d then TargetUnit(p);CastSpellByName(st);TargetLastTarget();break;end;end;end薩滿祭司版/script local s,p,i,d,t,_="Poison"="消毒術(shù)","Disease"="袪病術(shù)"for i=1,40 do p="raid".i;if CheckInteractDistance(p,4) then d,_,t=UnitDebuff(p,1,1);if d then TargetUnit(p);Ca
22、stSpellByName(st);TargetLastTarget();break;end;end;end=法,騎 團隊,小隊自適應(yīng)版=法師版/script local n,p,t,i,d=4,"party"if UnitInRaid("player") then n=40;p="raid"end;for i=1,n do t=p.i;if UnitDebuff(t,1,1) and CheckInteractDistance(t,4) then TargetUnit(t);CastSpellByName("解除次級詛咒&
23、quot;);TargetLastTarget();break;end;end;圣騎士版/script local n,p,t,i,d=4,"party"if UnitInRaid("player") then n=40;p="raid"end;for i=1,n do t=p.i;if UnitDebuff(t,1,1) and CheckInteractDistance(t,4) then TargetUnit(t);CastSpellByName("清潔術(shù)");TargetLastTarget();break
24、;end;end;團隊自動補單體buff宏說明:自動搜索團隊內(nèi)沒有相應(yīng)單體buff(真言術(shù):韌,奧術(shù)智慧,野性印記)的團隊成員,為其補上,掉線的,死亡的,不在射程的都會忽略掉。牧師版 - 真言術(shù):韌/script local i,p;for i=1,40 do p="raid".i;if CheckInteractDistance(p,4) and not UnitBuff(p,1,1) then TargetUnit(p);CastSpellByName("真言術(shù):韌");TargetLastTarget();break;end;end;牧師版 - 神
25、圣之靈/script local i,j,b,f,p;for i=1,40 do f=nil;p="raid".i;if CheckInteractDistance(p,4) then for j=1,16 do b=UnitBuff(p,j);if b and strfind(b,"eSpir") then f=1;break;end;end;if not f then TargetUnit(p);CastSpellByName("神圣之靈");break;end;end;end;法師版:/script local i,p;for
26、i=1,40 do p="raid".i;if CheckInteractDistance(p,4) and not UnitBuff(p,1,1) then TargetUnit(p);CastSpellByName("奧術(shù)智慧");TargetLastTarget();break;end;end;德魯伊版:/script local i,p;for i=1,40 do p="raid".i;if CheckInteractDistance(p,4) and not UnitBuff(p,1,1) then TargetUnit(p
27、);CastSpellByName("野性印記");TargetLastTarget();break;end;end;圣騎士版 - 王者祝福/script local i,j,b,f,p;for i=1,40 do f=nil;p="raid".i;if CheckInteractDistance(p,4) then for j=1,16 do b=UnitBuff(p,j);if b and strfind(b,"fKing") then f=1;break;end;end;if not f then TargetUnit(p);CastSpellByName("王者祝福");break;end;end;end;圣騎士版 - 拯救祝福/script local i,j,b,f,p;for i=1,40 do f=nil;p="raid".i;i
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 共同承包甲方合同范例
- 醫(yī)藥物流收購合同范例
- 培養(yǎng)學(xué)生審美素養(yǎng)的幼兒園教研計劃
- 兒童心理學(xué)家的咨詢項目與研究計劃
- 2025年自我保護中班標準教案
- 班級交流平臺建設(shè)計劃
- 品牌體驗經(jīng)濟的興起與趨勢計劃
- 《貴州盛聯(lián)新能源投資有限公司赫章縣松林坡鄉(xiāng)騰達煤礦〔兼并重組(調(diào)整)〕礦產(chǎn)資源綠色開發(fā)利用方案(三合一)》專家組評審意見
- 縫紉機操作知識培訓(xùn)課件
- 營銷人員心理素質(zhì)專業(yè)培訓(xùn)教程優(yōu)化方案
- 興隆街辦拆遷規(guī)劃方案
- 2《秦腔》公開課一等獎創(chuàng)新教學(xué)設(shè)計 統(tǒng)編版高中語文選擇性必修下冊
- 2024年城市軌道交通行車值班員(三級)考試題庫匯總(附答案)
- 老藥新用與用藥創(chuàng)新趨勢
- 特種作業(yè)人員管理規(guī)定
- 安全管理之雙重預(yù)防機制
- 《銳器傷應(yīng)急處理》課件
- 建筑工程趕工補償費用計算表
- 2024屆陜西省西安市西北工業(yè)大學(xué)高考語文一模試卷含解析
- 2024年興湘集團全資子公司招聘筆試參考題庫含答案解析
- 第十七課 《虛擬與現(xiàn)實》(課件)2023-2024學(xué)年北師大版(2013)初中心理健康七年級上冊
評論
0/150
提交評論