Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <a_samp>
- #include <sscanf2>
- #include <kolory>
- #include <zcmd>
- CMD:kick(playerid, params[])
- {
- new id, reason[64];
- if(sscanf(params, "ds[64]", id, reason))
- {
- return SendClientMessage(playerid, COLOR_GREEN, "Uzyj /kick id powod");
- }
- if(!IsPlayerConnected(id))
- {
- return SendClientMessage(playerid, COLOR_GREEN, "Gracz o wpisanym ID nie jest podlaczony do serwera!");
- }
- Kick(id);
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment