Page 11 of 13

RE: Prop Hunt - vb4 is out, featuring PH_MAPPROPSONLY and more!!!

Posted: Thu May 01, 2014 3:05 am
by Marcaek
Some people disable music in CTF and Duel too, for similar reasons. I'd ask "why not just leave it up to the player" but it seems that's actually what's going to happen with a cvar.

RE: Prop Hunt - vb4 is out, featuring PH_MAPPROPSONLY and more!!!

Posted: Thu May 01, 2014 3:06 am
by Ijon Tichy
Espio wrote: I'll be honest I complained a little about setting a map's default music to silence, but not enough to have a cvar built in to stop it entirely.

Isn't that what WAD editing is for? Can just delete the silence files and that's it really. Sure gotta do it for each release but at least it's a personal preference I can fix manually on my own.
Considering this is literally all it required:

Code: Select all

#include "zcommon.acs"

script 722 OPEN
{
    ACS_ExecuteAlways(723);
}

script 723 (void) clientside
{
    if (!GetCVar("ph_enablemusic")) { LocalSetMusic("SILENCE"); }
    else { ConsoleCommand("set ph_enablemusic 0"); ConsoleCommand("archivecvar ph_enablemusic"); }
}
if it were me, any amount of complaining would've resulted in that. It's a one-minute job, come on.

RE: Prop Hunt - vb4 is out, featuring PH_MAPPROPSONLY and more!!!

Posted: Thu May 01, 2014 9:18 am
by Cruduxy
Why people are still complaining? They did the cvar you asked for now dont argue you need music on :\

RE: Prop Hunt - vb4 is out, featuring PH_MAPPROPSONLY and more!!!

Posted: Fri May 02, 2014 12:50 am
by Retro=Gamer
Is there gonna be skulltag runes and weapon props?

RE: Prop Hunt - vb4 is out, featuring PH_MAPPROPSONLY and more!!!

Posted: Fri May 02, 2014 3:30 am
by SwordGrunt
I prefer suggesting things to the developers directly but fuck it, I'll post it here.

Two suggestions to make playable several maps that currently aren't:

First, a simple one: make props fire an invisible and harmless missile so they can trigger shoot/hit triggers (such as the spawn door on MAP18)

Second, to avoid exploits such as health bonuses walking into small passages that hunters can't go in (MANY maps have those, usually on liquids), you could give all props the default player height (56) and give them projectilepassheight equal to whatever they should have. In turn that would require changing the hitscan weapons to use FastProjectiles instead, which from my experience doesn't change anything, except possibly one thing that Hypno brought up: the netcode and/or unlagged may handle them differently. Honestly I've always worked with FastProjectiles to emulate hitscan and I've never noticed anything different from true hitscan, but it's still something that should be tested.

RE: Prop Hunt - vb4 is out, featuring PH_MAPPROPSONLY and more!!!

Posted: Fri May 02, 2014 7:27 pm
by Untitled
SwordGrunt wrote: I prefer suggesting things to the developers directly but fuck it, I'll post it here.

Two suggestions to make playable several maps that currently aren't:

First, a simple one: make props fire an invisible and harmless missile so they can trigger shoot/hit triggers (such as the spawn door on MAP18)

Second, to avoid exploits such as health bonuses walking into small passages that hunters can't go in (MANY maps have those, usually on liquids), you could give all props the default player height (56) and give them projectilepassheight equal to whatever they should have. In turn that would require changing the hitscan weapons to use FastProjectiles instead, which from my experience doesn't change anything, except possibly one thing that Hypno brought up: the netcode and/or unlagged may handle them differently. Honestly I've always worked with FastProjectiles to emulate hitscan and I've never noticed anything different from true hitscan, but it's still something that should be tested.
The problem is, Hitscan attacks actually go through props by default, and fake projectiles don't. I.E. hunters can't actually shoot things to check if they're real or not, making the game much harder for them.

RE: Prop Hunt - vb4 is out, featuring PH_MAPPROPSONLY and more!!!

Posted: Fri May 02, 2014 7:32 pm
by Ijon Tichy
And that's not an issue in the slightest in this case. They're players. They're meant to be shot.

Edit: Where did the idea that you can't shoot props to check them come from? Shoot them. If they bleed, shoot them some more. That's prop-hunting 101.

RE: Prop Hunt - vb4 is out, featuring PH_MAPPROPSONLY and more!!!

Posted: Fri May 02, 2014 7:54 pm
by mr fiat
hmm, maybe give hunters diffrent weapons to give players more incentive to play as hunters because as it seems right now people prefer to play as props allot more then hunters. its ussualy allot of props and only like 2 or 3 hunters. (i for one never liked vannila shotgun)

