Can i be admin? = Kick(playerid); - 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: Can i be admin? = Kick(playerid); (
/showthread.php?tid=130429)
Can i be admin? = Kick(playerid); -
OutlawAK - 26.02.2010
I want to know how it s possible to kick someone who asked in chat or pm: - can i be admin pls? or - can i be admin
Re: Can i be admin? = Kick(playerid); -
Eazy_Efolife - 26.02.2010
Код:
public OnPlayerText(playerid, text[])
{
if (strcmp("Can I be admin pls?", text, true, 10) == 0)
{
Kick(playerid);
}
}