1

Topic: [SOS] Rcon commands

Hi.
What commands can i use in remote console? In documentation is only status, restart and kick . But there are the broadcast, say or set_team command, too! What next commands are there?

Thank for reply and understand,
Khubajsn

Goodbye all. Account inactive since March 2011.

2

Re: [SOS] Rcon commands

/* copyright (c) 2007 magnus auvinen, see licence.txt for more info */
2     MACRO_CONFIG_INT(cl_predict, 1, 0, 1)
3     MACRO_CONFIG_INT(cl_nameplates, 0, 0, 1)
4     MACRO_CONFIG_INT(cl_nameplates_always, 0, 0, 1)
5     MACRO_CONFIG_INT(cl_autoswitch_weapons, 0, 0, 1)
6    
7     MACRO_CONFIG_INT(cl_showfps, 0, 0, 1)
8    
9     MACRO_CONFIG_INT(cl_airjumpindicator, 1, 0, 1)
10     MACRO_CONFIG_INT(cl_threadsoundloading, 0, 0, 1)
11    
12    
13     MACRO_CONFIG_INT(cl_warning_tuning, 1, 0, 1)
14     MACRO_CONFIG_INT(cl_prompt_teambalance, 1, 0, 1)
15    
16     MACRO_CONFIG_INT(cl_mouse_deadzone, 300, 0, 0)
17     MACRO_CONFIG_INT(cl_mouse_followfactor, 60, 0, 200)
18     MACRO_CONFIG_INT(cl_mouse_max_distance, 800, 0, 0)
19    
20    
21     MACRO_CONFIG_INT(ed_showkeys, 0, 0, 1)
22    
23     MACRO_CONFIG_INT(cl_flow, 0, 0, 1)
24    
25     MACRO_CONFIG_INT(cl_show_welcome, 1, 0, 1)
26     MACRO_CONFIG_INT(cl_motd_time, 10, 0, 100)
27    
28     MACRO_CONFIG_STR(cl_version_server, 100, "version.teeworlds.com")
29    
30     MACRO_CONFIG_INT(player_use_custom_color, 0, 0, 1)
31     MACRO_CONFIG_INT(player_color_body, 65408, 0, 0)
32     MACRO_CONFIG_INT(player_color_feet, 65408, 0, 0)
33     MACRO_CONFIG_STR(player_skin, 64, "default")
34    
35     MACRO_CONFIG_INT(dbg_dummies, 0, 0, 11)
36     MACRO_CONFIG_INT(dbg_firedelay, 0, 0, 1)
37     MACRO_CONFIG_INT(dbg_flow, 0, 0, 1)
38     MACRO_CONFIG_INT(dbg_tuning, 0, 0, 1)
39    
40     MACRO_CONFIG_INT(ui_page, 3, 0, 5)
41     MACRO_CONFIG_STR(ui_server_address, 128, "localhost:8303")
42     MACRO_CONFIG_INT(ui_scale, 100, 1, 100000)
43    
44     MACRO_CONFIG_INT(ui_color_hue, 160, 0, 255)
45     MACRO_CONFIG_INT(ui_color_sat, 70, 0, 255)
46     MACRO_CONFIG_INT(ui_color_lht, 175, 0, 255)
47     MACRO_CONFIG_INT(ui_color_alpha, 228, 0, 255)
48    
49    
50     MACRO_CONFIG_INT(sv_warmup, 0, 0, 0)
51     MACRO_CONFIG_STR(sv_motd, 900, "")
52     MACRO_CONFIG_INT(sv_teamdamage, 0, 0, 1)
53     MACRO_CONFIG_STR(sv_maprotation, 512, "")
54     MACRO_CONFIG_INT(sv_rounds_per_map, 1, 1, 100)
55     MACRO_CONFIG_INT(sv_powerups, 1, 0, 1)
56     MACRO_CONFIG_INT(sv_scorelimit, 20, 0, 1000)
57     MACRO_CONFIG_INT(sv_timelimit, 0, 0, 1000)
58     MACRO_CONFIG_STR(sv_gametype, 32, "dm")
59     MACRO_CONFIG_INT(sv_tournament_mode, 0, 0, 1)
60     MACRO_CONFIG_INT(sv_spamprotection, 1, 0, 1)
61    
62     MACRO_CONFIG_INT(sv_spectator_slots, 0, 0, 12)
63     MACRO_CONFIG_INT(sv_teambalance_time, 1, 0, 1000)

2331             MACRO_REGISTER_COMMAND("tune", "si", con_tune_param, 0);
2332             MACRO_REGISTER_COMMAND("tune_reset", "", con_tune_reset, 0);
2333             MACRO_REGISTER_COMMAND("tune_dump", "", con_tune_dump, 0);
2334    
2335             MACRO_REGISTER_COMMAND("restart", "?i", con_restart, 0);
2336             MACRO_REGISTER_COMMAND("broadcast", "r", con_broadcast, 0);
2337             MACRO_REGISTER_COMMAND("say", "r", con_say, 0);
2338             MACRO_REGISTER_COMMAND("set_team", "ii", con_set_team, 0);

3

Re: [SOS] Rcon commands

Thank you ;-)

Goodbye all. Account inactive since March 2011.