[GameMode] Los Santos Cops n Robbers - From Scratch
#24

Quote:
Originally Posted by Sensitive
View Post
Theres no /ban, /kick cmd and /infect ...
What? Type /adcmds in game, that'll explain everything. But just to prove to you:
Code:
cmd(adkick, playerid, params[])
{
	new ID; new pname[24]; new string[120]; new opname[24]; new reason;
	if(GetPVarInt(playerid, "AdminLevel") == 0) return 0;
	if(sscanf(params, "uz", ID, reason)) return SendClientMessage(playerid, COLOR_ERROR, "Usage: /adkick (ID) (reason)");
    if(!IsPlayerConnected(ID)) return SendClientMessage(playerid, COLOR_ERROR, "Invalid ID.");
	GetPlayerName(playerid, pname,24); GetPlayerName(ID, opname, 24);
	format(string, 120, "[ADMIN KICK] %s(%d) %s", opname, ID, reason);
	SendClientMessageToAll(COLOR_ADMIN, string);
	IRC_Say(gGroupID, IRC_CHANNEL, string);
	format(string, 120, "[ADMIN ACTION] Admin %s(%d) has kicked %s(%d) %s", pname, playerid, opname, ID, reason);
	SendAdminMessage(string);
	IRCAdmin(string);
	Kick(ID);
	return 1;
}
cmd(adban, playerid, params[])
{
    new ID; new pname[24]; new string[120]; new opname[24]; new reason;
	if(GetPVarInt(playerid, "AdminLevel") == 0) return 0;
	if(sscanf(params, "uz", ID, reason)) return SendClientMessage(playerid, COLOR_ERROR, "Usage: /adban (ID) (reason)");
    if(!IsPlayerConnected(ID)) return SendClientMessage(playerid, COLOR_ERROR, "Invalid ID.");
	GetPlayerName(playerid, pname,24); GetPlayerName(ID, opname, 24);
	format(string, 120, "[ADMIN BAN] %s(%d) %s", opname, ID, reason);
	SendClientMessageToAll(COLOR_ADMIN, string);
	IRC_Say(gGroupID, IRC_CHANNEL, string);
	format(string, 120, "[ADMIN ACTION] Admin %s(%d) has banned %s(%d) %s", pname, playerid, opname, ID, reason);
	SendAdminMessage(string);
	IRCAdmin(string);
	SendClientMessage(ID, COLOR_RED, "You have been Admin Banned. If you wish to appeal this ban, go to our website.");
	SendClientMessage(ID, COLOR_RED, "Please note that Hackers do not get unbanned.");
	format(string, 120, "Banned by %s for the reason of: %s", pname, reason);
	BanEx(ID, string);
	return 1;
}
It's all there. ALL Of it. Don't say you can't use it. It's there. Fully tested.


And, @GodHimself: I made this thing from scratch. I didn't copy/paste code into it. I made it from Scratch.. using parts of Stevo127's SFCRRPG script as a guide, since it was my first script of such magnitude. Not once did I copy/paste code, or copy it directly.

Mariosv: Look at the previous posts. I answered the "HOW TO MAKE SOMEONE ADMIN" thing. Just edit the player file: "AdminLevel=0" to "AdminLevel=1337" When you login/register, it creates a file named (PLAYERNAME).dudb.sav

Open that in notepad. Edit the lines. Simple.

Make sure you have a "Scriptfiles" folder. If you don't, I don't think it'll save.


And thanks guys, didn't think this was that good. I know there's a few bugs, but since I started school back, I'll work on them when I get the time. Continue having fun with it, expect an update soon.. if I get around to it.
Reply


