Skip to content

PatrickGTR/OnPlayerFly

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 

Repository files navigation

Introduction

This include is created for San Andreas Online Multiplayer Community, this include detects a player who is using s0biet fly hack or any fly hack programs that works in Grand Theft Auto San ndreas. This include has a callback called OnPlayerFly this callback is called when someone is using Fly Hacks, in this case you can do what ever you want underneath this callback you can either ban/kick/warn the player who uses Fly Hacks.

Credits

Callback

public OnPlayerFly( playerid )
{
	Ban(playerid);
	SendClientMessage(playerid, -1, "You have been banned for fly hacking.");
	return true;
}