Comments

Commented 1 day ago2024-11-20 11:10:17 UTC in vault item: Deathmatch Classic & Threewave textures Comment #106519
🔥🔥🔥
Commented 1 day ago2024-11-19 15:47:16 UTC in wiki page: Reference: Entities and their models Comment #106517
the reason env_sprite doesn't support body and skin is that apparently those values were hijacked by the sprite renderer as part of the system that makes sprites attached to models in one of their attachment points.
Commented 3 weeks ago2024-10-27 07:50:26 UTC in vault item: Half-Life but there are no restrooms outside Sector C Comment #106466
Sorry for the slander. This was years ago when I tried to import exported BSPs and back then the UI for importing BSP files was broken. I know it works now. Still glad that the program exists.

p.s. good to have you back. :)
Commented 1 month ago2024-10-03 13:08:16 UTC in wiki page: trigger_counter Comment #106436
Between 1.0.0.0 and 1.0.0.9 when the game_* entities were added, this entity is the only entity available for counting. Therefore, it's NOT just a "debug" entity, and I've removed that red notice.
Commented 1 month ago2024-09-26 04:21:10 UTC in wiki page: func_monsterclip Comment #106419
blocking hull0 (point hull) entities like snarks might require a completely separate method: An invisible func_wall with "passable" set to yes (zhlt_noclip = 1) which makes it have no clip for monsters using other hulls but solid to entities using hull0.
Commented 1 month ago2024-09-25 14:15:44 UTC in wiki page: monster_scientist_dead Comment #106417
There's actually only 6 poses. Hanging doesn't exist, probably for a good reason.
Commented 1 month ago2024-09-24 23:48:23 UTC in wiki page: monster_cleansuit_scientist (Half-Life: Opposing Force) Comment #106416
Commented 1 month ago2024-09-24 05:10:16 UTC in wiki page: monster_cockroach Comment #106412
🪳
Commented 1 month ago2024-09-22 06:16:33 UTC in wiki page: Tutorial: Create a working battery with light Comment #106409
Be careful with this. You only have 31 named lights to work with per map.
A more optimized way, that comes free with most entities, is to use entity effects (effects) property.
Commented 2 months ago2024-09-20 10:59:18 UTC in wiki page: VERC: Torching Open A Door (Half-Life) Comment #106408
There's a way to use just a single set of path_corner's by using both a boundingbox brush (center of path) and an origin brush (center of beam targets) for the func_train's. while traveling on the path both trains would align their `boundingbox`-es to the path, but have different origins, so the beams and lasers continue to work.

'But why bother?', you ask? Well, less entities mean less surface area for mistakes.
Commented 2 months ago2024-09-19 07:23:08 UTC in wiki page: Reference: Half-Life entity class hierarchy Comment #106406
NOTE TO SELF:
  • CBaseDelay::SUB_UseTargets has delay and killtarget. descendants:
    • item_airtank
    • all weapon_ entities
  • CBaseEntity::SUB_UseTargets doesn't have delay nor killtarget. descendants:
    • all other item_ entities
    • all ammo_ entities
  • CBasePlayerAmmo don't call SUB_UseTargets so both target and killtarget are useless.
Pickup target results:
  • ammo_* = none
  • item_* = target only, no delay/ killtarget
  • weapon_* and item_airtank = all of target/ delay/ killtarget
Commented 2 months ago2024-09-18 02:00:38 UTC in wiki page: Tutorial: Recompiling light only Comment #106404
[new]bspguy update needed
Commented 2 months ago2024-09-18 01:45:55 UTC in wiki page: func_tankcontrols Comment #106403
You can maybe have an ambient_generic play a cocking up sound (just like when using the emplaced pulse gun in hl2) by having it have the same name as the tank, so the func_tankcontrols triggers both of them.
Commented 2 months ago2024-09-15 15:09:55 UTC in wiki page: light_environment Comment #106399
NOTE TO SELF: VHLT rolls pitch into the pitch component of angles. World and model lighting should just work.
Commented 2 months ago2024-09-13 07:20:16 UTC in wiki page: Tutorial: The Complete Guide to Lighting Comment #106394
I'm shocked to find today that for whatever reason default builds of VHLT removes all falloff code from the executable. No _falloff KV, no -falloff # argument. Codebases that have #ifdefs removed outright removed the code for the feature altogether! Idk how falloff even functions now.
Commented 2 months ago2024-09-12 07:04:23 UTC in journal: fragMOTION Comment #106391
Ah man... My aspirations were too high... 😔

