常回来看看修改
本文内容涉及修改、作弊,可能影响游戏体验,不喜勿入!
游戏介绍:
https://gityx.com/g8hh/yihanhua/669.html
******常回来看看(Check Back)******
代码修改每个按钮的冷却:
经验按钮:
script.js,搜索【clickButton(x)】,然后把 game.buttonCooldowns[x] = 后面的数字改掉,比如
game.buttonCooldowns[0] = 60 / (pets[game.selectedPet][3]) //1 minute
上面都注释了,1分钟,对应60秒,所以60改成1,冷却就变成1秒,以此类推。
宠物按钮:
script.js,搜索【unboxPet(x)】,在这个方法的最后,大约419行,有这么一段,把这些大数都改小就好,比方说都改成1
if (game.selectedPet < pets.length) {
if (x==1) {game.buttonCooldowns[5] = 7200 / (pets[game.selectedPet][4])} //2 hours
else if (x==2) {game.buttonCooldowns[6] = 21600 / (pets[game.selectedPet][4])} //6 hours
else if (x==3) {game.buttonCooldowns[7] = 64800 / (pets[game.selectedPet][4])} //18 hours
}
else {
if (x==1) {game.buttonCooldowns[5] = 7200 / (specialPets[game.selectedPet - pets.length][4])} //2 hours
else if (x==2) {game.buttonCooldowns[6] = 21600 / (specialPets[game.selectedPet - pets.length][4])} //6 hours
else if (x==3) {game.buttonCooldowns[7] = 64800 / (specialPets[game.selectedPet - pets.length][4])} //18 hours
}
控制台修改全部按钮的冷却(包括日常奖励):
game.buttonCooldowns=[0, 0, 0, 0, 0, 0, 0, 0, 10];//最后的10是日常奖励,5也行的