Spectators cannot go throught doors

Discussion for Level editing, modeling, programming, or any of the other technical aspects of Quake
Post Reply
User avatar
CZghost
Posts: 1943
Joined: Wed Jun 22, 2011 1:45 pm
Location: Czechia
Contact:

Spectators cannot go throught doors

Post by CZghost »

I've compiled map with doors, but don't know, how to make doors ghostly for spectators...
In ID maps spectators can go throught doors (any special function, that will "teleport" spectators to other side), but I don't know, how to do it?

//Edit: I think that common/clusterportal will do it...
[ Linktree | Twitch | YouTube | Instagram | Websites ]
When you feel the worst, turn to the sun and all the shadows will fall behind you.” - John Lennon
User avatar
CZghost
Posts: 1943
Joined: Wed Jun 22, 2011 1:45 pm
Location: Czechia
Contact:

Re: Spectators cannot go throught doors

Post by CZghost »

No, very big mistake... How did ID make doors ghost for spectators?
[ Linktree | Twitch | YouTube | Instagram | Websites ]
When you feel the worst, turn to the sun and all the shadows will fall behind you.” - John Lennon
deqer
Posts: 298
Joined: Mon Dec 28, 2009 6:30 pm

Re: Spectators cannot go throught doors

Post by deqer »

I always thought that was client specific, not map specific. I believe I noticed this on my maps, and I just use regular doors.
User avatar
CZghost
Posts: 1943
Joined: Wed Jun 22, 2011 1:45 pm
Location: Czechia
Contact:

Re: Spectators cannot go throught doors

Post by CZghost »

deqer:
But in ID maps it's enabled going throught doors, in other maps also in my it's disabled. How can I enable ghost doors for spectators?
[ Linktree | Twitch | YouTube | Instagram | Websites ]
When you feel the worst, turn to the sun and all the shadows will fall behind you.” - John Lennon
User avatar
Eraser
Posts: 19175
Joined: Fri Dec 01, 2000 8:00 am

Re: Spectators cannot go throught doors

Post by Eraser »

I don't know what they did in the id software maps, but it appears to be severely bugged. When I try to move through a door as a spectator, I kind of get in some limbo state between sides of the door. Really odd.
dONKEY
Posts: 566
Joined: Mon Oct 15, 2001 7:00 am

Re: Spectators cannot go throught doors

Post by dONKEY »

Spectators dont go through doors in id maps either. Try it, you will see.
I think this feature got broken in one of the game updates.
User avatar
MKJ
Posts: 32582
Joined: Fri Nov 24, 2000 8:00 am

Re: Spectators cannot go throught doors

Post by MKJ »

actually I think this feature was tacked on after release through a patch, with no edits made to the maps. I remember spectators being blocked by doors being one of the more glaring oversights the game had upon release.
User avatar
Eraser
Posts: 19175
Joined: Fri Dec 01, 2000 8:00 am

Re: Spectators cannot go throught doors

Post by Eraser »

But it's clearly broken in 1.32 :shrug:
MetalBeast
Posts: 16
Joined: Sun Aug 14, 2011 2:46 am

Re: Spectators cannot go throught doors

Post by MetalBeast »

If I know you can use "trigger_teleport" and set the SPECTATOR flag, so only spectators will be teleported.

Code: Select all

/*QUAKED trigger_teleport (.5 .5 .5) ? SPECTATOR
Allows client side prediction of teleportation events.
Must point at a target_position, which will be the teleport destination.
 
If spectator is set, only spectators can use this teleport
Spectator teleporters are not normally placed in the editor, but are created
automatically near doors to allow spectators to move through them
*/

User avatar
CZghost
Posts: 1943
Joined: Wed Jun 22, 2011 1:45 pm
Location: Czechia
Contact:

Re: Spectators cannot go throught doors

Post by CZghost »

MetalBeast wrote:If I know you can use "trigger_teleport" and set the SPECTATOR flag, so only spectators will be teleported.

