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

Joined: 14 Mar 2006 Posts: 1538
|
Posted: Sat Apr 17, 2010 5:37 am Post subject: Practical Game Logic (QuakeC) Ideas Only Dropbox |
|
|
1. Monsters that only move when you are not looking at them (think of the possibilities). Provided QuakeC can do this. I know QuakeC can do line of sight but not sure if the "behind you" 180 degrees can be ignored from the calc.
2. The concept that using a teleporter damages you slightly.
3. Why does the Portal QuakeC mod crash every non-DarkPlaces engine eventually. Qrack seems rather resistant to the crashing, but still crashes when you do a portal underwater or half-underwater if I recall correctly. And most other engines crash on use of the gun.
/Even if nothing comes of this thread, at least I have recorded this and got them out of my head. _________________ Tomorrow Never Dies. I feel this Tomorrow knocking on the door ... |
|
Back to top |
|
 |
Swift
Joined: 26 Jan 2010 Posts: 44
|
Posted: Sat Apr 17, 2010 7:27 am Post subject: |
|
|
I want to see this QuakeC portal using actualy BSP portals.  |
|
Back to top |
|
 |
Wazat
Joined: 15 Oct 2004 Posts: 732 Location: Middle 'o the desert, USA
|
Posted: Sat Apr 17, 2010 6:06 pm Post subject: Re: Practical Game Logic (QuakeC) Ideas Only Dropbox |
|
|
Baker wrote: | 1. Monsters that only move when you are not looking at them (think of the possibilities). Provided QuakeC can do this. I know QuakeC can do line of sight but not sure if the "behind you" 180 degrees can be ignored from the calc. |
Easily done. Just reverse one of the directions and narrow the dot product to the desired range.
Imagine a stone statue that becomes impervious to damage when you look at it, so you have to turn and fire really fast to harm it, or bounce a grenade off the wall and behind you. It only moves when you look away, so you may not even realize the statue is moving until it slashes you from behind.
Combine that with a mirror in new engines and that could be interesting, though I get the impression that that's not what this thread is about.
Quote: | 2. The concept that using a teleporter damages you slightly. |
Easily done in the teleporter touch function. After teleporting the player, damage him either a set amount, or by a percentage of his HP. _________________ When my computer inevitably explodes and kills me, my cat inherits everything I own. He may be the only one capable of continuing my work. |
|
Back to top |
|
 |
qbism

Joined: 04 Nov 2004 Posts: 82
|
Posted: Sun Apr 18, 2010 5:19 am Post subject: |
|
|
Medusa monster: turns PLAYER into a stone statue when viewed directly. _________________ http://qbism.com |
|
Back to top |
|
 |
ajay

Joined: 29 Oct 2004 Posts: 295 Location: Swindon, UK
|
Posted: Sun Apr 18, 2010 11:09 am Post subject: |
|
|
Weeping angels.... _________________ my site |
|
Back to top |
|
 |
Baker

Joined: 14 Mar 2006 Posts: 1538
|
Posted: Sun Apr 18, 2010 11:12 am Post subject: |
|
|
ajay wrote: | Weeping angels.... |
Shhhhhh.  _________________ Tomorrow Never Dies. I feel this Tomorrow knocking on the door ... |
|
Back to top |
|
 |
Baker

Joined: 14 Mar 2006 Posts: 1538
|
Posted: Sun Apr 18, 2010 11:24 am Post subject: |
|
|
qbism wrote: | Medusa monster: turns PLAYER into a stone statue when viewed directly. |
Stop! Thief!
/No it's all good ... but yeah. I've been trying to think of very strategic game elements beyond shoot and kill. I want some mental engagement in game play. _________________ Tomorrow Never Dies. I feel this Tomorrow knocking on the door ... |
|
Back to top |
|
 |
r00k
Joined: 13 Nov 2004 Posts: 483
|
Posted: Mon Apr 19, 2010 1:19 am Post subject: |
|
|
3d jigsaw, gotta move pieces to get out of the level.
I think monster AI should be coded like old arcade games where they grouped and moved fast in a pattern. Imagine a bunch of running rats or spiders etc.. |
|
Back to top |
|
 |
