极客战记-高山拉力
1、角色

2、装备

3、目标


4、默认代码

5、代码
# 逃离右边的地图
# 为了逃脱的雪人,你必须让自己更快。
# 使用resetCooldown来施法更频繁
# manaBlast能帮我们清理道路
while True:
if hero.canCast("haste", hero):
hero.cast("haste", hero)
else:
cooldown = hero.getCooldown("haste")
if cooldown!=0:
hero.resetCooldown("haste")
hero.move({'x': hero.pos.x+100, 'y': hero.pos.y})
if hero.pos.x>107:
hero.manaBlast()

6、过关

声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。