Are you mad ? have you got any idea how much damage i do with just a "normal" hc?ZoRoXo wrote:maybe a "rambo" powerup that gives u 2x speed, +200 health and forced HC (forced means that u cannot unequip it) FTW
Suggestions ?
Moderators: arild, Maniac-, WizardExt, Moderators
There's a chopper coming in 3 days and there's a katana on top of the cafe and that's all you need to know
I really liked the idea of some kind of "hero" powerup instead of a typical "rune" sort of powerup.
For example an "Ash's boomstick"*:
- Giving you a better performance with M3 (increasing long distance damage, f.ex.) and eventually HC too.
- No bleeding damage, maybe (he cut his hand off afterall)
- A chainsaw (nah, just kidding, right? hehe)
- Punch/kick powered up (more damage and/or strength).
I think we could come up with some more powerups if the idea is liked. In my opinion adding some more stuff from action-movies, or from movies in general will revive the stuff we were used to. And will make the CTF mod an ActionCTF and not just CTF in Action, if you know what I mean.
Besides, who wouldn't like better to get that glowing M3 and read "You got Ash's Boomstick... you feel gooood." than "Offensive Rune acquired."
*: Ash from the Evil Dead trilogy.
For example an "Ash's boomstick"*:
- Giving you a better performance with M3 (increasing long distance damage, f.ex.) and eventually HC too.
- No bleeding damage, maybe (he cut his hand off afterall)
- A chainsaw (nah, just kidding, right? hehe)
- Punch/kick powered up (more damage and/or strength).
I think we could come up with some more powerups if the idea is liked. In my opinion adding some more stuff from action-movies, or from movies in general will revive the stuff we were used to. And will make the CTF mod an ActionCTF and not just CTF in Action, if you know what I mean.
Besides, who wouldn't like better to get that glowing M3 and read "You got Ash's Boomstick... you feel gooood." than "Offensive Rune acquired."
*: Ash from the Evil Dead trilogy.
Ne quid nimis.
Speed is not possible to increase. We've already tried that.
And yes the HC thing sounds cool. But I see more disadvantage with that since the only thing you can do is running like hell and kill the ones you have in closecombat. Without the speedup it doesnt really give you anything.
And I must qoute you Caracol.
"I think we could come up with some more powerups if the idea is liked. In my opinion adding some more stuff from action-movies, or from movies in general will revive the stuff we were used to. And will make the CTF mod an ActionCTF and not just CTF in Action, if you know what I mean. "
-Alex
And yes the HC thing sounds cool. But I see more disadvantage with that since the only thing you can do is running like hell and kill the ones you have in closecombat. Without the speedup it doesnt really give you anything.
And I must qoute you Caracol.
"I think we could come up with some more powerups if the idea is liked. In my opinion adding some more stuff from action-movies, or from movies in general will revive the stuff we were used to. And will make the CTF mod an ActionCTF and not just CTF in Action, if you know what I mean. "
-Alex
Hapid00!!
Hero powerup, good idea. Create them after some famous Action actors ala chuck norris or steven segalCaracol wrote:I really liked the idea of some kind of "hero" powerup instead of a typical "rune" sort of powerup.
For example an "Ash's boomstick"*:
- Giving you a better performance with M3 (increasing long distance damage, f.ex.) and eventually HC too.
- No bleeding damage, maybe (he cut his hand off afterall)
- A chainsaw (nah, just kidding, right? hehe)
- Punch/kick powered up (more damage and/or strength).
I think we could come up with some more powerups if the idea is liked. In my opinion adding some more stuff from action-movies, or from movies in general will revive the stuff we were used to. And will make the CTF mod an ActionCTF and not just CTF in Action, if you know what I mean.
Besides, who wouldn't like better to get that glowing M3 and read "You got Ash's Boomstick... you feel gooood." than "Offensive Rune acquired."
*: Ash from the Evil Dead trilogy.
There's a chopper coming in 3 days and there's a katana on top of the cafe and that's all you need to know
Careful I believe it is possible. I actually did some testing today for fun. Movement speed is maxed at 300 for x/y (and inaccessible to mods), but not velocity... so my general idea for my test was if the player is doing a move (usercmd_t forwardmove or sidemove), adjust the pmove velocity accordingly per x/y axis. So I did that (to an extent) and found that air control bug thing mentioned in another post. Ok, so when the person is in the air (!groundentity), bypass the velocity adjusting so it is back to normal and the person's current velocities will be kept. So after my quick test, I had the player walking at a speed of 750 along an axis which was either x or y... didn't care to find out. Remember the normal speed is 300, so I increased it quite a bit since I wanted to make sure it worked right.arild wrote:Speed is not possible to increase. We've already tried that.
Ok I say 'to an extent' for the x/y axis movement stuff because this was just a quick test and didn't want to take much time doing more tests. In my thinking, some vector math or trig will be involved in finding exactly how much to adjust both axis and didn't care to think about it too much atm This was more of a test to let you know that it should be possible.
Player animations, weapon switches, reloads, and firing rates can also be increased to make a haste item.
As for suggestions, you can play with gravity settings on a per player basis, so you could make something like an anti-gravity boot powerup. Also if you are going towards classes, you could make bigger guns weigh you down more.
A funny item could be invisibility, where you could just leave the vwep model showing... nothing like being chased down by a rouge shotgun
What about items/weapons to create distractions? Noise makers? Toss a noise gren and after 5 seconds it sounds like a battle is going on for a few seconds? hehe
I just couldn't let this haste issue go... hehe. SO here's a 2x haste test demo
Note that player speeds can be increased by anything. For this demo, I just did a 100% increase giving a speed around 600 instead of the usual 300. I threw in the fast shooting, weapon switching, and player animations just for show really... that was only 2 lines of code with 1 second worth of thought put into it.
http://patman.byethost6.com/haste_patman.dm2
Coding wise, speed increase was 23 lines in 1 block (15 coding). The concept isn't hard to understand. Basically you scale velocity according to player angle, movement input values, and your specified speed increase value.
Here's the source:
http://patman.byethost6.com/speedhaste.c
(Note: Haste speed is always set for running status... trying to walk does not slow you down. That's the way I think it should be, but fix it if you want, heh)
Questions/Comments, lemme know. HAVE FUN!
Note that player speeds can be increased by anything. For this demo, I just did a 100% increase giving a speed around 600 instead of the usual 300. I threw in the fast shooting, weapon switching, and player animations just for show really... that was only 2 lines of code with 1 second worth of thought put into it.
http://patman.byethost6.com/haste_patman.dm2
Coding wise, speed increase was 23 lines in 1 block (15 coding). The concept isn't hard to understand. Basically you scale velocity according to player angle, movement input values, and your specified speed increase value.
Here's the source:
http://patman.byethost6.com/speedhaste.c
(Note: Haste speed is always set for running status... trying to walk does not slow you down. That's the way I think it should be, but fix it if you want, heh)
Questions/Comments, lemme know. HAVE FUN!
I like you idea Pat. However, when we tried haste out it was kind of like that. Would have appreciated if you tried one thing for me. If i remember correct the haste was put at 450, maybe 600 when we tried Maniac's haste. dont know for sure.
Anyways, you got some major speed. Try to run from highest roof to middle roof at urban.
We were able to do that without jumping. Just walking straight over the edge and you by the speed flew to middle roof.
-Alex
Anyways, you got some major speed. Try to run from highest roof to middle roof at urban.
We were able to do that without jumping. Just walking straight over the edge and you by the speed flew to middle roof.
-Alex
Hapid00!!
You can't walk from the top to the middle with double speed. This haste code has no air control to it, which if there was air control, you would be able to walk straight across and you would get huge speed boosts when in the air. Maybe Maniac's code didn't have the air bug fixed? For this code, your running speed will always be the same. Just think of it as running double speed and everything else is the same as it is supposed to be.