Code: Select all

/*QUAKED trigger_teleport (.5 .5 .5) ? SPECTATOR
Allows client side prediction of teleportation events.
Must point at a target_position, which will be the teleport destination.
 
If spectator is set, only spectators can use this teleport
Spectator teleporters are not normally placed in the editor, but are created
automatically near doors to allow spectators to move through them
*/

OK, I will try it...

// What bit it may be? I'm using Radiant 1.5, entities are in XML format...
[ Linktree | Twitch | YouTube | Instagram | Websites ]
When you feel the worst, turn to the sun and all the shadows will fall behind you.” - John Lennon
obsidian
Posts: 10970
Joined: Mon Feb 04, 2002 8:00 am

Re: Spectators cannot go throught doors

Post by obsidian »

I thought we had this discussion already. ;)

There isn't a spectator only spawnflag, not one that I'm aware of or having ever been documented. Are you sure that's functional for Quake 3 and not for some other game or mod?
[size=85][url=http://gtkradiant.com]GtkRadiant[/url] | [url=http://q3map2.robotrenegade.com]Q3Map2[/url] | [url=http://q3map2.robotrenegade.com/docs/shader_manual/]Shader Manual[/url][/size]
User avatar
CZghost
Posts: 1943
Joined: Wed Jun 22, 2011 1:45 pm
Location: Czechia
Contact:

Re: Spectators cannot go throught doors

Post by CZghost »

CZghost wrote:deqer:
But in ID maps it's enabled going throught doors, in other maps also in my it's disabled. How can I enable ghost doors for spectators?
For ID maps: in q3ctf2 (Troubled Waters) aren't used triggers to open doors, but doors will open already... Must I use triggers for doors? Is it required?

Is also required the teleporting trigger only for spectators?
[ Linktree | Twitch | YouTube | Instagram | Websites ]
When you feel the worst, turn to the sun and all the shadows will fall behind you.” - John Lennon
MetalBeast
Posts: 16
Joined: Sun Aug 14, 2011 2:46 am

Re: Spectators cannot go throught doors

Post by MetalBeast »

obsidian wrote:I thought we had this discussion already. ;)

There isn't a spectator only spawnflag, not one that I'm aware of or having ever been documented. Are you sure that's functional for Quake 3 and not for some other game or mod?
Well, you guys are not really forcing me to install Q3 again ? ;)
Should be SPAWNFLAGS "1"

It's in the Q3 source, so it should be in game :D

http://www.soclose.de/q3doc/g__trigger_8c-source.htm

Try it just out, I havent Q3 installed anymore.
User avatar
CZghost
Posts: 1943
Joined: Wed Jun 22, 2011 1:45 pm
Location: Czechia
Contact:

Re: Spectators cannot go throught doors

Post by CZghost »

Oh my god! I'm surprised! It's functional also without triggers!!! Will it be functional in TA?
[ Linktree | Twitch | YouTube | Instagram | Websites ]
When you feel the worst, turn to the sun and all the shadows will fall behind you.” - John Lennon
MetalBeast
Posts: 16
Joined: Sun Aug 14, 2011 2:46 am

Re: Spectators cannot go throught doors

Post by MetalBeast »

CZghost wrote:Oh my god! I'm surprised! It's functional also without triggers!!!
Will it be functional in TA?
What is funcional without triggers ? Or do you mean "SPAWNFLAGS" ?

What is TA ?
User avatar
CZghost
Posts: 1943
Joined: Wed Jun 22, 2011 1:45 pm
Location: Czechia
Contact:

Re: Spectators cannot go throught doors

Post by CZghost »

MetalBeast wrote:
CZghost wrote:Oh my god! I'm surprised! It's functional also without triggers!!!
Will it be functional in TA?
What is funcional without triggers ? Or do you mean "SPAWNFLAGS" ?

