View previous topic :: View next topic |
Author |
Message |
xaGe

Joined: 01 Mar 2006 Posts: 329 Location: Upstate, New York
|
Posted: Mon Jul 16, 2007 2:55 am Post subject: |
|
|
Well you would be the one to ax..
RenegadeC wrote: | I'm surprised nobody has said camera angles and fake dummy players |
|
|
Back to top |
|
 |
leileilol

Joined: 15 Oct 2004 Posts: 1321
|
Posted: Mon Jul 16, 2007 5:05 am Post subject: |
|
|
making an engine side sv_pure in qw helps weed down the dummy players |
|
Back to top |
|
 |
shadowtails
Joined: 30 Jul 2006 Posts: 11
|
Posted: Mon Jul 16, 2007 6:07 pm Post subject: |
|
|
dodging like ut |
|
Back to top |
|
 |
RenegadeC

Joined: 15 Oct 2004 Posts: 370 Location: The freezing hell; Canada
|
Posted: Mon Jul 16, 2007 7:39 pm Post subject: |
|
|
xaGe wrote: | Well you would be the one to ax..
RenegadeC wrote: | I'm surprised nobody has said camera angles and fake dummy players |
|
Yeah but I'm not the one who needs tutorials on it, hence my statement stands |
|
Back to top |
|
 |
redrum

Joined: 28 Mar 2007 Posts: 367 Location: Long Island, New York
|
Posted: Tue Sep 04, 2007 7:21 pm Post subject: |
|
|
What about a tutorial where you run slower and/or don't jump as high as you acquire weapons/ammo/armor? _________________ Welcome to the Overlook Hotel 69.113.123.178:27500 |
|
Back to top |
|
 |
scar3crow Inside3D Staff

Joined: 18 Jan 2005 Posts: 837 Location: Las Vegas, NV
|
Posted: Tue Sep 04, 2007 9:35 pm Post subject: |
|
|
Well, I guess you could always just do a check for a weight value attributed to the player during the moments in code where they jump or run to determine how much push they actually have.
Also have the inventory code update the weight value, so if you fire 50 nails or 25 shells it lowers, if you perform the touch function for a rocket launcher it raises. Just due to the nature of Quake .weight would never lower aside from weapon fire. |
|
Back to top |
|
 |
LordHavoc
Joined: 05 Nov 2004 Posts: 243 Location: western Oregon, USA
|
Posted: Tue Sep 04, 2007 9:44 pm Post subject: |
|
|
scar3crow wrote: | Just due to the nature of Quake .weight would never lower aside from weapon fire. |
In the "Realism" mod I played on a few servers back in 1998, rockets were the only thing counted in weight, you moved slower and slower if you had more than 10 rockets, and could hardly move if you had over 50, it had an impulse to drop 5 rockets, people would spam this to lay out a wall of backpacks blocking some hallways, so that anyone who dared walk through the wall would be an easy target (and would probably be frantically trying to drop them).
Keep in mind that items have an enlarged pickup box, so it was easy to block most hallways with just 3 backpacks, causing people to pick up 1 or 2 of them if they attempted to cross, a few more packs scattered in the hallway turned it into an outright gauntlet of death.
The gameplay began to focus on not carrying too many rockets (15 was about the most anyone dared carry), they were a plague
Also occasionally weapons would jam and become unusable, causing the weapon to be discarded - or in the case of the rocket launcher, it would usually explode, killing everyone in sight (akin to TF detpack), which sometimes led to an actual increase in frags for the victim of the jam. |
|
Back to top |
|
 |
Sajt
Joined: 16 Oct 2004 Posts: 1026
|
Posted: Tue Sep 04, 2007 11:05 pm Post subject: |
|
|
That sounds awesome It would be good Total Farce material if you ask me. _________________ F. A. Špork, an enlightened nobleman and a great patron of art, had a stately Baroque spa complex built on the banks of the River Labe. |
|
Back to top |
|
 |
redrum

Joined: 28 Mar 2007 Posts: 367 Location: Long Island, New York
|
Posted: Wed Sep 05, 2007 2:45 am Post subject: |
|
|
Do I smell a tutorial? _________________ Welcome to the Overlook Hotel 69.113.123.178:27500 |
|
Back to top |
|
 |
