how to disable ladder?

For all the help you need with Armagetron!
Post Reply
User avatar
Rain
Round Winner
Posts: 300
Joined: Sat Apr 15, 2006 2:59 pm
Location: a random empty server playing with bots

how to disable ladder?

Post by Rain »

how can i hide or disable ladder on a server?
User avatar
wrtlprnft
Reverse Outside Corner Grinder
Posts: 1679
Joined: Wed Jan 04, 2006 4:42 am
Location: 0x08048000
Contact:

Post by wrtlprnft »

Upgrade to 0.3.0, it doesn't have a ladder.

Or empty the language strings in language/english_base.txt that tell the user that he dropped by or gained so and so many points or that he changed his rank because someone else got a different score.

That would be:

Code: Select all

ladder_description		ladder
ladder_message_entered		\1 entered the \2 list with \3 points 
ladder_message_gained		\1 gained \5 points on the \2 
ladder_message_lost		\1 lost \5 points on the \2 
ladder_message_move_top		and moved to the top!
ladder_message_move_pos		and moved to position \4.
ladder_message_stay_top		and stayed at the top.
ladder_message_stay_pos		but stayed at position \4.
Just remove/modify the strings, but leave the identifiers there:

Code: Select all

ladder_description        
ladder_message_entered    
ladder_message_gained     
ladder_message_lost       
ladder_message_move_top   
ladder_message_move_pos   
ladder_message_stay_top   
ladder_message_stay_pos    
There will still be a message telling you on what position you are on the ladder if you enter a server, you can't disable that selectively, you'll have to disable the other stats (won rounds/matches, singleplayer highscores), too:

Code: Select all

league_message_greet_intro   
league_message_greet_sep     
league_message_greet_lastsep 
league_message_greet         
league_message_greet_new     
There's no place like ::1
User avatar
Rain
Round Winner
Posts: 300
Joined: Sat Apr 15, 2006 2:59 pm
Location: a random empty server playing with bots

Post by Rain »

thanks
Post Reply