用户:
goooooood查看:3 回复:3 评论:3 创建时间:2021-11-25T20:50:42
【作品展示】

【作品介绍】
本作品制作了游戏开头的验证效果,可以进行游戏验证!
【作品源代码】
import easygui
import codemao
# 选择语言
if (not easygui.ynbox('Is your language?你的语言是?', 'Language Settings', ('简体中文', 'English'))):
if (not easygui.ynbox('Are you?', 'Robots and human judgment', ('I am a robot', 'I am a human being'))):
if (not easygui.ynbox('Please read the following terms: 1. The game caused by various physical reason 2 shall not be liable for any game without permission prohibited reproduced and adaptation of the source code!', 'Read the terms and conditions', ('I agree to the terms of the game', "I don't agree to the terms of the game"))):
easygui.msgbox("sorry,You can't play it through the verification, you will not be able to play!", 'Unable to play, the reason: players refused terms!', 'Quit the game')
else:
easygui.msgbox('In "console", please enter your id number! We\'ll make sure not to disclose your personal information!', 'Authentication (id)', 'I want to enter id')
if (len(input('Your id code')) == 18):
easygui.msgbox('You have already completed the registration, the system will automatically assign your user name!')
else:
easygui.msgbox("I'm sorry, but you can't through id authentication, you will not be able to play!", "Can't play, reason: id number error", 'Quit the game')
else:
easygui.msgbox("sorry,You can't play it through the verification, you will not be able to play!", 'Unable to play, the reason: the player is robot, not human, cannot verify through the game!', 'Quit the game')
else:
if (not easygui.ynbox('你是?', '机器人和人类验证', ('我是机器人', '我是人类'))):
if (not easygui.ynbox('请你阅读以下条款:1.游戏导致的各种物理原因概不负责 2.游戏未经允许禁止转载和改编源代码!', '阅读条款', ('我同意游戏条款', '我不同意游戏条款'))):
easygui.msgbox('对不起,你无法通过游戏验证,你将无法进行游玩!', '无法进行游戏,原因:玩家拒绝了条款!', '退出游戏')
else:
easygui.msgbox('请在“控制台“输入您的身份证号!我们保证不会将您的个人信息泄露!', '身份验证(身份证)', '我要输入身份证')
if (len(input('你的身份证代码')) == 18):
easygui.msgbox('你已经完成了注册,系统将自动分配您的用户名!')
else:
easygui.msgbox('对不起,你无法通过身份证验证,你将无法游玩!', '无法进行游戏,原因:身份证号码错误', '退出游戏')
else:
easygui.msgbox('对不起,你无法通过游戏验证,你将无法进行游玩!', '无法进行游戏,原因:玩家是机器人,不是人类,不可通过游戏验证!', '退出游戏')
【提示】
部分含有Python第三方库相关内容的作品,在海龟编辑器网页端无法运行哦!如遇到这种情况,可以打开下面的链接,下载海龟编辑器客户端:
https://python.codemao.cn
UseRPG好简单的验证。。。。。。要是编译成exe的话我分分钟破解
//这边说下破解思路
//打开od 运行程序 在输入框中瞎输入字符
//获取到错误窗口之后 进行中文输入筛选 筛选出错误信息的字符串
//之后找到错误信息的内存地址 用nop填充
//再次运行 就OK了点赞0
评论