Wazat
Joined: 15 Oct 2004 Posts: 732 Location: Middle 'o the desert, USA
|
Posted: Mon Apr 19, 2010 3:49 am Post subject: |
|
|
r00k wrote: | I think monster AI should be coded like old arcade games where they grouped and moved fast in a pattern. Imagine a bunch of running rats or spiders etc.. |
Steering behaviors would be cool in Quake. _________________ When my computer inevitably explodes and kills me, my cat inherits everything I own. He may be the only one capable of continuing my work. |
|
Back to top |
|
 |
r00k
Joined: 13 Nov 2004 Posts: 483
|
Posted: Mon Apr 19, 2010 9:24 am Post subject: |
|
|
even 1 model can be a bunch of animated little models running about... |
|
Back to top |
|
 |
frag.machine

Joined: 25 Nov 2006 Posts: 728
|
Posted: Mon Apr 19, 2010 12:41 pm Post subject: |
|
|
Trapbombs, disguised as items, dropped weapons, backpacks or severed heads. If someone touch it, kaboom. Could be a random skill (like in Total Destruction) or something the player can buy/learn in a RPG-like game. Uses rockets (5 ?10 ?). _________________ frag.machine - Q2K4 Project
http://fragmachine.quakedev.com/ |
|
Back to top |
|
 |
Baker

Joined: 14 Mar 2006 Posts: 1538
|
Posted: Mon Apr 19, 2010 11:15 pm Post subject: |
|
|
EF_SHADOWONLY ... don't draw the model but do draw the shadow. Possibly an interesting invisibility effect for multiplayer except that no one uses shadows in multiplayer (and anti-wallhack type stuff would make this method rather inconsistent) ... so maybe this would good for interesting single player monsters where perhaps they are only visible if damaged and otherwise you only get to see their shadow.
/Yes, stepped halfway out of the QuakeC box. _________________ Tomorrow Never Dies. I feel this Tomorrow knocking on the door ... |
|
Back to top |
|
 |
Baker

Joined: 14 Mar 2006 Posts: 1538
|
Posted: Mon Apr 19, 2010 11:17 pm Post subject: |
|
|
I always thought the airgun QuakeC modification was interesting. And yet this has seldom been used thus far.
(The airgun mod could blow items around). _________________ Tomorrow Never Dies. I feel this Tomorrow knocking on the door ... |
|
Back to top |
|
 |
Baker

Joined: 14 Mar 2006 Posts: 1538
|
|
Back to top |
|
 |
Pulseczar

Joined: 12 Aug 2006 Posts: 37
|
Posted: Thu May 13, 2010 2:58 pm Post subject: Re: Practical Game Logic (QuakeC) Ideas Only Dropbox |
|
|
Baker wrote: | 1. Monsters that only move when you are not looking at them (think of the possibilities). Provided QuakeC can do this. I know QuakeC can do line of sight but not sure if the "behind you" 180 degrees can be ignored from the calc. |
http://www.youtube.com/watch?v=muLIPWjks_M
Baker wrote: | I've been trying to think of very strategic game elements beyond shoot and kill. I want some mental engagement in game play. |
You spawn at the beginning of the level. You can't move, but you are handed a Rubik's Cube to solve. When you solve it, all the monsters in the level gib and you advance to the next map. With each level/map, you have less time to solve the cube and/or a harder cube/puzzle to solve (more planes, more sides, etc.). If you don't solve the cube in a certain amount of time, all the monsters on the level come find you and kill you.
Baker wrote: | I always thought the airgun QuakeC modification was interesting. And yet this has seldom been used thus far.
(The airgun mod could blow items around). |
CustomTF used it ('air fist') for years and years. _________________ http://www.customtf.net/
Last edited by Pulseczar on Thu May 13, 2010 3:13 pm; edited 1 time in total |
|
Back to top |
|
 |
|