02.09.2015, 16:24
How i can to get through in SA folder for player who use CLEO? I like to kick player if someone folder in SA folder call CLEO but how i can do that , please help , tnx everyone and sorry for my bad English
|
An old method of detecting sobiet, is through camera!
But you can always build a plug-in for anti cheat such like: https://sampforum.blast.hk/showthread.php?tid=268052 |
public OnPlayerCleoDetected( playerid, cleoid )
{
switch( cleoid )
{
case CLEO_FAKEKILL:
{
SendClientMessage( playerid, -1, "You are fake killing." );
BanEx( playerid, "Fake kill" );
}
case CLEO_CARWARP:
{
SendClientMessage( playerid, -1, "You are car warping." );
BanEx( playerid, "Car Warp" );
}
case CLEO_CARSWING:
{
SendClientMessage( playerid, -1, "You are car swinging" );
BanEx( playerid, "Car Swing" );
}
case CLEO_CAR_PARTICLE_SPAM:
{
SendClientMessage( playerid, -1, "You are partical spamming" );
BanEx( playerid, "Car Particle Spam" );
}
}
return 1;
}