Boss429
Joined: 03 Dec 2006 Posts: 22
|
Posted: Wed Sep 05, 2007 4:56 am Post subject: |
|
|
you could try binding a button so that you'll only pick stuff up when the key is pressed down. (I think I tried to code this once myself and couldn't figure it out) |
|
Back to top |
|
 |
Dr. Shadowborg Inside3D Staff

Joined: 16 Oct 2004 Posts: 726
|
Posted: Wed Sep 05, 2007 4:39 pm Post subject: |
|
|
Boss429 wrote: | you could try binding a button so that you'll only pick stuff up when the key is pressed down. (I think I tried to code this once myself and couldn't figure it out) |
That's easy as long as you know how to use aliases and stick a couple of impulse checks (to set a pickup variable) in playerprethink and playerpostthink. (don't forget to reset pickup variable to zero in player.qc's death function) Once you do that, just modify the items in items.qc to check and see if said pickup variable is set and if not, exit the touch function. _________________ "Roboto suggests Plasma Bazooka." |
|
Back to top |
|
 |
LordHavoc
Joined: 05 Nov 2004 Posts: 243 Location: western Oregon, USA
|
Posted: Fri Sep 07, 2007 5:30 am Post subject: |
|
|
Dr. Shadowborg wrote: | That's easy as long as you know how to use aliases and stick a couple of impulse checks (to set a pickup variable) in playerprethink and playerpostthink. (don't forget to reset pickup variable to zero in player.qc's death function) Once you do that, just modify the items in items.qc to check and see if said pickup variable is set and if not, exit the touch function. |
Easier in engines supporting DP_INPUTBUTTONS where other.button8 or similar can be checked in the item's touch function...
There's also a .buttonuse in the DP_BUTTONUSE extension, triggered by the +use command. |
|
Back to top |
|
 |
Spike
Joined: 05 Nov 2004 Posts: 944 Location: UK
|
Posted: Fri Sep 07, 2007 8:52 am Post subject: |
|
|
LordHavoc wrote: |
Easier in engines supporting DP_INPUTBUTTONS where other.button8 or similar can be checked in the item's touch function...
There's also a .buttonuse in the DP_BUTTONUSE extension, triggered by the +use command. |
Sure, but its more fun to do:
alias +crouch "impulse 22"
alias -crouch "impulse 22"
like hexen2 does in a config file
Use a new button bit in your own custom engine? NAH! just create a new impulse! that way the NQ-based protocols can loose it randomly leaving you permanently crouched.
In an ideal world, they would have used seperate imulse values.
But this just goes to show how hard-core they are. _________________ What's a signature? |
|
Back to top |
|
 |
Electro
Joined: 29 Dec 2004 Posts: 241 Location: Brisbane, Australia
|
Posted: Fri Sep 07, 2007 9:25 am Post subject: |
|
|
easy fix!... if that happens just keep spamming your crouch key until you lose data again and you can be able to stand up again _________________ Unit reporting!
http://www.bendarling.net/ |
|
Back to top |
|
 |
Dr. Shadowborg Inside3D Staff

Joined: 16 Oct 2004 Posts: 726
|
Posted: Fri Sep 07, 2007 4:16 pm Post subject: |
|
|
LordHavoc wrote: |
Easier in engines supporting DP_INPUTBUTTONS where other.button8 or similar can be checked in the item's touch function...
There's also a .buttonuse in the DP_BUTTONUSE extension, triggered by the +use command. |
The idea behind my suggestion was so that it would work in any engine, not just DP or any other custom engine.
Spike wrote: |
Sure, but its more fun to do:
alias +crouch "impulse 22"
alias -crouch "impulse 22"
like hexen2 does in a config file
Use a new button bit in your own custom engine? NAH! just create a new impulse! that way the NQ-based protocols can loose it randomly leaving you permanently crouched.
In an ideal world, they would have used seperate imulse values.
But this just goes to show how hard-core they are. |
Hence why I've always used separate impulses when I needed to do secondary and trifire controls in Hellsmash.
Which is why I said a COUPLE of impulse checks in playerprethink and playerpostthink. One for turning it on and one for turning it off.
Since I never play online multiplayer this method is more than adequate for single player.  _________________ "Roboto suggests Plasma Bazooka." |
|
Back to top |
|
 |
|