Forum

> > CS2D > Scripts > !bring, !goto commands (admin)
Forums overviewCS2D overview Scripts overviewLog in to reply

German !bring, !goto commands (admin)

2 replies
To the start Previous 1 Next To the start

old !bring, !goto commands (admin)

francis007
BANNED Off Offline

Quote
Hey leute

ich brauch mal wider ein script mit !goto and !bring commands für admins also wenn man !goto id sagt dan teleporte ich zu den gewünschten spieler und wenn ich !bring id sage dan wird der gewünschte spieler zu mir teleportiert also bitte schreibt den ganzen script in den kommentaren das wäre echt super

Danke im voraus!

(ich habe im suchfunktion gesucht aber nix gefunden)

old Re: !bring, !goto commands (admin)

Alpha Beta
User Off Offline

Quote
Hab ich mal kurz gemacht.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
teleport = {}
teleport.admins = {127266}

addhook("say", "teleport.say")
function teleport.say(id, txt)
	for i=1, #teleport.admins do
		if (player(id, "usgn") == teleport.admins[i]) then
			if (txt:sub(1, 5) == "!goto") then
				parse("setpos "..id.." "..player(txt:sub(7,#txt), "x").." "..player(txt:sub(7,#txt), "y"))
				return 1
			elseif (txt:sub(1, 6) == "!bring") then
				parse("setpos "..txt:sub(8,#txt).." "..player(id, "x").." "..player(id, "y"))
				return 1
			end
		end	
	end
end
edited 1×, last 04.06.15 07:10:49 pm
To the start Previous 1 Next To the start
Log in to reply Scripts overviewCS2D overviewForums overview