2008年11月2日 星期日

防呆巨集 - 防止角色卡點發呆

#####
automacro autowalk {
#每隔10分觸發一次
timeout 600
#不在城鎮中啟動
notInTown 1
call {
$x = @arg("$.pos", 1)
$y = @arg("$.pos", 2)
$x2 = @eval ($x - @rand(40,35))
$y2 = @eval ($y - @rand(40,35))
do @random ("move $x2 $y2")
}
}




#版本二(起立坐下防呆版),和上面選用一種即可



#####
automacro autositstand {
timeout 180
#重複檢測時間
location not prontera
#不在某地圖時啟動
call {
do sit
pause 1
#想要坐下多久 也可以自己調整
do stand
}
}

1 則留言: