Forum

> > CS2D > Scripts > admin commands
Forums overviewCS2D overview Scripts overviewLog in to reply

English admin commands

6 replies
To the start Previous 1 Next To the start

old admin commands

DarkSucker
BANNED Off Offline

Quote
hi guys plss help i need some commands admin like !goto !bring !kick !ban !report !info i need that for my server who can help me pls?

old Re: admin commands

buraxia3
User Off Offline

Quote
You need make lua for it. DC doesn't added it in CS2D. But still there is usefull commands in console.

old Re: admin commands

DC
Admin Off Offline

Quote
kick and ban are regular commands which can be entered in the console without using any Lua (on remote servers using cs2d cmd rcon)

cs2d cmd kick
cs2d cmd banip
cs2d cmd banname
cs2d cmd banusgn

I recommend to search the Lua script file archive for CS2D. there are MANY admin scripts.

old Re: admin commands

Apache uwu
User Off Offline

Quote
Here you can start creating your own lua. Click more it's very long.

More >
edited 1×, last 05.08.11 10:30:31 am

old Re: admin commands

buraxia3
User Off Offline

Quote
user Apache uwu has written
Here you can start creating your own lua. Click more it's very long.

More >

To easy thanks! He is newbie. I think he can't understand that easily

old Re: admin commands

AlphaCheeryo
User Off Offline

Quote
user DC has written
kick and ban are regular commands which can be entered in the console without using any Lua (on remote servers using cs2d cmd rcon)

cs2d cmd kick
cs2d cmd banip
cs2d cmd banname
cs2d cmd banusgn

I recommend to search the Lua script file archive for CS2D. there are MANY admin scripts.


OMG! DC

old Re: admin commands

DragonAwper
User Off Offline

Quote
× Warning: It's not Tested!

Here i will show how to create a simple admin system,
that the admin will can kick. If you want, you can create Others Functions.

1. You have to create a usgn admin system.

1
2
3
4
5
6
7
8
9
10
11
isadmin=initArray(32)

addhook("spawn","onspawn")

function onspawn(id)
	for id = 1,32 do
		if player(id,"usgn") == |Your usgn| then
		isadmin[id] = 1
		end
	end
end

2. Create a Kick System

> I used string.sub functions.

See more in my Topic

1
2
3
4
5
6
function saykick(id, t)
	if isadmin[id] = 1 and t:sub(1,5)=="!kick" then
		kid=tonumber(t:sub(7,8))
		parse("kick "..kid)
	end
end

> What this Script do?

Okay, this script will know if the player has the admin usgn
If the player has, so he will can use the kick system, else
the player will cannot

To use the kick system just say:

!kick |ID of the Player that will be kicked|

Example: !kick 4

That's all, I hope i helped you.
To the start Previous 1 Next To the start
Log in to reply Scripts overviewCS2D overviewForums overview