Search found 269 matches

by ivantis
Tue Sep 02, 2008 11:41 pm
Forum: Nexus9
Topic: code spam
Replies: 4
Views: 5831

to minimize server load, you could make the /login /logout commands check to see if the user is spam silenced (by editing engine/ePlayer.cpp)
by ivantis
Tue Aug 26, 2008 10:34 pm
Forum: Development
Topic: Non-standard DTDs and the central resource repository
Replies: 4
Views: 1628

just make your xml validator handle dtds
and why do we even need dtds? it could just trust you not to make a typo
by ivantis
Thu Aug 21, 2008 11:01 pm
Forum: Development
Topic: Winzone Timer designed for race servers
Replies: 16
Views: 4344

you should always add these lines above printing or doing anything with *p and such:

Code: Select all

if (!*p) {
return;
}
it checks if it exists, other wise, if you try to manipulate or print it, the server will crash.
by ivantis
Sun Aug 17, 2008 3:26 pm
Forum: Support
Topic: Game keeps freezing
Replies: 3
Views: 1290

i had that problem running 0.2.8 once
it turned out it was my screensaver, it didnt recognize keystrokes when they were the input to an SDL application
by ivantis
Sun Aug 17, 2008 3:21 pm
Forum: General
Topic: What timezone are you guys playing in?
Replies: 21
Views: 7227

CT is central time right? i voted that
by ivantis
Sun Aug 17, 2008 2:45 am
Forum: Support
Topic: hosting a server on ubuntu
Replies: 12
Views: 3595

you shouldnt download that one, but you should get it from the ubuntu package server. do the command

Code: Select all

sudo apt-get install armagetron-server
then the command

Code: Select all

armagetron-server
the config is kept in /var/games/armagetron-dedicated or something like that
by ivantis
Tue Aug 12, 2008 10:52 pm
Forum: Really General
Topic: New avatar
Replies: 69
Views: 12306

it looks kind of like a fractal from 'Julias nightmare' software that i have on my old mac
by ivantis
Tue Aug 12, 2008 10:50 pm
Forum: Graphical
Topic: bike and wall diferent colors
Replies: 26
Views: 9614

taco and Phytotron, you are both wrong. i was just kidding, and you have the colors all messed up.
color_r_1 16
color_g_1 7
color_b_1 2
by ivantis
Tue Aug 12, 2008 10:47 pm
Forum: Graphical
Topic: So what if...
Replies: 10
Views: 3580

its in the help menu of servers 0.2.8 or higher, but i dont have a client that does that.
by ivantis
Tue Aug 12, 2008 10:45 pm
Forum: Server Administration/Setup
Topic: Coloring Zones
Replies: 8
Views: 2288

no, i mean like, in decimal what is 1 in hexadecimal is ff, what is decimal 0.5 is about 7f in hexadecimal. like in tColoredString thing ( 1, 1, 0.5 ) would be 0xffff7f
by ivantis
Tue Aug 12, 2008 4:34 pm
Forum: Graphical
Topic: So what if...
Replies: 10
Views: 3580

when is someone going to make a client modification that will allow you to do that?
it wouldnt be too hard: if a chat string starts with /con, dont submit it to the server, use the text after /con as a command.
by ivantis
Tue Aug 12, 2008 4:31 pm
Forum: Server Administration/Setup
Topic: Coloring Zones
Replies: 8
Views: 2288

duh. i think an out of date one is at http://ivantis.us.to/gWinZone.cpp, ill replace it with a better one. but i think that one still does the cool colored zones, there are settings: WIN_ZONE_COLOR_R, G, and B DEATH_ZONE_COLOR_R, G and B to change zones color from the default, add those to settings_...
by ivantis
Fri Aug 08, 2008 5:09 pm
Forum: Graphical
Topic: bike and wall diferent colors
Replies: 26
Views: 9614

currently my tail is orange, and my cycle is green, but i wont tell you my secret recipe.
by ivantis
Fri Aug 08, 2008 5:07 pm
Forum: Server Administration/Setup
Topic: Coloring Zones
Replies: 8
Views: 2288

i never thought anyone would ask this, but i made a server hack to do just that. what Operating System is your server running, and what server version (0.2.8, 0.2.8_alpha, or 0.3.0)?
by ivantis
Tue Aug 05, 2008 10:03 pm
Forum: Server Administration/Setup
Topic: compiling ZThread
Replies: 15
Views: 4889

sorry if this was already answered, but i got zthread to work on my ubuntu, how do i compile arma-server with it?