Anyway, let's just take small steps forward. As long as we move forward it'd be ok.
Commented 2 months ago2024-09-11 16:43:56 UTC in journal: fragMOTION Comment #106387
Yes pls! 😁

I'm scratching my head over how to do IK. I want to freeze a bone in place while moving the root bone in an animation. it doesn't work, the "frozen" bone just moves along with the rest of the skeleton. a tutorial on how to it how i meant it to work would be much much appreciated.
Commented 2 months ago2024-09-10 16:12:19 UTC in wiki page: Tutorial: Modelling for goldsrc with Blender - Part 1 Comment #106383
Thank Erty and the Almighty for map2prop, one can now make prop models entirely in jack/hammer and never have to touch Blender :)
Commented 2 months ago2024-09-10 15:46:26 UTC in wiki page: Sprite Comment #106382
Probably the sprite type/orientation/format explanation from env_sprite can be moved here.

Also it appears that the sprite renderer has an in-built way to render the sprite attached to a studio model's attachment point. This is why making env_sprite render models can only use body and skin 0, because those properties are taken over to store part of the information used to get this to work.
Commented 2 months ago2024-09-09 06:29:29 UTC in wiki page: Tutorial: Changing the in-game font size Comment #106378
TODO:
  1. Custom fonts
  2. Console fonts
