SA-MP Forums Archive
Help - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Help (/showthread.php?tid=237032)



Help - ElChapoGuzman - 08.03.2011

The current max money on my server is 1,000,000 so if anyone has more then that ammount it sends a message to admin saying he is a hacker no ban for strcmp please


Re: Help - Davz*|*Criss - 08.03.2011

https://sampwiki.blast.hk/wiki/GetPlayerMoney


Re: Help - Stigg - 08.03.2011

This might help you out, or at least give you an idea on how its done.

https://sampforum.blast.hk/showthread.php?tid=151100


Re: Help - ElChapoGuzman - 08.03.2011

Quote:
Originally Posted by Stigg
Посмотреть сообщение
This might help you out, or at least give you an idea on how its done.

https://sampforum.blast.hk/showthread.php?tid=151100
i need it to send the admin a message and thats the thing i dont know how to do


Re: Help - Stigg - 08.03.2011

Make yourself something like this to go with it.

pawn Код:
new kickname[MAX_PLAYER_NAME];
GetPlayerName(playerid,kickname,sizeof(kickname));
new kicktxt[128];
format(kicktxt,sizeof(kicktxt),"%s Has Been Kicked By System Admin.",kickname);
SendClientMessageToAll(COLOR,kicktxt);