原創來自於 IRIS 暴力美學聯盟
小弟經過許久研究 將其設定成
"只有公會人員能用"公開喊話"周圍下左右1格施展傳陣"地圖關鍵字施展"
請修改公會全名(紅字部分) 即可指定公會使用
並用於各人員最常需要施展區
古城glast_01
火洞yuno_fild03
冰洞ra_fild01
朱諾yuno
使用前請務必確認您的傳陣機有沒有該地圖儲點(因為有些點不能儲存 小弟儲存在旁邊地圖 所以設定也在旁邊地圖 請在使用ROMAPS尋找一下地圖部分)
automacro pubmguild {
console /\[(距離|dist)=(.*)\] (.*) \((\d+)\): (古|火|冰|朱)/
exclusive 1
call {
$i = $.lastMatch4
if ($.lastMatch2 > 9) goto stop
$g = @eval (exists $::players{$::playersID[$i]}->{guild} ? $::players{$::playersID[$i]}->{guild}{name} : 'null')
if ("$g" == "請修改我成為你要的指定公會") goto ok
stop
:ok
if ($.lastMatch5 == "古") goto mac00
if ($.lastMatch5 == "火") goto mac01
if ($.lastMatch5 == "冰") goto mac02
if ($.lastMatch5 == "朱") goto mac03
stop
:mac00
$x = @arg("$.pos", 1)
$y = @arg("$.pos", 2)
$y2 = @eval($y + -1)
do sl 27 $x $y2
pause 2
do warp glast_01
do c 古城,祝您遇到黑王,打到卡片記得分紅
stop
:mac01
$x = @arg("$.pos", 1)
$y = @arg("$.pos", 2)
$x2 = @eval($x + 1)
do sl 27 $x2 $y
pause 2
do warp yuno_fild03
do c 火洞,祝您遇到白木放枯枝,練等艱辛刻苦
stop
:mac02
$x = @arg("$.pos", 1)
$y = @arg("$.pos", 2)
$x2 = @eval($x + -1)
do sl 27 $x2 $y
pause 2
do warp ra_fild01
do c 冰洞,祝您遇到冰龍,打到卡片記得分紅
stop
:mac03
$x = @arg("$.pos", 1)
$y = @arg("$.pos", 2)
$x2 = @eval($x + 1)
do sl 27 $x2 $y
pause 2
do warp yuno
do c 朱諾,祝您轉生迷宮走不完
stop
:stop
stop
}
} |