• 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Pawn] How to detect sampcac
#1
I need a script to detect if the player is using sampcac

I try to use sampcac.inc and sampac.inc, but I have no idea how to use this
  Reply
#2
if you still need it:


Code:
stock PlayerName(playerid)
{
new target_name[MAX_PLAYER_NAME];
GetPlayerName(playerid,target_name,MAX_PLAYER_NAME);
return target_name;
}

public OnPlayerConnect(playerid)
{
new string[128];
format(string, sizeof(string), "%s has joined the server with sampcac." PlayerName(playerid));

if (CAC_GetStatus(playerid))
SendClientMessageToAll(-1, string);

return 1;
}
  Reply


Forum Jump: