极客战记-穿越

若是你卡在这里了 , 那么看看这个攻略吧

极客战记-穿越

文章插图
筹办工作1选择英雄和编程说话

极客战记-穿越

文章插图

2选择装备

极客战记-穿越

文章插图

3写中文注释

极客战记-穿越

文章插图

python1写代码
# Don't insult this tribe of peaceful ogres.
while True:
    item = hero.findNearestItem()
    if item:
        # If item.type IS NOT EQUAL TO "gem"
        if item.type != "gem":
            # 然后跟从你的宠物 。
            hero.moveXY(pet.pos.x, pet.pos.y)
        # 不然:
        else:
            # 移动到宝石的坐标 。
            hero.moveXY(item.pos.x, item.pos.y)

极客战记-穿越

文章插图

2运行

极客战记-穿越

文章插图

javascript1写代码
// 不要欺侮这个和平食人魔部落
while(true) {
    var item = hero.findNearestItem();
    if(item) {
        // 若是item.type不等于 "gem"
        if(item.type != "gem") {
            // 然后跟从你的宠物 。
            hero.moveXY(pet.pos.x, pet.pos.y);
        }
        // 不然:
        else {
            // 移动到宝石的坐标 。
            hero.moveXY(item.pos.x, item.pos.y);
        }
    }
}

极客战记-穿越

文章插图

2运行

极客战记-穿越

文章插图

coffeescript1写代码
# Don't insult this tribe of peaceful ogres.
while true        
    item = hero.findNearestItem()
    if item
        # If item.type IS NOT EQUAL TO "gem"
        if item.type != "gem"
            # 然后跟从你的宠物 。

推荐阅读