Upvote Upvoted 16 Downvote Downvoted
1 2
Player Configs
posted in Customization
31
#31
-1 Frags +
clckwrki have no idea what any of that means

never mind you go into scripts -> clientscheme or whatever and you make the crosshair visible ie place a 1

hudlayout.res*

[quote=clckwrk]i have no idea what any of that means

never mind you go into scripts -> clientscheme or whatever and you make the crosshair visible ie place a 1[/quote]
hudlayout.res*
32
#32
0 Frags +

Woah that's it.

I'm looking at a bunch of stuff starting with "CrossHairKonrWings" and ending with the section below "CrossHairQPlus". If I copy+paste this directly into scout config, will I need anything else to use the crosshair?

I'll also have to figure out some "alias" line so that I can disable it in the other class configs.

Woah that's it.

I'm looking at a bunch of stuff starting with "CrossHairKonrWings" and ending with the section below "CrossHairQPlus". If I copy+paste this directly into scout config, will I need anything else to use the crosshair?

I'll also have to figure out some "alias" line so that I can disable it in the other class configs.
33
#33
0 Frags +
Bentomatwhole bunch of text

HUD crosshairs are in your HUD, you can't make them part of a tf2 config file (without using minmode (because you can make xhairs visible in minmode, and not in "normal"mode, and crosshairs visible in "normal"mode not visible in minmode) or the achievement tracker thing(?I'm not really sure how this works, or even if I'm calling it the right thing), and then still there are part of your hud, but you are "cheating the system" a bit).

in the scripts folder there is a hudlayout file (which you can open in notepad) and each hud crosshair for the hud is in there, and labeled. To enable one of the hud crosshairs, you look for the

"visible" "0"

you change the 0 to a 1, and you have a hud crosshair, if it is not center, or it is cut off, fiddle with these

"xpos" "c-100"
"ypos" "c-97"
"wide" "201"
"tall" "200"

if the tall and wide aren't big enough, part of your xhair will be cut off.
if you want to change the color look for the line that says

"fgcolor" "0 255 0 255"

it's written in rgb so the first value (a 0 in this case) is the red, the next number is the green, and the 3rd number is the blue. The last number is transparency. A value of 1 is hardly visible whereas a value of 255 is completely opaque. (Special thanks to delpo)

if you see this

"enabled" "0"

your hud xhair will be black( at least for me ) so change it to this!!!

"enabled" "1"

please excuse my grammar and dull writing!
p.s. if anything in here is wrong, let me know and I'll change it (or if someone comments about the achievement tracker thing, or the 4th number in fgcolor)

[quote=Bentomat]whole bunch of text[/quote]
HUD crosshairs are in your HUD, you can't make them part of a tf2 config file (without using minmode (because you can make xhairs visible in minmode, and not in "normal"mode, and crosshairs visible in "normal"mode not visible in minmode) or the achievement tracker thing(?I'm not really sure how this works, or even if I'm calling it the right thing), and then still there are part of your hud, but you are "cheating the system" a bit).

in the scripts folder there is a hudlayout file (which you can open in notepad) and each hud crosshair for the hud is in there, and labeled. To enable one of the hud crosshairs, you look for the

"visible" "0"

you change the 0 to a 1, and you have a hud crosshair, if it is not center, or it is cut off, fiddle with these


"xpos" "c-100"
"ypos" "c-97"
"wide" "201"
"tall" "200"

if the tall and wide aren't big enough, part of your xhair will be cut off.
if you want to change the color look for the line that says

"fgcolor" "0 255 0 255"

it's written in rgb so the first value (a 0 in this case) is the red, the next number is the green, and the 3rd number is the blue. The last number is transparency. A value of 1 is hardly visible whereas a value of 255 is completely opaque. (Special thanks to delpo)

if you see this

"enabled" "0"

your hud xhair will be black( at least for me ) so change it to this!!!

"enabled" "1"


please excuse my grammar and dull writing!
p.s. if anything in here is wrong, let me know and I'll change it (or if someone comments about the achievement tracker thing, or the 4th number in fgcolor)
34
#34
1 Frags +

http://www.mediafire.com/?k95vgv5a407px