Messages In This Thread
[0.3e]LS Cops and Robbers (1.2 - Update September 16th, 2012) - by Karagon - 26.07.2011, 15:04
Re: Los Santos Cops n Robbers - From Scratch - by selten98 - 26.07.2011, 15:07
Re: Los Santos Cops n Robbers - From Scratch - by Karagon - 26.07.2011, 15:09
Re: Los Santos Cops n Robbers - From Scratch - by sam1929 - 26.07.2011, 15:19
Re: Los Santos Cops n Robbers - From Scratch - by blackguard3 - 02.08.2011, 19:19
Re: Los Santos Cops n Robbers - From Scratch - by xPhantom - 02.08.2011, 19:31
Re: Los Santos Cops n Robbers - From Scratch - by Karagon - 03.08.2011, 21:55
Re: Los Santos Cops n Robbers - From Scratch - by Chrillzen - 04.08.2011, 01:28
Re: Los Santos Cops n Robbers - From Scratch - by Karagon - 04.08.2011, 02:01
Re: Los Santos Cops n Robbers - From Scratch - by GamerXCrrpg - 04.08.2011, 10:42
Re: Los Santos Cops n Robbers - From Scratch - by Infamous - 04.08.2011, 10:44
Re: Los Santos Cops n Robbers - From Scratch - by Karagon - 04.08.2011, 16:42
Re: Los Santos Cops n Robbers - From Scratch - by VoidTheFate - 07.08.2011, 15:31
Re: Los Santos Cops n Robbers - From Scratch - by Karagon - 08.08.2011, 02:03
Re: Los Santos Cops n Robbers - From Scratch - by Famalamalam - 08.08.2011, 02:22
Re: Los Santos Cops n Robbers - From Scratch - by Donya - 08.08.2011, 02:50
Re: Los Santos Cops n Robbers - From Scratch - by FaSihYouSf - 08.08.2011, 02:51
Re: Los Santos Cops n Robbers - From Scratch - by Famalamalam - 08.08.2011, 03:14
Re: Los Santos Cops n Robbers - From Scratch - by -CaRRoT - 08.08.2011, 05:16
Re: Los Santos Cops n Robbers - From Scratch - by Collin - 08.08.2011, 07:20
Re: Los Santos Cops n Robbers - From Scratch - by Godhimself - 08.08.2011, 07:44
Re: Los Santos Cops n Robbers - From Scratch - by mariosv819 - 08.08.2011, 11:29
Re: Los Santos Cops n Robbers - From Scratch - by Sensitive - 08.08.2011, 14:28
Re: Los Santos Cops n Robbers - From Scratch - by Karagon - 08.08.2011, 21:32
Re: Los Santos Cops n Robbers - From Scratch - by svaba - 09.08.2011, 18:52
Re: Los Santos Cops n Robbers - From Scratch - by Karagon - 09.08.2011, 19:47
Re: Los Santos Cops n Robbers - From Scratch - by Cpt.Markus - 09.08.2011, 20:08
Re: Los Santos Cops n Robbers - From Scratch - by Karagon - 09.08.2011, 21:13
Re : Los Santos Cops n Robbers - From Scratch - by Baba_oweo - 04.12.2011, 20:33
Re: Re : Los Santos Cops n Robbers - From Scratch - by Karagon - 05.12.2011, 01:22
Re: Los Santos Cops n Robbers - From Scratch - by DjoleRazbijac - 30.04.2012, 20:56
Re: Los Santos Cops n Robbers - From Scratch - by [Cali]ChrOnic - 07.05.2012, 10:58
Re: Los Santos Cops n Robbers - From Scratch - by sscarface - 07.05.2012, 11:02
Re: Los Santos Cops n Robbers - From Scratch - by Skavanovski - 07.05.2012, 16:52
Re: Los Santos Cops n Robbers - From Scratch - by Karagon - 07.05.2012, 20:37
Re: Los Santos Cops n Robbers - From Scratch - by DjoleRazbijac - 14.05.2012, 22:10
Re: Los Santos Cops n Robbers - From Scratch - by pasha97 - 15.05.2012, 03:27
Re: Los Santos Cops n Robbers - From Scratch - by Samp_India - 15.05.2012, 03:28
Re: Los Santos Cops n Robbers - From Scratch - by $$inSane - 18.05.2012, 08:55
Re: Los Santos Cops n Robbers - From Scratch - by DjoleRazbijac - 24.05.2012, 20:50
Re: Los Santos Cops n Robbers - From Scratch - by professionalkiller - 13.09.2014, 12:52
Re: Los Santos Cops n Robbers - From Scratch - by professionalkiller - 13.09.2014, 13:02
Re: Los Santos Cops n Robbers - From Scratch - by tol2ino - 21.03.2017, 09:25
Re: Los Santos Cops n Robbers - From Scratch - by jasper091 - 13.04.2018, 16:56
Re: Los Santos Cops n Robbers - From Scratch - by Eduardof077 - 14.04.2018, 06:15

Forum Jump:


Users browsing this thread: 6 Guest(s)