本帖最后由 guoxiaomi 于 2020-4-11 00:24 编辑
我想到了一个很好的解决方案:
1. 首先你要找到一个能生成统计博客访问数小插件的网站,比如:https://24counter.com/,生成一段静态的统计代码,注意里面的2个网址:
- <a target="_blank" href="https://24counter.com/cc_stats/1586531865/"><img alt="hit counter" border="0" src="https://24counter.com/online/ccc.php?id=1586531865"></a><br>
- <a href="https://24counter.com">hit counter</a>
-
复制代码
2. 在你的游戏里用 URLDownloadToCacheFile 访问这个统计代码里的域名:https://24counter.com/online/ccc.php?id=1586531865
我从游戏版本检查 V2.0 By :VIPArcher里抄了一段代码:
URLDownloadToCacheFile = Win32API.new('Urlmon', 'URLDownloadToCacheFile', 'ippiii', 'i') Counter_Url = "https://24counter.com/online/ccc.php?id=1586531865" URLDownloadToCacheFile.call(0, "#{Counter_Url}&t=#{rand(10)}", buf = "\0" * 1024, 1024, 0, 0)
URLDownloadToCacheFile = Win32API.new('Urlmon', 'URLDownloadToCacheFile', 'ippiii', 'i')
Counter_Url = "https://24counter.com/online/ccc.php?id=1586531865"
URLDownloadToCacheFile.call(0, "#{Counter_Url}&t=#{rand(10)}", buf = "\0" * 1024, 1024, 0, 0)
然后访问 https://24counter.com/cc_stats/1586531865/ 就可以看到相关的统计信息了
1. 如果 https 不行可以改成 http,或者你去找其他的可以访问网页的脚本
2. 这个网站国内访问不知道快不快,你可以找找国内的一些类似网站代替 |