你的位置:首页 > 视频教程

GEE剑客自动穿戴装备脚本示例

2016/11/28 9:50:25      点击:

GEE剑客自动穿戴装备脚本示例:

等待(500)
if 全套攻击<200 then
if 盔甲<7 then --数字代表攻击力
穿卸装备(1,0,"九幽の神甲") --第一个数字1代表穿,第二个数字0是盔甲的代码
end
if 武器<52 then
穿卸装备(1,1,"无敌の神斩")
end
if 勋章<10 then
穿卸装备(1,2,"无敌の神章")
end
if 项链<10 then
穿卸装备(1,3,"无敌の神链")
end
if 头盔<8 then
穿卸装备(1,4,"无敌の神盔")
end
if 右手<10 then
穿卸装备(1,5,"无敌の神镯")
end
if 左手<10 then
穿卸装备(1,6,"无敌の神镯")
end
if 右戒<13 then
穿卸装备(1,7,"无敌の神戒")
end
if 左戒<13 then
穿卸装备(1,8,"无敌の神戒")
end
if 腰带<8 then
穿卸装备(1,10,"无敌の神带")
end
if 靴子<8 then
穿卸装备(1,11,"无敌の神靴")
end
if 宝石<8 then
穿卸装备(1,12,"无敌の神石")
end
end