Hi Progman, sorry for not answering your post before; I'll answer both now..
Quote:
What about a patch setting for the prefix a sign must have? For #openttdcoop we use "{SPACE}foobar" for special signs like for junctions. If you set the prefix to a single space instead of "#" they get automatically catched instead of having one sign for the normal name and under that a timelapse sign for capturing the location.
Hm, I've never seen a patch setting that handles a string.. or a char if we restrict this on one letter. Well, for a char, I could just insert a patch setting that accepts a uint and interpret it as ASCII number. Yes, I can do this as a non-GUI patch option.. you have to look up the number for your preferred character yourself though. Standard would be 35 ("#") and you can easily change it to 32 (" ").
In the meantime, you could hardcode this yourself by changing line 88 in the latest patch file (r14511), or respectively that line in date.cpp after patching the source from
Code:
+ if (si->name != NULL && *si->name == '#') {to
Code:
+ if (si->name != NULL && *si->name == ' ') {I'm wondering though if it isn't a bit over the top - every such sign would get a local view, that can easily get too much...
Quote:
Another suggestion is to have captching local views not only for signs but also for stations which use the prefix like having a station " COAL DROP".
This shouldn't be too hard to archieve. Again that would make performance worse - having to iterate through the list of all stations... but I can include it with an on/off option.
Quote:
I have test it on the #openttdcoop public server. It works very well but the inactivity may be a problem (several screenshots are the same). Is is possible to not just use a delay in days but also a delay in DoCommand*()s? Sth. like every "min(1month, 500DoCommand)" a screenshot, whichever comes first?
Now this is something

I can't tell you if I can do it - have to investigate the code a bit and see...
By the way, what codec did you use to encode your videos? Unfortunately I can't watch them
