大家好,又见面了,我是你们的朋友全栈君。
gg修改器lua脚本怎么编写菜单,lua脚本怎么编写提示信息
在本主题中,你们将要学习如何创建这样的前缀[ON]和[OFF] 为什么要使用它?好了,你可以让你的脚本菜单干净,仍然用它来做其他事情一样表示了提示结果(数字,文字,等…)
这样做有它的2种方式:
- 呼叫和菜单上刷新东东吧
- 创建一个正在读的作弊功能后,将被调用的函数
1.首先,你需要存储的ON和OFF信息为字符串,然后设置功能“cstatus”作为关
代码语言:javascript复制on = '[ON]'
off = '[OFF]'
cstatus = off
2.这里我们创建我们的菜单,并设置一些东西…
每个按钮之前,如果你打算把前缀,你需要把创建那里的字符串VAR(这里是cstatus),然后2点(…),最后文本
代码语言:javascript复制function main()
menu = gg.choice({
cstatus .. ' Some random trick', -- cstatus .. and 'the text'
'Exit'},
nil,
'Cheat menu')
if menu == 1 then
if cstatus == on then --
cstatus = off -- If yes, then sets it to [OFF]如果是,那么将其设置为off] 其他
else
cstatus = on -- If it's not, then sets it to [ON]如果不是,然后将其设置为[ON] 结束
end
doCheat() -- After doing the check things, regardless of outcome it call the doCheat function
elseif menu == 2 then
os.exit()
end
3.当您使用与存储在数据增值经销商,您也可以拨打1个函数只启用和禁用作弊
代码语言:javascript复制function doCheat()
if cstatus == on then -- Check if the cstatus is [ON]
print('你要输出的内容') -- If yes, then add the activation code here 如果是,那么在这里添加激活码
else
print('你要输出的内容') -- If it's not, then add the desactivation code here 如果不是,然后添加desactivation代码在这里结束结束
end
end
本文参考来自:竹子学习网
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/197308.html原文链接:https://javaforall.cn