[<1551-4343]'wait' doesn't work in console [long title]

Bugs that have been investigated and resolved somehow.

Moderator: GZDoom Developers

Forum rules
Please don't bump threads here if you have a problem - it will often be forgotten about if you do. Instead, make a new thread here.
Post Reply
Edward-san
Posts: 1774
Joined: Sat Oct 17, 2009 9:40 am

[<1551-4343]'wait' doesn't work in console [long title]

Post by Edward-san »

[<1551-4343]'wait' doesn't work in console when there's intermission or just after the program is loaded

Original report from zandronum.
Try this in console in these situations:

Code: Select all

say blablabla;wait 35;say still blablabla
It'll display "blablabla" message but won't display "still blablabla" like in the game. It happens with the other commands, too. I tried to change mouse_sensitivity after 'wait' but didn't work.
User avatar
Graf Zahl
Lead GZDoom+Raze Developer
Lead GZDoom+Raze Developer
Posts: 49230
Joined: Sat Jul 19, 2003 10:19 am
Location: Germany

Re: [<1551-4343]'wait' doesn't work in console [long title]

Post by Graf Zahl »

I'm not surprised. Since the playsim isn't running, neither is the game ticker.
User avatar
randi
Site Admin
Posts: 7749
Joined: Wed Jul 09, 2003 10:30 pm
Contact:

Re: [<1551-4343]'wait' doesn't work in console [long title]

Post by randi »

Waiting commands are stored in regular thinkers, so if the game isn't thinking, they can't do anything. And like regular thinkers, they also get destroyed when you move to a new map.
User avatar
Leonard2
Posts: 313
Joined: Tue Aug 14, 2012 6:10 pm

Re: [<1551-4343]'wait' doesn't work in console [long title]

Post by Leonard2 »

Was there any specific reason for DWaitingCommand to be a DThinker?
The waiting commands could be stored in something like a TArray that would be iterated through in C_Ticker instead, that would solve the problem described here.
Sorry for the huge bump but I didn't know where else to ask.
Edward-san
Posts: 1774
Joined: Sat Oct 17, 2009 9:40 am

Re: [<1551-4343]'wait' doesn't work in console [long title]

Post by Edward-san »

Leonard2 wrote:Sorry for the huge bump but I didn't know where else to ask.
You could open a new thread in 'Generals', I guess, by linking this thread.

Any moderator, can you split and move this away?
Post Reply

Return to “Closed Bugs [GZDoom]”