Commented 2 months ago2024-09-09 05:54:50 UTC in wiki page: Tutorial: How to fix those leaks Comment #106377
I feel strongly about loading the exported .map file to find leaks, since it's what the compilers actually see when they compile the level. In fact this image from the page might have been just that, so why not just explicitly tell people to do it?
Commented 2 months ago2024-09-08 12:34:20 UTC in wiki page: Tutorial: Dead NPCs for HL1 and CS Comment #106376
IDEAS FOR UPDATE:
  • overhaul for modern tools (HLAM/Crowbar)
  • dead bodies of stock models that have death animations, but no dead poses (coincidentally the NPCs using these models don't have monster_*_dead versions)
  • gib-able dead bodies
Commented 2 months ago2024-09-05 09:41:57 UTC in vault item: Urby's all-in-one Zombie Model Comment #106370
What got updated? 🤔
Commented 2 months ago2024-09-04 15:43:29 UTC in wiki page: Tutorial: Elevator Doors that move Comment #106365
I think different paradigm is possible: a single func_train elevator cab with built-in doors, and func_wall_toggle cabs that are stationary at each level. doors would be local to each level.
Commented 2 months ago2024-09-04 08:43:52 UTC in wiki page: Reference: Entities and their models Comment #106363
should we add all other entities not available in the FGD, as well as all other hardcoded models/sprites precached and used by all these entities?
Commented 2 months ago2024-09-04 07:55:34 UTC in wiki page: VERC: Half-Life Unit To Real-Life Unit Conversion Comment #106362
2'8" is too wide? I eyeballed my shoulders and they're exactly 2ft. Add to that a bulky HEV suit and a little bit of personal space and 2'8" isn't too bad. The doors around my house are 3ft wide and would fit him just fine.

And don't forget that info_hullshape exists now. You can squeeze Gordon into as narrow a space as you like. It's just that his buddies (and enemies) can't follow.

The biggest flaw with sticking to 16u = 1ft in Sourceland is that you have rooms that are visibly too large... exactly 33% too large. NPCs interact with door handles and buttons at chest height that in real world (and visually in Sourceland) are at the halfway point i.e. waist height. And props are built with 12HU=1ft as well so they're also 75% of the size relative to the geometry of the room they're in.
Commented 2 months ago2024-09-03 14:46:18 UTC in wiki page: item_airtank Comment #106360
considering its cut content status, it has surprisingly more use as it can target other entities on touch as compared to health/hev chargers where such function is most desired.
Commented 2 months ago2024-09-02 18:20:23 UTC in wiki page: FGD Comment #106356
The FGD grammar is technically whitespace-agnostic. You can for example spread the @ThingClass declaration across multiple lines in cases where there's a lot of attrs() with long values, for readability sake. The problem is that third party programs that doesn't use a proper DSL parser and parses directly, makes assumption that it's always on one line. Worse still there's one snapshot of TB that assumes property lines must be indented, and breaks with a custom FGD written with poor indent discipline.
Commented 2 months ago2024-08-31 09:25:43 UTC in wiki page: Vlatitude: Fun with monster_grunt_repel Comment #106351
Commented 2 months ago2024-08-30 14:27:21 UTC in wiki page: lightmap Comment #106349
If you're curious about how lightmap sizes are calculated, and the techniques used to light those lightmaps, I highly recommend this excellent video:
In Half-Life/GoldSource/VHLT it's more like Q2's QRAD3. Also discussed is Ericw-tools, which you can use on GoldSrc maps (though support is only in alpha as of writing)
Commented 2 months ago2024-08-29 10:41:13 UTC in wiki page: monstermaker Comment #106344
this hldm map uses monstermaker to spawn hornets, as part of a trap. really cool.
Commented 2 months ago2024-08-22 12:03:29 UTC in wiki page: func_water Comment #106322
Note for GL mode: the wave grid size is constant at 64x64. If the textures are not 64x64 it'd be stretched to fit.
It's also possible with BSP binary hacking to rename a normal texture used on normal brushwork into water, bypassing the culling done by the compiler, so that any surface it's applied to – walls, ceilings, etc – has the wavy effect, but with waveheight of 0.
Commented 2 months ago2024-08-22 11:57:48 UTC in wiki page: Goldsource Error: Lightmap for Texture aaatrigge Comment #106321
Actually, it's not the lightstyle 255 that marks "no light data" but the "special" flag on the face's texinfo. If your map is pitch black all the light styles on all faces will be 255 but they're all still valid faces because BSP already chopped them up so that the lightmap size is reasonable. Faces with "special" flag don't get chopped.
Commented 2 months ago2024-08-22 04:17:57 UTC in wiki page: VERC: The History of Half Life: 1996 to 1998 Comment #106320
Here's Monica Harrington's (ex-wife of co-founder Mike Harrington) side of her story: The Early Days of Valve from a Woman Inside
Commented 2 months ago2024-08-21 12:49:54 UTC in wiki page: Goldsource Error: allocblock:full Comment #106317
[2024-09-10] Replaced Tommy's wild goose chase with actual factual causes and solutions/preventions
Commented 3 months ago2024-08-15 10:30:54 UTC in wiki page: func_breakable Comment #106298
^ based on my env_render testing render modes other than normal and solid creates glass bullet decals when shot, so in that sense the engine assumes a brush entity in those modes as being made of glass. the grenade code must be using the same logic as well, so that checks out.
Commented 3 months ago2024-08-07 16:20:12 UTC in wiki page: Tutorial: Render Properties Comment #106288
I feel like migrating the stuff I added to env_render page here, and redirect from that page, but I'm undecided on how much I should rewrite the original content of this page, and even who the original author to be credited is, because the entire page content will need to be reworked to properly label and address bmodel/studiomodel/sprite differences.
Commented 3 months ago2024-08-07 07:30:02 UTC in vault item: Vanilla sprite train Comment #106282
To clarify angular velocity for sprites, the XYZ values of avelocity is treated as the angle's PYR to rotate for. Assuming parallel sprite (always facing the camera), the third value of angles (Roll) is used to initially offset the sprite's rotation. So to animate the rotation you use the third value of avelocity (Z).
Commented 3 months ago2024-08-06 09:11:17 UTC in wiki page: Tutorial: Map details and misc Comment #106281
for the love of god, jamie, please upload images to twhl directly. otherwise your contribs are useless, a waste of your own time.
Commented 3 months ago2024-08-05 01:08:36 UTC in wiki page: VERC: Rendering Properties Comment #106280
There's a few secret Render FX values:
18 : "Bulge Sideways (Models)"
19 : "Glowing Aura (Models)"
18 is the effect used by monster_gargantua as it explodes.
19 is the classic doom/quake glowing effect wrapping a model. It takes FX color as the colour of the glow, and FX amount as the offset between the model and the glow aura. Note that in some render modes FX amount is also used to adjust opacity and sadly you can't separate the two when using FX 19 + off-normal mode.
Commented 3 months ago2024-07-26 11:34:21 UTC in vault item: storagex3 Comment #106270

Pros

The hornet trap is novel to me; an uncommon puzzle in Half-Life and mods in general, let alone in multiplayer HLDM. The upstairs area is also very comfy.

And the gantry crane makes another appearance :D

Cons

The elevator however is clunky in that you need to bump onto the button twice, once to call the elevator and once more to move up. There should've been buttons inside. It does feel like overall you couldn't figure out how to make func_train elevators with doors etc.

There are a lot of ledges with trigger_push on top. this could've been simplified with clip brushes shaped like wedges, tied to func_detail and made to use info_hullshapes that are pointed at the bottom. see the following vault for example:
Loading embedded content: Vault Item #6735
Commented 4 months ago2024-07-16 06:11:52 UTC in wiki page: Tutorial: Texture Lighting Comment #106251
needs updates:
  • per-map texture lighting using <mapname>.rad and info_texlights
  • incorporate texlight switching using the previous comment's method as well as light_surface
  • light_surface
Commented 4 months ago2024-07-12 13:09:09 UTC in vault item: GoldSrc Map2Prop Comment #106243
🎉 Congrats for v1.0 release!! 🎉
Finally we have the goldsrc equivalent to source's Propper!
Commented 4 months ago2024-06-30 00:42:34 UTC in wiki page: Tutorial: Making textures with WadMaker Comment #106223
Btw, qpics is still used for the "Loading..." and "Paused" graphics. Not entirely phased out yet.
Commented 4 months ago2024-06-29 07:36:26 UTC in wiki page: titles.txt Comment #106222
Has anyone ever get their non-english titles.txt to work properly?

I tested the Korean version. Its titles.txt comes in UTF16LE encoding, but it looks like the engine fails to parse this encoding, so all env_messages just displays their message names instead of the message's contents. And of course it all uses default values for the $ settings.
Commented 4 months ago2024-06-28 06:57:44 UTC in wiki page: func_wall Comment #106219
Relevant ZHLT toggled texlight hack is still available in VHLT:
  • have a light and func_wall entity pair of the same name
  • set func_wall's style to -3
  • set light's custom pattern if needed, and whether it will be initially dark
  • set an entity to trigger the pair. they will be triggered together because of the shared name.
the effect being that the light emitted by the texlight has the same light style as the paired light entity instead of being static, and thus can be toggled with it.

But now that VHLT has light_surface, just use that instead.
Commented 4 months ago2024-06-22 01:03:25 UTC in wiki page: VERC: Custom Decals Comment #106208
Curious about how the engine differentiates between monochrome and alphatest decals. I've seen (and used) decals that has full colour with the last index being the transparent colour, just like regular { textures. My working theory is that it checks that palette indices 0-254 are monochromatic (black→white or the reverse). If it's neither then it assumes alphatest mode. I think I've also seen decals.wad in the wild that have the palette indices 0-254 all zeroed out (i.e. black all the way), but I haven't loaded them in game and see how the engine interprets that decal.
Commented 5 months ago2024-06-12 01:26:37 UTC in wiki page: VERC: Detail textures in Half-Life Comment #106201
Glad to have you here, Philip! :D
Anyway, as I was originally typing...
X and Y scaling should be proportional to the aspect of the base texture. If the base texture is a skinny 16x196 texture then having both X and Y scales be 10 means each tile of the detail texture would be 1.6 by 19.6 pixels relative to the base. If you can't tell, this is horribly, horribly stretched.

Sadly there exists no tool today afaik that can easily plug in the aspect ratio values to you.
Commented 5 months ago2024-06-08 11:32:14 UTC in wiki page: Tutorial: Texture Application Comment #106197
Needs JACK-specific enhancements like Alt+[L/R]click
Commented 6 months ago2024-05-16 17:25:22 UTC in vault item: sewagex3 Comment #106179
Really stinkin beautiful with the brushwork detail! It might hinder playability but ya can't deny it's a very cool place to gawk at things. Especially that gantry crane, gyatt damn!