For all the help you need with Armagetron!
Kijutsu
Match Winner
Posts: 676 Joined: Mon Jan 11, 2010 6:37 pm
Post
by Kijutsu » Wed Feb 29, 2012 5:18 pm
Never really looked at these options so I don't know if it matters, but...
..what should my ping charity / input rate & output rate be with a connection like this (stable):
Thanks
Last edited by
Kijutsu on Wed Feb 29, 2012 11:13 pm, edited 1 time in total.
Z-Man
God & Project Admin
Posts: 11736 Joined: Sun Jan 23, 2005 6:01 pm
Location: Cologne
Contact:
Post
by Z-Man » Wed Feb 29, 2012 5:35 pm
Rates maxed out. That goes for everyone on broadband.
Ping charity can be whatever you feel like giving. It won't affect your likelihood to slide, just the pvp part of the ping. 100 is fine nowadays.
Kijutsu
Match Winner
Posts: 676 Joined: Mon Jan 11, 2010 6:37 pm
Post
by Kijutsu » Wed Feb 29, 2012 11:12 pm
Thanks.
Another (unrelated) question, when I switch back from fullscreen in .4 my entire computer lags for some reason.. .2.8 never had this so I'm assuming it's something with this version. I had that problem with .3 too, it's annoying, any way to fix this?
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:
Post
by Phytotron » Thu Mar 01, 2012 12:35 am
When I switch back to fullscreen the game lags for a round, with huge lag-o-meters to go along. This with 0.2.8. x through 0.2.9.
AI-team
Shutout Match Winner
Posts: 1020 Joined: Tue Jun 23, 2009 6:17 pm
Location: Germany/Munich
Contact:
Post
by AI-team » Thu Mar 01, 2012 12:37 am
Phytotron wrote: When I switch back to fullscreen the game lags for a round, with huge lag-o-meters to go along. This with 0.2.8. x through 0.2.9.
Exactly the same here. Using 0.4 and Windows 7 x64
"95% of people believe in every quote you post on the internet" ~ Abraham Lincoln
Kijutsu
Match Winner
Posts: 676 Joined: Mon Jan 11, 2010 6:37 pm
Post
by Kijutsu » Thu Mar 01, 2012 12:58 pm
My computer should easily be able to handle switching from fullscreen in tron, other games that use more resources can, so. Come to think about it, alt-tabbing in this game is a betch.
AI-team
Shutout Match Winner
Posts: 1020 Joined: Tue Jun 23, 2009 6:17 pm
Location: Germany/Munich
Contact:
Post
by AI-team » Thu Mar 01, 2012 1:18 pm
I manged to speed up the switching by experimenting around with some display settings. There might be a chance of finding the right settings again
"95% of people believe in every quote you post on the internet" ~ Abraham Lincoln
Kijutsu
Match Winner
Posts: 676 Joined: Mon Jan 11, 2010 6:37 pm
Post
by Kijutsu » Thu Mar 01, 2012 2:38 pm
Okay, cockpit question: I'm trying to get my ping/ms to show on my screen, but the number value stays blank.
Screenshot
Code
Code: Select all
<!-- label: time & fps -->
<Label camera="all" viewport="top" toggle="1" toggleSticky="true" toggleDefault="on">
<Position x="0.85" y="0.50"/><Size height="0.04" width="0.02"/>
<DataSet id="hours">
<AtomicData source="current_hours" minwidth="2" fill="0"/>
</DataSet><DataSet id="minutes">
<AtomicData source="current_minutes" minwidth="2" fill="0"/>
</DataSet>
<DataSet id="FPS">
<AtomicData source="current_framerate"/>
</DataSet>
<DataSet id="ping">
<AtomicData source="current_ping"/>
</DataSet>
<Face>
<Table>
<Row>
<Cell><GameData data="hours"/>
<Text value=":"/>
<GameData data="minutes"/>
</Cell>
</Row>
<Row>
<Cell>
<GameData data="FPS"/>
<Text value=" FPS"/>
</Cell>
</Row>
<Row>
<Cell>
<GameData data="ping"/>
<Text value=" MS"/>
</Cell>
</Row>
</Table>
</Face>
</Label>
<!-- label: time & fps -->
How2fix? :3
AI-team
Shutout Match Winner
Posts: 1020 Joined: Tue Jun 23, 2009 6:17 pm
Location: Germany/Munich
Contact:
Post
by AI-team » Thu Mar 01, 2012 2:43 pm
edit: nvm, it doesn't work
"95% of people believe in every quote you post on the internet" ~ Abraham Lincoln
Kijutsu
Match Winner
Posts: 676 Joined: Mon Jan 11, 2010 6:37 pm
Post
by Kijutsu » Thu Mar 01, 2012 3:32 pm
Mm, doesn't work.
Anyone?
dlh
Formerly That OS X Guy
Posts: 2035 Joined: Fri Jan 02, 2004 12:05 am
Contact:
Post
by dlh » Thu Mar 01, 2012 4:18 pm
Change
Code: Select all
<AtomicData source="current_ping"/>
to
Code: Select all
<AtomicData field="source" source="current_ping" />
Btw, MS is megasiemens—ms is milliseconds.
Kijutsu
Match Winner
Posts: 676 Joined: Mon Jan 11, 2010 6:37 pm
Post
by Kijutsu » Thu Mar 01, 2012 4:24 pm
AI-team
Shutout Match Winner
Posts: 1020 Joined: Tue Jun 23, 2009 6:17 pm
Location: Germany/Munich
Contact:
Post
by AI-team » Thu Mar 01, 2012 4:39 pm
dlh wrote: Change
Code: Select all
<AtomicData source="current_ping"/>
to
Code: Select all
<AtomicData field="source" source="current_ping" />
Yeah, that's also what I suggested. Guess I shouldn't have edited mine
"95% of people believe in every quote you post on the internet" ~ Abraham Lincoln
dlh
Formerly That OS X Guy
Posts: 2035 Joined: Fri Jan 02, 2004 12:05 am
Contact:
Post
by dlh » Thu Mar 01, 2012 4:47 pm
Ping only seems to works when your Label has viewport="all" (the default). You have it set to “top”.
Kijutsu
Match Winner
Posts: 676 Joined: Mon Jan 11, 2010 6:37 pm
Post
by Kijutsu » Thu Mar 01, 2012 4:54 pm
It works now, thanks a lot dlh (and AI for trying.)