很多玩家会利用第五人格中的一些bug进行取巧,据说第五人格有一个穿墙bug可以用代码实现,那么怎么操作呢?下面一起来看看~
穿墙代码前提:
安卓必须root,并且版本在7.0以下,7.0可以用。
穿墙进游戏后开启。在点击还原。(结算前)点击还原都可以。不然后果自负。
第五人格穿墙辅助是游戏给力的穿墙和无敌辅助。辅助代码输入后即可直接开启,人物无敌,直接穿墙等功能方便玩家逃走与抓人等优势
代码说明
记事本粘贴后修改保存为.lua格式,或直接下载软件即可
穿墙代码
gg.toast('?个人作品?')
print('?By盧哥?')
if gg.isVisible(true)then
gg.setVisible(false)
end
gg.clearResults()
goto START
::START::
menu=gg.choice({'?逃生者穿墙?','?屠夫穿墙?'},nil,'.www.xiaodao.la')
if menu==1 then goto X1 end
if menu==2 then goto X2 end
if menu==nil then print('Error')end
goto sdone
::X1::
gg.clearResults()
gg.searchNumber('5;6;7;8:666',gg.TYPE_DOUBLE,false,gg.SIGN_EQUAL,0,-1)
gg.searchNumber('8',gg.TYPE_DOUBLE,false,gg.SIGN_EQUAL,0,-1)
gg.getResults(1)
gg.editAll('999',gg.TYPE_DOUBLE)
gg.toast('?穿墙开启成功?')
goto sdone
::X2::
gg.clearResults()
gg.searchNumber('5;6;7;8;15:666',gg.TYPE_DOUBLE,false,gg.SIGN_EQUAL,0,-1)
gg.searchNumber('15',gg.TYPE_DOUBLE,false,
gg.SIGN_EQUAL,0,-1)
gg.getResults(1)
gg.editAll('999',gg.TYPE_DOUBLE)
gg.toast('?屠夫穿墙开启?')
goto sdone
::sdone::
print('?内测版本?')
gg.toast('?脚本以结束?')
os.exit()
……