美文网首页
魔兽改图实战:3倍经验

魔兽改图实战:3倍经验

作者: 马克约瑟 | 来源:发表于2024-09-07 20:31 被阅读0次

    概述

    希望升级快一些。

    实战

    按照《魔兽改图实战:P闪》的操作步骤,获得war3map.j后,使用查找功能,查找“function main”。找到后,在它上面添加以下代码:

    function MyCheat takes nothing returns nothing
        // 使玩家一获得3倍经验
        call SetPlayerHandicapXP(Player(0), 3.)
    endfunction
    

    注意看以上代码的注释。

    如果你希望每个玩家都能有3倍经验的话,你可以这样写:

    function MyCheat takes nothing returns nothing
        local integer player_index = 0
        loop
            exitwhen player_index == 12
            call SetPlayerHandicapXP(Player(player_index), 3.)
            set player_index = player_index + 1
        endloop
    endfunction
    

    添加完后,从“function main”开始查找“endfunction”,在它上面添加以下代码:

    call MyCheat()
    

    到此,war3map.j改完了。此时,你要用HkeW3mModifier 2.0把修改好的war3map.j替换进w3x里。

    相关文章

      网友评论

          本文标题:魔兽改图实战:3倍经验

          本文链接:https://www.haomeiwen.com/subject/etlsljtx.html