赞 | 12 |
VIP | 107 |
好人卡 | 6 |
积分 | 4 |
经验 | 31122 |
最后登录 | 2024-6-29 |
在线时间 | 1606 小时 |
Lv2.观梦者 傻♂逼
- 梦石
- 0
- 星屑
- 374
- 在线时间
- 1606 小时
- 注册时间
- 2007-3-13
- 帖子
- 6562
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
原创!!(第1次启动时需要CD-KEY)
下载:http://rpg.blue/upload_program/files/stargamekey.rar
vb.net做的,使用需安装.net支持包
使用方法:
用记事本打开reg.key在第一行输入序列号,目前只支持1个序列号。在第一行写
把整个游戏拷贝至game目录
文件列表及说明:
+游戏目录
+game.exe (游戏启动程序)
--game (dir游戏程序)
-----------------------------------------------
由于都是一样的软件所以存放CD-KEY验证的地方都一样
故A用本程序通过验证
B使用本程序就不需要验证
明天我会把存放CD-KEY验证可更改版本发上来
-------------------------------------------------
免责声明:
作者不威逼、利诱任何人使用本程序故,由本程序引出的任何争议及法律问题作者不对此付任何法律责任!!!
-------------------------------------------------------------
源代码:
- Imports Microsoft.Win32
- Public Class Form1
- Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
- Me.Hide()
- Dim exists As Boolean = False
- Try
- If My.Computer.Registry.CurrentUser.OpenSubKey("Software\game\reg") IsNot Nothing Then rem 注册表中的位置
- exists = True
- Dim aa As String
- aa = My.Application.Info.DirectoryPath & "\game\" & "game.exe"
- Shell(aa)
- End
- End If
- Finally
- Dim yy As String
- My.Computer.Registry.CurrentUser.Close()
- Dim fileContents As String
- yy = My.Application.Info.DirectoryPath & "\" & "reg.key" rem 秘匙存放位置
- fileContents = My.Computer.FileSystem.ReadAllText(yy)
- Dim a As String = InputBox("输入cd-key")
- If a = fileContents Then
- Dim newKey As RegistryKey
- newKey = My.Computer.Registry.CurrentUser.CreateSubKey("Software\game\reg") rem 注册表中的位置
- Dim aa As String
- aa = My.Application.Info.DirectoryPath & "\game\" & "game.exe"
- Shell(aa)
- End
- Else
- MsgBox("您输入的cd-key:" & a & "错误!")
- End
- End If
- End Try
- End Sub
- End Class
复制代码
下载:http://rpg.blue/upload_program/files/stargamekey.rar
如果您有装vb.net只要将标注部分(即rem 的后面为标注)修改为自己的路径即不会出现上面提到的
故甲玩A游戏用本程序通过验证
甲玩B游戏使用本程序就不需要验证 |
|