6 个版本

0.2.3 2020 年 1 月 20 日
0.2.2 2020 年 1 月 16 日
0.1.1 2020 年 1 月 16 日

5#credits

MIT 许可证

9KB
79 行代码(不含注释)

Released API docs Build Status License: MIT

RoCheck

将 grilme99 的 RoCheck 模块实现为 Rust。感谢他使用的该方法。

安装

[dependencies]
rocheck = "0.2"

使用方法

使用 RoCheck 很简单,只需输入几个值,然后就可以使用!

use rocheck::RoCheck;

async fn check() -> Result<(), Box<dyn std::error::Error>> {
	let client = RoCheck::new("Your Bot Token");

	let test_ip = "127.0.0.1";
	let job_id = "SomeLongStringOfCharactersShouldGoHere";
	let place_id = 123456;

	let is_roblox = client.verify_ip(place_id, job_id, test_ip).await?;

	if is_roblox {
		println!("Hoorah! You're a real roblox server!");
	}

	Ok(())
}

依赖

~8–13MB
~261K SLoC