I need a script
That allows the administrator to:
Kick
Ban
Restart round
Change Map
I cannot find anything that is simple and doesnt have loads of commands or adds color
Just limited to those 4 maybe 5-6 more
But not like tlex and stuff
Scripts
I need a specific administration script
I need a specific administration script
LeProdigy has written
omg has written
sheeL has written
LeProdigy has written
omg: They want the cool features that some admin scripts have. That's why they want their own system. addhook("say","commands")
function commands(id,txt)
local p = totable(txt)
local cmd = tostring(p[1])
local pl = tonumber(p[2])
for _, k in ipairs(admins) do
if player(id,"usgn") == k then
		if cmd == "@kick" then
	 parse("kick "..pl)
			return 1
	 elseif cmd == "@ban" then
				parse("banip "..pl)
				return 1
			 elseif cmd == "@changemap" then
				 txt = string.sub(txt,11)
				 parse("map "..txt)
				 return 1
		 elseif cmd =="@restart" then
			 parse("restart")
			 return 1
end
end
end
end
Yates: so, typing "!ban [id]" is shorter than "/ban [id]"?
sheeL: There is a button on your keyboard that looks like this...
LeProdigy:
Hador has written
Jynxxx: I did not understand what do you mean ...
sheeL:
sheeL: Your script is pure shit.