Contains CFG, HUD, and Hitsound.

http://www.mediafire.com/?k95vgv5a407px

Contains CFG, HUD, and Hitsound.
35
#35
4 Frags +
BentomatWoah that's it.

I'm looking at a bunch of stuff starting with "CrossHairKonrWings" and ending with the section below "CrossHairQPlus". If I copy+paste this directly into scout config, will I need anything else to use the crosshair?

I'll also have to figure out some "alias" line so that I can disable it in the other class configs.

You can't make the crosshair only appear on scout without some rather complicated minmode manipulation. To get the crosshair into your own hud do the following.

1. Copy Garm3nFont.ttf from Yz50/clockwork's resource folder and paste it into your hud's resource folder.

2. Go to your own hud's resource/ClientScheme.res file, scroll down to the near the bottom (in the custom font files section) and paste this in

"35" 
		{
			"font" "resource/Garm3nFont.ttf"
			"name" "Garm3nFont"
		}

Make sure to renumber it to fit in with the other fonts there: e.g. I put mine in like this http://i.imgur.com/EhMuv.png

8. Copy this

"CrossHairKonrWings"
		{
			"1"
			{
				"name"		"Garm3nFont"
				"tall"		"24"
				"weight"	"0"
				"antialias"	"1"
			}
		}

and go to your clientscheme.res's fonts section. e.g. mine looks like this http://i.imgur.com/BeyXl.png The "tall" value is the size of the crosshair.

4. Go to your scripts/hudlayout.res file and paste in this

CrossHairKonrWings
	{
		"controlName"	"CExLabel"
		"fieldName"	 	"CrossHairKonrWings"
		"visible"		"1"
		"enabled"		"1"
		"zpos"			"2"

		"xpos"			"c-31"
		"ypos"			"c-24"
		"wide"			"49"
		"tall"			"49"
		"outline"		"1"

		"font"			"CrossHairKonrWings"
		"labelText"		"Z"
		"textAlignment"	"center"	

		"fgcolor"		"235 226 202 255"
	}

You might need to change the "xpos" and "ypos" values to get the crosshair to be centred (Put hud_reloadscheme in console each time you change the values in order to refresh the hud).

Sorry if I've missed anything.

[quote=Bentomat]Woah that's it.

I'm looking at a bunch of stuff starting with "CrossHairKonrWings" and ending with the section below "CrossHairQPlus". If I copy+paste this directly into scout config, will I need anything else to use the crosshair?

I'll also have to figure out some "alias" line so that I can disable it in the other class configs.[/quote]

You can't make the crosshair only appear on scout without some rather complicated minmode manipulation. To get the crosshair into your own hud do the following.

1. Copy Garm3nFont.ttf from Yz50/clockwork's resource folder and paste it into your hud's resource folder.

2. Go to your own hud's resource/ClientScheme.res file, scroll down to the near the bottom (in the custom font files section) and paste this in [code]"35"
{
"font" "resource/Garm3nFont.ttf"
"name" "Garm3nFont"
}[/code] Make sure to renumber it to fit in with the other fonts there: e.g. I put mine in like this http://i.imgur.com/EhMuv.png

8. Copy this
[code]"CrossHairKonrWings"
{
"1"
{
"name" "Garm3nFont"
"tall" "24"
"weight" "0"
"antialias" "1"
}
}[/code] and go to your clientscheme.res's fonts section. e.g. mine looks like this http://i.imgur.com/BeyXl.png The "tall" value is the size of the crosshair.

4. Go to your scripts/hudlayout.res file and paste in this
[code]CrossHairKonrWings
{
"controlName" "CExLabel"
"fieldName" "CrossHairKonrWings"
"visible" "1"
"enabled" "1"
"zpos" "2"

"xpos" "c-31"
"ypos" "c-24"
"wide" "49"
"tall" "49"
"outline" "1"

"font" "CrossHairKonrWings"
"labelText" "Z"
"textAlignment" "center"

"fgcolor" "235 226 202 255"
}[/code] You might need to change the "xpos" and "ypos" values to get the crosshair to be centred (Put hud_reloadscheme in console each time you change the values in order to refresh the hud).