What is TA ?
Do you know Team Arena modification? And it's functuional without triggering the doors by touching trigger_multiple...
In order, the doors open automatically, when player will come closer to it.
[ Linktree | Twitch | YouTube | Instagram | Websites ]
When you feel the worst, turn to the sun and all the shadows will fall behind you.” - John Lennon
MetalBeast
Posts: 16
Joined: Sun Aug 14, 2011 2:46 am

Re: Spectators cannot go throught doors

Post by MetalBeast »

Do you mean, the "trigger_teleport" is functional or what ?
No offence, but please get some time to write the things so everybody can understand them ;)

You should explain, what you did and what is working.

Did you try the "trigger_teleport" with SPAWNFLAGS "1" ?
User avatar
CZghost
Posts: 1943
Joined: Wed Jun 22, 2011 1:45 pm
Location: Czechia
Contact:

Re: Spectators cannot go throught doors

Post by CZghost »

MetalBeast wrote:Do you mean, the "trigger_teleport" is functional or what ?
No offence, but please get some time to write the things so everybody can understand them ;)

You should explain, what you did and what is working.

Did you try the "trigger_teleport" with SPAWNFLAGS "1" ?
So again: I can leave only doors, they will open automatically, when player comes closer...
// Yes, I've tried it...
Last edited by CZghost on Mon Nov 07, 2011 5:47 pm, edited 1 time in total.
[ Linktree | Twitch | YouTube | Instagram | Websites ]
When you feel the worst, turn to the sun and all the shadows will fall behind you.” - John Lennon
User avatar
CZghost
Posts: 1943
Joined: Wed Jun 22, 2011 1:45 pm
Location: Czechia
Contact:

Re: Spectators cannot go throught doors

Post by CZghost »

deqer wrote:I always thought that was client specific, not map specific. I believe I noticed this on my maps, and I just use regular doors.
It's not client specific, but a bug, that is created, when map is compiled from Radiant. The AAS file is added later by BSPC.
[ Linktree | Twitch | YouTube | Instagram | Websites ]
When you feel the worst, turn to the sun and all the shadows will fall behind you.” - John Lennon
deqer
Posts: 298
Joined: Mon Dec 28, 2009 6:30 pm

Re: Spectators cannot go throught doors

Post by deqer »

this thread has become exhausting.
User avatar
CZghost
Posts: 1943
Joined: Wed Jun 22, 2011 1:45 pm
Location: Czechia
Contact:

Re: Spectators cannot go throught doors

Post by CZghost »

OK, down doors are ok, but I must modify up doors (they teleport to void)...

// Also must modify grider, but it's off-topic ;-)
[ Linktree | Twitch | YouTube | Instagram | Websites ]
When you feel the worst, turn to the sun and all the shadows will fall behind you.” - John Lennon
obsidian
Posts: 10970
Joined: Mon Feb 04, 2002 8:00 am

Re: Spectators cannot go throught doors

Post by obsidian »

CZghost, I know that English isn't your language, so perhaps it would be better if you tried to explain exactly what you are doing with a simplified screenshot or illustration. I read the above three times now and I still have no idea what you are doing.
[size=85][url=http://gtkradiant.com]GtkRadiant[/url] | [url=http://q3map2.robotrenegade.com]Q3Map2[/url] | [url=http://q3map2.robotrenegade.com/docs/shader_manual/]Shader Manual[/url][/size]
User avatar
CZghost
Posts: 1943
Joined: Wed Jun 22, 2011 1:45 pm
Location: Czechia
Contact:

Re: Spectators cannot go throught doors

Post by CZghost »

obsidian wrote:CZghost, I know that English isn't your language, so perhaps it would be better if you tried to explain exactly what you are doing with a simplified screenshot or illustration. I read the above three times now and I still have no idea what you are doing.
Yes, you know right... Screenshot from editor:
Image
[ Linktree | Twitch | YouTube | Instagram | Websites ]
When you feel the worst, turn to the sun and all the shadows will fall behind you.” - John Lennon
Post Reply