Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public OnPlayerCheat(playerid, cheattype) // Callback principal
- {
- switch(cheattype)
- {
- case AC_CHEAT_HEALTH:
- {
- SendClientMessageToAll(-1, "[CHEAT] Vida do player modificada");
- }
- case AC_CHEAT_HEALTH_CNOR:
- {
- SendClientMessageToAll(-1, "[CHEAT] Vida do jogador maior que 100.0");
- }
- case AC_CHEAT_ARMOUR:
- {
- SendClientMessageToAll(-1, "[CHEAT] Colete do player modificado");
- }
- case AC_CHEAT_ARMOUR_CNOR:
- {
- SendClientMessageToAll(-1, "[CHEAT] Colete do jogador maior que 100.0");
- }
- case AC_CHEAT_TELEPORT:
- {
- SendClientMessageToAll(-1, "[CHEAT] TP do jogador.");
- }
- case AC_CHEAT_AIRBRAKE:
- {
- SendClientMessageToAll(-1, "[CHEAT] Jogador usando airbrake.");
- }
- case AC_CHEAT_FAKEKILL:
- {
- SendClientMessageToAll(-1, "[CHEAT] Jogador usando fakekill.");
- }
- case AC_CHEAT_FLYHACK:
- {
- SendClientMessageToAll(-1, "[CHEAT] Jogador usando flyhack.");
- }
- case AC_CHEAT_CARHH:
- {
- SendClientMessageToAll(-1, "[CHEAT] Jogador usando vhh.");
- }
- case AC_CHEAT_CARWARP:
- {
- SendClientMessageToAll(-1, "[CHEAT] Jogador usando carwarp.");
- }
- }
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment