Discord: sensais
- https://qiwi.com/n/SENSAIS
- USDT Tether 0xEa402B237b92271A1EBe9A1011Eb42492228D61E
- Check every player for fake steamid or other something(100% protection)
- Have config file for change AppId
- Nosteam players are not displayed in server list to avoid ban
| System | Status |
|---|---|
| Windows | ✅ |
| Linux | ✅ |
Check player
IsSteam(ulong steamid)
IsSteam(Connection connection)
IsSteam(BasePlayer player)bool IsPlayersSteam(BasePlayer player)
{
if(Call<bool>("IsSteam", player) == true)
return true;
return false;
}Returning a non-null value kick player with reason as value.
object OnBeginPlayerSession(Connection connection, bool isLicense)
{
string status = isLicense ? "steam" : "nosteam";
Puts($"{connection.userid} is {status} player c:");
return null;
}Harmony patcher used in the project