这个小游戏是剑网3自带的,很简单,和打地鼠差不多。
它的代码一直都在剑网3pak包里面的,相信解过包的各位都知道这东西吧。
调出来的方法很简单:
在聊天栏里面打 /script OpenFindBugGame() 就行了。
关闭窗口,则打/script CloseFindBugGame()
也可以把开/关游戏窗口做成宏,像这样:
/script if IsFindBugGameOpened() then
CloseFindBugGame()
else
OpenFindBugGame()
end