Sorry if I've missed anything.
36
#36
2 Frags +
botmodeit's written in rgb so the first value (a 0 in this case) is the red, the next number is the green, and the 3rd number is the blue. (I'm actually not sure what the last number is so if someone can tell me that would be neat-o).

The fourth 0-255 value is transparency. A value of 1 is hardly visible whereas a value of 255 is completely opaque.

[quote=botmode]
it's written in rgb so the first value (a 0 in this case) is the red, the next number is the green, and the 3rd number is the blue. (I'm actually not sure what the last number is so if someone can tell me that would be neat-o).
[/quote]

The fourth 0-255 value is transparency. A value of 1 is hardly visible whereas a value of 255 is completely opaque.
37
#37
0 Frags +

someone has the cfg of platinum to upload ?

someone has the cfg of platinum to upload ?
38
#38
0 Frags +
SkinnyMindsomeone has the cfg of platinum to upload ?

find on his stream

[quote=SkinnyMind]someone has the cfg of platinum to upload ?[/quote]
find on his stream
39
#39
0 Frags +
KeySkinnyMindsomeone has the cfg of platinum to upload ?find on his stream

Link Off for me ;/

[quote=Key][quote=SkinnyMind]someone has the cfg of platinum to upload ?[/quote]
find on his stream[/quote]
Link Off for me ;/
40
#40
0 Frags +

Anyone have the hitsound that plat/seanbud use? Thanks in advance, can't find platinum's steam myself.

Anyone have the hitsound that plat/seanbud use? Thanks in advance, can't find platinum's steam myself.
41
#41
0 Frags +
LyknAnyone have the hitsound that plat/seanbud use? Thanks in advance, can't find platinum's steam myself.

http://www.twitch.tv/platinumtf2

[quote=Lykn]Anyone have the hitsound that plat/seanbud use? Thanks in advance, can't find platinum's steam myself.[/quote]

http://www.twitch.tv/platinumtf2
42
#42
0 Frags +

Thank you, I got it now :3.

Thank you, I got it now :3.
43
#43
0 Frags +

for anyone who likes to experiment with different keys.

bind "w" "+forward"
bind "a" "+moveleft"
bind "s" "+back"
bind "d" "+moveright"

bind "q" "slot1"
bind "e" "slot2"
bind "f" "slot3"

bind "t" "+quickswitch"

bind "tab" "+showscores"
bind "space" "+jump"
bind "shift" "+duck"

bind "mouse1" "+attack"
bind "mouse2" "+attack2"
bind "mouse4" "voicemenu 0 0" //medic!//

bindtoggle "end" "r_drawviewmodel"
bindtoggle "del" "net_graph"
bind "pgup" "changeteam"
bind "pgdn" "changeclass"

for anyone who likes to experiment with different keys.

bind "w" "+forward"
bind "a" "+moveleft"
bind "s" "+back"
bind "d" "+moveright"

bind "q" "slot1"
bind "e" "slot2"
bind "f" "slot3"

bind "t" "+quickswitch"

bind "tab" "+showscores"
bind "space" "+jump"
bind "shift" "+duck"

bind "mouse1" "+attack"
bind "mouse2" "+attack2"
bind "mouse4" "voicemenu 0 0" //medic!//

bindtoggle "end" "r_drawviewmodel"
bindtoggle "del" "net_graph"
bind "pgup" "changeteam"
bind "pgdn" "changeclass"
44
#44
-14 Frags +

clockwork whats ur latest cfg

clockwork whats ur latest cfg
45
#45
2 Frags +

January 25th
And I'm pretty sure he changes his sens on an hourly basis gl keeping up to date

January 25th
And I'm pretty sure he changes his sens on an hourly basis gl keeping up to date
46
#46
2 Frags +
Alykaclockwork whats ur latest cfg

Why do people care so much for cfg of famous players goddammit??? Cfg of a top player won't make you better, dude. I mean, it is interesting to know what those guys roughly use, but stalking someone for his cfg is lame.

[quote=Alyka]clockwork whats ur latest cfg[/quote]