RE: Prop Hunt - vb4 is out, featuring PH_MAPPROPSONLY and more!!!

Posted: Fri May 02, 2014 8:15 pm
by Untitled
Ijon Tichy wrote: And that's not an issue in the slightest in this case. They're players. They're meant to be shot.

Edit: Where did the idea that you can't shoot props to check them come from? Shoot them. If they bleed, shoot them some more. That's prop-hunting 101.
I was referring to use of hitscan weapons. If it goes through a prop, the prop is a prop. If the hitscan hits the prop, it's a player.

RE: Prop Hunt - vb4 is out, featuring PH_MAPPROPSONLY and more!!!

Posted: Fri May 02, 2014 9:01 pm
by SwordGrunt
Untitled wrote:
Ijon Tichy wrote: And that's not an issue in the slightest in this case. They're players. They're meant to be shot.

Edit: Where did the idea that you can't shoot props to check them come from? Shoot them. If they bleed, shoot them some more. That's prop-hunting 101.
I was referring to use of hitscan weapons. If it goes through a prop, the prop is a prop. If the hitscan hits the prop, it's a player.
But players bleed and props don't, so what's the difference?

RE: Prop Hunt - vb4 is out, featuring PH_MAPPROPSONLY and more!!!

Posted: Fri May 02, 2014 10:24 pm
by Untitled
SwordGrunt wrote:
Untitled wrote:
Ijon Tichy wrote: And that's not an issue in the slightest in this case. They're players. They're meant to be shot.

Edit: Where did the idea that you can't shoot props to check them come from? Shoot them. If they bleed, shoot them some more. That's prop-hunting 101.
I was referring to use of hitscan weapons. If it goes through a prop, the prop is a prop. If the hitscan hits the prop, it's a player.
But players bleed and props don't, so what's the difference?
Projectile-based weapons don't cause bleeding. To the best of my knowledge, anyway. Only hitscans cause bleeding, and they go through props. It also discourages hiding by literally being in the middle of a bunch of trees making you nigh-impossible to hit.

RE: Prop Hunt - vb4 is out, featuring PH_MAPPROPSONLY and more!!!

Posted: Fri May 02, 2014 11:01 pm
by -Jes-
Projectiles can cause bleeding, you just have to do their death states right.

And no, your shots no longer passing through solid decor actors won't be that big a difference either.
You'll still be checking for blood puffs - you just can't check anything behind that legit decor with the same shot anymore!
Untitled wrote:It also encourages hiding by literally being in the middle of a bunch of trees making you difficult, but not impossible, to hit.
Fixed that for you. If the prop could get inbetween a bunch of trees, then the hunter can get there as well.

RE: Prop Hunt - vb4 is out, featuring PH_MAPPROPSONLY and more!!!

Posted: Sat May 03, 2014 12:22 am
by SwordGrunt
-Jes- wrote: Projectiles can cause bleeding, you just have to do their death states right.

And no, your shots no longer passing through solid decor actors won't be that big a difference either.
You'll still be checking for blood puffs - you just can't check anything behind that legit decor with the same shot anymore!
Untitled wrote:It also encourages hiding by literally being in the middle of a bunch of trees making you difficult, but not impossible, to hit.
Fixed that for you. If the prop could get inbetween a bunch of trees, then the hunter can get there as well.
Indeed. This is what I used for hitscan bullets (at least I think this was the one):

Code: Select all

actor BaseBullet : FastProjectile
{
	speed 512
	radius 4
	height 8
	+BLOODSPLATTER
	states
	{
		Spawn:
			TNT1 A 1
			loop
		Death:
			TNT1 A 1 A_SpawnItem("BulletPuff")
			stop
		Crash:
		XDeath:
			TNT1 A 1
			stop
	}
}

RE: Prop Hunt - vb4 is out, featuring PH_MAPPROPSONLY and more!!!

Posted: Sat May 03, 2014 2:52 am
by Ijon Tichy
And you can always alleviate the issue by making the bullet projectile and the props the same species and using +THRUSPECIES. You can still use +MTHRUSPECIES to have it pass through hunters. This is what I'll be doing in Oneshot 7.2 to unblock hitscans and projectiles when sv_unblockplayers is on.

RE: Prop Hunt - vb4 is out, featuring PH_MAPPROPSONLY and more!!!

Posted: Sun May 04, 2014 1:59 pm
by Frits
Prophunt BETA5 released!
http://static.[bad site]/wads/prophunt-vb5.pk3

Most important changes: ph_notaunts and ph_enablemusic
enjoy!

