概述
希望升级快一些。
实战
按照《魔兽改图实战: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里。
网友评论