Forum

> > CS2D > Scripts > Difference classes for T and CT ?
Forums overviewCS2D overview Scripts overviewLog in to reply

English Difference classes for T and CT ?

15 replies
To the start Previous 1 Next To the start

old Re: Difference classes for T and CT ?

DevGru
User Off Offline

Quote
user Yates has written
He wants a script that let's T's have classes and CT's have different ones.

How is that hard to understand?


It is different how you explained it and he explained it. Your English is better than his because you are English, dumbfuck.

old Re: Difference classes for T and CT ?

Yates
Reviewer Off Offline

Quote
user DevGru has written
It is different how you explained it and he explained it. Your English is better than his because you are English, dumbfuck.

Instead of calling me a dumbfuck, which I am not. Try reading his post, it clearly says that each team (T and CT) will have different classes. So you should rethink who you call a dumbfuck.
More >

Also, the title would be enough to understand what he wants. Or would you like a word .doc to explain in 2 pages what he wants, hm?

old Re: Difference classes for T and CT ?

DannyDeth
User Off Offline

Quote
@Otter Team 9:
Yates isn't a dumbfuck, you are. You are like Erik's little brother.

Better add that you are very incompetent at speaking any language, I'm sure you can only barely speak your native tongue. It's obvious the guy wants different classes for different teams because that is EXACTLY what he said.

old Re: Difference classes for T and CT ?

palomino
User Off Offline

Quote
user DevGru has written
user Yates has written
He wants a script that let's T's have classes and CT's have different ones.

How is that hard to understand?


It is different how you explained it and he explained it. Your English is better than his because you are English, dumbfuck.

His English is fine, I understood what he said. Jeez.

old Re: Difference classes for T and CT ?

EngiN33R
Moderator Off Offline

Quote
@user DevGru: Yates' and phihung's explanations are the same.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
function classmenu(id,t)
	if (t==1) then
		menu(id,"Classes 1,Derp,Herp,Derpina")
	elseif (t==2) then
		menu(id,"Classes 2,Durp,Hurp,Durpane")
	end
end

addhook("serveraction","clmenuopen")
function clmenuopen(id,a)
	if (a==1) then
		classmenu(id,player(id,"team"))
	end
end

And the rest I'm sure you'll be able to figure out - by rest I mean the choosing of classes etc.

old Re: Difference classes for T and CT ?

Apache uwu
User Off Offline

Quote
user phihung940 has written
user Infinite Rain has written
I can make,
Tell me classe for CT and T and give me abilities of this classes


I can do this, I just need a template to work with...


Let me guess, by 'template' you mean a completed script with just [weaponid] as fields to set.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
function classmenu(id,t)
	if (t==1) then
		menu(id,"Classes 1,Derp,Herp,Derpina")
	elseif (t==2) then
		menu(id,"Classes 2,Durp,Hurp,Durpane")
	end
end

addhook("serveraction","clmenuopen")
function clmenuopen(id,a)
	if (a==1) then
		classmenu(id,player(id,"team"))
	end
end

addhook("menu","_menu")

function _menu(id,title,button)
	if player(id,"team")==1 then
		if button==1 then
			--class for Terrorist-Derp
		elseif button==2 then
			--class for Terrorist-Herp
		elseif button==3 then
			--class for Terrorist-Derpina
		end
	elseif player(id,"team")==2 then
		if button==1 then
			--class for C-Terrorist-Derp
		elseif button==2 then
			--class for C-Terrorist-Herp
		elseif button==3 then
			--class for C-Terrorist-Derpina
		end
	end
end

You just need to equip them via:

1
parse("equip "..id.." 51") --grenade

Btw this isn't a "template" this is the completion of the script, you're just too lazy.
To the start Previous 1 Next To the start
Log in to reply Scripts overviewCS2D overviewForums overview