Why do people care so much for cfg of famous players goddammit??? Cfg of a top player won't make you better, dude. I mean, it is interesting to know what those guys roughly use, but stalking someone for his cfg is lame.
47
#47
2 Frags +

bind q slot1
bind e slot2
bind r slot3
unbind z
unbind x
unbind c
bind f "voicemenu 0 0"

boom

bind q slot1
bind e slot2
bind r slot3
unbind z
unbind x
unbind c
bind f "voicemenu 0 0"

boom
48
#48
2 Frags +
Alykaclockwork whats ur latest cfg

m_pitch 0

[quote=Alyka]clockwork whats ur latest cfg[/quote]
m_pitch 0
49
#49
-13 Frags +
JakubAlykaclockwork whats ur latest cfg
Why do people care so much for cfg of famous players goddammit??? Cfg of a top player won't make you better, dude. I mean, it is interesting to know what those guys roughly use, but stalking someone for his cfg is lame.

tnx for ur opinion

[quote=Jakub][quote=Alyka]clockwork whats ur latest cfg[/quote]

Why do people care so much for cfg of famous players goddammit??? Cfg of a top player won't make you better, dude. I mean, it is interesting to know what those guys roughly use, but stalking someone for his cfg is lame.[/quote]
tnx for ur opinion
50
#50
-11 Frags +

who have cfg Zebbosai ?

who have cfg Zebbosai ?
51
#51
1 Frags +

Sry to bump this old as hell thread but if anybody wants latest csg of players I can post it here right now I have made a folder consisting the latest cfg of : damneasy mike ams thalash paddie b4nny paulsen geoh VANI kaptain

Sry to bump this old as hell thread but if anybody wants latest csg of players I can post it here right now I have made a folder consisting the latest cfg of : damneasy mike ams thalash paddie b4nny paulsen geoh VANI kaptain
52
#52
2 Frags +

.

.
53
#53
-3 Frags +
trizzaaChangeI have collected configs over awhile... I can upload them all here. Usually keep them updated, but some may not be.
Contains cfg's and hud's from-

b4nny,bash,bloodsire,carnage,clockwork,cookye,cyzer,enigma,extremer,flay,flippy,greg,jh,jukebox,lansky,memphisvon,mentalvortex,mrslin,platinum,powah,pr3d,pyyyour,quad,quntv,reimu,sigma,sin,spadez,taggerung,taimou,techdude,thefragile,tlr,unf,vhalin,yz50

Download - http://www.mediafire.com/?rh9h4pa6a2l4tzs
But you don't have showstoppers cfg -.-

That is the cfg of old players . I'm saying I have LATEST cfg of NEW prem players

[quote=trizzaa][quote=Change]I have collected configs over awhile... I can upload them all here. Usually keep them updated, but some may not be.
Contains cfg's and hud's from-

b4nny,bash,bloodsire,carnage,clockwork,cookye,cyzer,enigma,extremer,flay,flippy,greg,jh,jukebox,lansky,memphisvon,mentalvortex,mrslin,platinum,powah,pr3d,pyyyour,quad,quntv,reimu,sigma,sin,spadez,taggerung,taimou,techdude,thefragile,tlr,unf,vhalin,yz50

Download - http://www.mediafire.com/?rh9h4pa6a2l4tzs[/quote] But you don't have showstoppers cfg -.-[/quote]

That is the cfg of old players . I'm saying I have LATEST cfg of NEW prem players
54
#54
-3 Frags +
BuRnMEnowSry to bump this old as hell thread but if anybody wants latest csg of players I can post it here right now I have made a folder consisting the latest cfg of : damneasy mike ams thalash paddie b4nny paulsen geoh VANI kaptain

dl ?

[quote=BuRnMEnow]Sry to bump this old as hell thread but if anybody wants latest csg of players I can post it here right now I have made a folder consisting the latest cfg of : damneasy mike ams thalash paddie b4nny paulsen geoh VANI kaptain[/quote]
dl ?
55
#55
-14 Frags +

flippy's cfg pls

flippy's cfg pls
56
#56
0 Frags +

Could you upload Geoh's cfg? Thanks

Could you upload Geoh's cfg? Thanks
1 2
Please sign in through STEAM to post a comment.