[spoiler]Changelog:
Vb5
_________
- Some minor changes to the ACS barely worth mentioning [Hypnotoad]
- Added black screen override as suggested by Zeberpal, maps must execute script 750 on the very first tic in order to stop hunters getting black screen and being frozen. [Hypnotoad]
- Made sure taunts end after their duration, even if someone connects with a custom sndinfo [Hypnotoad]
- Added cvar, PH_ENABLEMUSIC to enable music again. Clients should use "set PH_ENABLEMUSIC 1" in console to enable music again, and "archivecvar PH_ENABLEMUSIC 1" to save this in their INI. [Hypnotoad]
- Added cvar, PH_NOTAUNTS to disable taunts. Clients should use "set_PH_NOTAUNTS 1" in console to disable taunts archivecvar PH_NOTAUNTS 1" to save this in their INI. [Frits/Hypnotoad]
- Fixed Computer Area Map Height[/spoiler]

RE: Prop Hunt - vb4 is out, featuring PH_MAPPROPSONLY and more!!!

Posted: Sun May 04, 2014 4:00 pm
by EnsaladaDeTomate
Frits wrote: Prophunt BETA5 released!
http://static.[bad site]/wads/prophunt-vb5.pk3

Most important changes: ph_notaunts and ph_enablemusic
enjoy!

[spoiler]Changelog:
Vb5
_________
- Some minor changes to the ACS barely worth mentioning [Hypnotoad]
- Added black screen override as suggested by Zeberpal, maps must execute script 750 on the very first tic in order to stop hunters getting black screen and being frozen. [Hypnotoad]
- Made sure taunts end after their duration, even if someone connects with a custom sndinfo [Hypnotoad]
- Added cvar, PH_ENABLEMUSIC to enable music again. Clients should use "set PH_ENABLEMUSIC 1" in console to enable music again, and "archivecvar PH_ENABLEMUSIC 1" to save this in their INI. [Hypnotoad]
- Added cvar, PH_NOTAUNTS to disable taunts. Clients should use "set_PH_NOTAUNTS 1" in console to disable taunts archivecvar PH_NOTAUNTS 1" to save this in their INI. [Frits/Hypnotoad]
- Fixed Computer Area Map Height[/spoiler]
Nice one, btw, u guys should check at the BE Doom + Doom2 server the Burning Barrel and Blue Torch's offets, cause the Burning Barrels are dancing over the floor, and the Blue Torch Prop Class (idk if this is happening to the red and green one) is floating near a normal Red Torch...

RE: Prop Hunt - vb4 is out, featuring PH_MAPPROPSONLY and more!!!

Posted: Sun May 04, 2014 6:17 pm
by Frits
That's because it's hosting doom2 and doom1. If you host ph with doom2 alone this doesn't happen. I'll look into it.


edit: about the height issue. Remove the Maps that are broken from the maplist.

RE: Prop Hunt - vb4 is out, featuring PH_MAPPROPSONLY and more!!!

Posted: Sun May 04, 2014 10:19 pm
by MrSetharoo
This mod is awesome. I had so many hilarious moments of hiding and throwing taunts out to add to the pressure only to eventually get greedy with the taunts and a hunter turn around and blow me up with a grenade.

Also, could we submit sound files for taunts? I have a couple of short sounds clips on my computer that I ripped from videos and what not for shits n' giggles a couple of months back that are just collecting dust.

RE: Prop Hunt - vb5 is out

Posted: Sat May 10, 2014 9:14 pm
by SwordGrunt
Right now the fun is dying out because almost all games are hunters chaingunning everything they see and chaingun tapping on all props they find. Almost no one uses the fist because unless you're going to check several dozen props and not find a single player, it doesn't really matter. And using the shotgun is kind of pointless since chaingun tapping is 100% accurate.

Sure the server can lower the damage inflicted by the shotgun, I lowered it to 5 from 6 and it still doesn't feel worth it, well no one uses it that's for sure, and it's not like shotgun needs a buff, IMO the chaingun tapping just needs to be removed.

RE: Prop Hunt - vb5 is out

Posted: Sat May 10, 2014 9:35 pm
by EnsaladaDeTomate
SwordGrunt wrote: Right now the fun is dying out because almost all games are hunters chaingunning everything they see and chaingun tapping on all props they find. Almost no one uses the fist because unless you're going to check several dozen props and not find a single player, it doesn't really matter. And using the shotgun is kind of pointless since chaingun tapping is 100% accurate.

Sure the server can lower the damage inflicted by the shotgun, I lowered it to 5 from 6 and it still doesn't feel worth it, well no one uses it that's for sure, and it's not like shotgun needs a buff, IMO the chaingun tapping just needs to be removed.
^ This...

The first's betas were a lot better than those ones...

Infinite Taunts, props without 100% resistance on acid/lava floors, no crouching, dynamic lights enabled, the lack of hp on small props and beign slower than normal props, < Hunter's killing them by 1 shoot, etc.... kind of ruined the game....