Question about chat on Armagetron
Question about chat on Armagetron
Is there any known way to speed up how fast text scrolls up? I prefer to not use enable_chat 0, since I can't read when people talk to me. Speeding up the rate the text scrolls up will help save my recordings. Maybe only show 1 line at a time?
Pr3
Pr3
Re: Question about chat on Armagetron
Sorry, no, you'll have to hack the source. In rConsole.cpp, you need to edit rConsole::Height() so it reads
and so on. In theory, setting CONSOLE_ROWS 1 should have the same effect, but it doesn't. There's a situation dependant lower limit to that setting. The reason for that was that you don't want the console and possibly active menu to overlap, something we should be able to get rid of now.
Code: Select all
int rConsole::Height(){
return 1;
- AI-team
- Shutout Match Winner
- Posts: 1020
- Joined: Tue Jun 23, 2009 6:17 pm
- Location: Germany/Munich
- Contact:
Re: Question about chat on Armagetron
Hm I don't get it? May you pls explain it ?Z-Man wrote:Sorry, no, you'll have to hack the source. In rConsole.cpp, you need to edit rConsole::Height() so it readsCode: Select all
int rConsole::Height(){ return 1;

"95% of people believe in every quote you post on the internet" ~ Abraham Lincoln
Re: Question about chat on Armagetron
Which part?
- Phytotron
- Formerly Oscilloscope
- Posts: 5042
- Joined: Thu Jun 09, 2005 10:06 pm
- Location: A site or situation, especially considered in regard to its surroundings.
- Contact:
Re: Question about chat on Armagetron
Just to cover the bases of obviousness, you know you can 'page down,' right?
Re: Question about chat on Armagetron
What if you changed the aspect ratio of either the client or the video software so the console is out of frame?
- apparition
- Match Winner
- Posts: 630
- Joined: Sun Dec 03, 2006 9:59 am
- Location: The Mitten, USA
Re: Question about chat on Armagetron
+1
It's almost a compulsion of mine to be pushing my "page down" key (t) when I play. Especially when I'm playing goalie. Even if nothing is written, it's a bad habit I have to page down. And not because I don't want to read everything, it's just on the screen too long.
It's almost a compulsion of mine to be pushing my "page down" key (t) when I play. Especially when I'm playing goalie. Even if nothing is written, it's a bad habit I have to page down. And not because I don't want to read everything, it's just on the screen too long.
Re: Question about chat on Armagetron
Wouldn't console_rows_max do this? I tried it out and if it's changed from the default 19 to 5 it limits it to just displaying 5 lines at a time, console or chat. Any lower than 5 or so and the old chat doesn't clear fast enough though.
You've gone too far, turn back!
Re: Question about chat on Armagetron
Yeah, console_rows_max 0 (or 1) sort of works to keep the console small. It's just certainly not what the OP wanted 

- AI-team
- Shutout Match Winner
- Posts: 1020
- Joined: Tue Jun 23, 2009 6:17 pm
- Location: Germany/Munich
- Contact:
Re: Question about chat on Armagetron
What does rConsole::Height() have to read to make the text scroll faster?Z-Man wrote:Which part?
"95% of people believe in every quote you post on the internet" ~ Abraham Lincoln
Re: Question about chat on Armagetron
It needs to read what I wrote, in the beginning of the function. What comes after that doesn't matter, as the return statement ends the function. You can delete the rest and add a }, or you can just add the return statement and leave the rest there.
- AI-team
- Shutout Match Winner
- Posts: 1020
- Joined: Tue Jun 23, 2009 6:17 pm
- Location: Germany/Munich
- Contact:
Re: Question about chat on Armagetron
Oh ok
I thought you quoted the actual function
I thought you quoted the actual function
"95% of people believe in every quote you post on the internet" ~ Abraham Lincoln