Forum

> > CS2D > Scripts > admin commands
ForenübersichtCS2D-Übersicht Scripts-ÜbersichtEinloggen, um zu antworten

Englisch admin commands

6 Antworten
Zum Anfang Vorherige 1 Nächste Zum Anfang

alt admin commands

DarkSucker
BANNED Off Offline

Zitieren
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?

alt Re: admin commands

buraxia3
User Off Offline

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

alt Re: admin commands

DC
Admin Off Offline

Zitieren
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.

alt Re: admin commands

Apache uwu
User Off Offline

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

Mehr >
1× editiert, zuletzt 05.08.11 10:30:31

alt Re: admin commands

buraxia3
User Off Offline

Zitieren
user Apache uwu hat geschrieben
Here you can start creating your own lua. Click more it's very long.

Mehr >

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

alt Re: admin commands

AlphaCheeryo
User Off Offline

Zitieren
user DC hat geschrieben
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

alt Re: admin commands

DragonAwper
User Off Offline

Zitieren
× 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.
Zum Anfang Vorherige 1 Nächste Zum Anfang
Einloggen, um zu antworten Scripts-ÜbersichtCS2D-ÜbersichtForenübersicht