Bug #1174
cl_hook_gameend timing issue
| Status: | New | Start date: | 04/21/2012 | |
|---|---|---|---|---|
| Priority: | Normal | Due date: | ||
| Assignee: | - | % Done: | 0% | |
| Category: | - | |||
| Target version: | - |
Description
I guess some of you use the alias cl_hook_gameend for making automatic screenshots after endmatch, too (paste this into your autoexec.cfg for testing: alias cl_hook_gameend "screenshot"). It used to make nice screenshots of the scoreboard after endmatch earlier, but nowadays you most of the time dont get the scoreboard on the screenshot, but a closeup view of the player model. Please look at the attached screenshot :)
History
#1
Updated by Spaceman about 1 year ago
Maybe the scoreboard is slow to appear. Try a modified alias
alias cl_hook_gameend "wait ; screenshot" alias cl_hook_gameend "wait ; wait ; screenshot" alias cl_hook_gameend "wait ; wait ; wait ; screenshot"each wait makes the client pause for 1 client frame, there are 25 client frames per second
or
alias cl_hook_gameend "screenshot ; screenshot ; screenshot"screenshot ; screenshot ; screenshot will save 3 screenshots and be quite slow
maybe
alias cl_hook_gameend "defer 0.1 screenshot"