Forum

> > CS2D > Scripts > Lets Talk I Need You
ForenübersichtCS2D-Übersicht Scripts-ÜbersichtEinloggen, um zu antworten

Englisch Lets Talk I Need You

4 Antworten
Zum Anfang Vorherige 1 Nächste Zum Anfang

alt Lets Talk I Need You

Tactical_Z
User Off Offline

Zitieren
Do you Know how to make your clan door and clan floor like what Yates did in His map for the FG Clan. They Had Their own house for the FG Clan In cs2d?

alt Re: Lets Talk I Need You

DC
Admin Off Offline

Zitieren
"Lets Talk I Need You"?! seriously? that's a clever title for your problem in your opinion? that describes your problem?

please think again and change your title to something which actually describes your problem please.

alt Re: Lets Talk I Need You

RAVENOUS
BANNED Off Offline

Zitieren
You can do it with Lua and a table, containing all USGN IDs of your clan members. So, only clan users can are able to open a door or something else.

alt Re: Lets Talk I Need You

sixpack
User Off Offline

Zitieren
@DC Smart Title so everyone will read the topic out of pure curiosity

@Tactical_Z You just make this house for Admins and then you use Lua. You can make it in an other way (add a door that can be triggered via rCon) but it's not recommended.

alt Re: Lets Talk I Need You

Yates
Reviewer Off Offline

Zitieren
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Admins = {USGN(s) HERE!}

function inusgn(id)
	local us = player(id,"usgn")
	for i, v in pairs(Admins) do
		if us == tonumber(v) then
			return true
		end
	end
	return false
end

addhook("spawn","spawnn")
function spawnn(i)
	if inusgn(i) then
		parse("setpos "..i.." Xpixels Ypixels")
	return 0
	end
end
What am wondering is, why didn't you just ask me in the PM?
Zum Anfang Vorherige 1 Nächste Zum Anfang
Einloggen, um zu antworten Scripts-ÜbersichtCS2D-ÜbersichtForenübersicht