Wiethoofd
Account Details
SteamID64 76561197990121837
SteamID3 [U:1:29856109]
SteamID32 STEAM_0:1:14928054
Country Netherlands
Signed Up June 22, 2013
Last Posted February 11, 2026 at 9:34 PM
Posts 975 (0.2 per day)
Game Settings
In-game Sensitivity 4
Windows Sensitivity 5
Raw Input 1
DPI
3200
Resolution
2560*1080
Refresh Rate
60
Hardware Peripherals
Mouse Roccat Kone XTD
Keyboard Ducky Shine 2 (Yellow) + Brown Cherry Switches
Mousepad Roccat Taito
Headphones Roccat Kave
Monitor Dell U2711
1 ⋅⋅ 43 44 45 46 47 48 49 ⋅⋅ 65
#3553 HUD editing: short questions, quick answers in Customization

@Xen
1. just local server with bots should do just fine, recording a demo also works
- The main Objective Timer is located in HudMatchStatus.res and the text below timers in HudObjectiveTimePanel.res
- if_comp for casual/ranked to move things around if necessary

2. idle in casual, stack with friends so you don't get kicked, also HudMatchStatus.res the teamstatus element, animations for dead panel are in hudanimations_tf.txt

@SMESI
vgui_drawtree + Highlight Selected in main menu should work just fine to figure out the bounding boxes of elements, the shop + items are now wrapped in an element, simply moving that should work fine

The scrolling should be fixable by simply making the parent bigger and also change the border of it to NoBorder with a bgcolor_override that makes it transparent (again, vgui_drawtree should be your best friend as hud dev)

posted about 9 years ago
#6 Insomnia58 viewer's guide in News

i58 Schedule thread with converted timezones on Reddit

posted about 9 years ago
#22 i58.tf, information hub for the LAN in LAN Discussion
EvrewsWhy are the matches not on the event schedule sidebar?

They are there now!

I also made a nifty reddit thread with all the info, with a link to i58.tf and enabled team flairs on /r/tf2

posted about 9 years ago
#3544 HUD editing: short questions, quick answers in Customization

1. Create a new element with a colon as LabelText and position it between your K/D
2. update your scoreboard.res file (look at the default one to see which element is now the mapname)
3. duplicate all elements, change element name and ControlName and change the fgcolor_override

posted about 9 years ago
#49 i58 - Schedule Set in LAN Discussion

taunt bans tldr: only weapon & taunt items with set duration are allowed (they end automatically)

posted about 9 years ago
#14 i58.tf, information hub for the LAN in LAN Discussion

Is it possible to add the teams + rosters to the page?

posted about 9 years ago
#3542 HUD editing: short questions, quick answers in Customization

local server payload map, nav_generate, spawn some bots with "tf_bot_add 12" and mp_tournament 1 with mp_tournament_stopwatch 1 and edit the hudstopwatch.res file?

posted about 9 years ago
#3540 HUD editing: short questions, quick answers in Customization

@TheFastFreak: huditemeffectmeter_killstreak.res just mess with xpos(_minmode) and hud_reloadscheme to position it

@XenThePybro: look at code from huds already using #base for clientscheme.res
Things to look out for:
- order of the #base include lines (first will be used over similar/same definitions in the second file)
- stuff in the hudfolder/resource/clientscheme.res file with the #base includes overrides what is in the included files

posted about 9 years ago
#34 i58 - Schedule Set in LAN Discussion

whitelist.tf/i58 << Essentially the ETF2L whitelist as a preset for i58

posted about 9 years ago
#3532 HUD editing: short questions, quick answers in Customization
XenThePybrohow do I edit the background/color of these buttons? (in the casual lobby) I found the button but I can't change the colour or anything in lobbycontainerframe.res and it does not have another entry in lobbycontainerframe_casual.res

That's the good thing about #base, you can create the entry in the _casual .res file of the lobbycontainer frame with just the bgcolor_override like so:

"BackButton"
{
	"bgcolor_override"	"160 160 160 255"
}
"NextButton"
{
	"bgcolor_override"	"160 160 160 255"
}
"StartPartyButton"
{
	"bgcolor_override"	"160 160 160 255"
}

Possibly add DefaultBgColor_override, ArmedBgColor_override & DepressedBgColor_override for various button hover/press/(in)active states.

edit: and does anyone know how I can have different animations play depending if I am using cl_hud_minmode 1 or not for low ammo?

Duplicate elements, animate both in hudanimations and only make 1 of each set show up with "visible_minmode"?

posted about 9 years ago
#3463 HUD editing: short questions, quick answers in Customization

HudMatchStatus.res there should be a BGFrame (check the default file otherwise)

posted about 9 years ago
#3460 HUD editing: short questions, quick answers in Customization

@Koncept, way to overcomplicated, you can get away with simply modifying the default ones:

// Default Chat animation events
event CompetitiveGame_LowerChatWindow
{ // ypos is r'tall' value of BaseChat
	Animate HudChat ypos r140 Accel 0 0
}
event CompetitiveGame_RestoreChatWindow
{ // ypos is original value from BaseChat
	Animate HudChat ypos 275 Accel 0 0
}
posted about 9 years ago
#3457 HUD editing: short questions, quick answers in Customization

Duplicate the original events, modify the ypos in 'Lower' to move the chat down with the height of the window in BaseChat.res and set the ypos in the 'Restore' to be the one you set in BaseChat for the original position of the chat window.

posted about 9 years ago
#3453 HUD editing: short questions, quick answers in Customization
Konceptalso, how would I edit the chatbox so it doesn't return to the default ypos when playing casual or competitive, if possible at all?

hud animation events

  • CompetitiveGame_LowerChatWindow
  • CompetitiveGame_RestoreChatWindow

And yes, it's disgusting tf2 devs didn't simply duplicate the BaseChat file from /tf/resource and added in a if_comp ypos but use animations for this.

duck_How do i change the low health box that ahud uses here http://puu.sh/qsbDW/4bb23d0fe2.jpg

HudSpyDisguiseStatus.res uses SpectatorGuiHealth.res

You're already on a local server: sv_pausable 1; pause; vgui_drawtree 1 and just navigate the tree to figure out the name of the hud element that is now visible and search inside the modified hud files.

puoi1Does anybody know the file to fix this problem?

HudMatchSummary.res is the file responsible for the end of round (casual/ranked) stats overview

posted about 9 years ago
#9 Teleporter Cost Bug in Q/A Help

If you have a custom scripts/objects.txt to have a modified explosion animation for building destructions, simply update the Cost value to 50 for OBJ_TELEPORTER

posted about 9 years ago
1 ⋅⋅ 43 44 45 46 47 48 49 ⋅⋅ 65