Forum

> > CS2D > Scripts > Lets Talk I Need You
Forums overviewCS2D overview Scripts overviewLog in to reply

English Lets Talk I Need You

4 replies
To the start Previous 1 Next To the start

old Lets Talk I Need You

Tactical_Z
User Off Offline

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

old Re: Lets Talk I Need You

DC
Admin Off Offline

Quote
"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.

old Re: Lets Talk I Need You

RAVENOUS
BANNED Off Offline

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

old Re: Lets Talk I Need You

sixpack
User Off Offline

Quote
@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.

old Re: Lets Talk I Need You

Yates
Reviewer Off Offline

Quote
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?
To the start Previous 1 Next To the start
Log in to reply Scripts overviewCS2D overviewForums overview