forked from headshot2017/teeware-mod
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit f630ae1
Showing
617 changed files
with
191,251 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
bam | ||
.bam | ||
config.lua | ||
datasrc/__pycache__ | ||
datasrc/*.pyc | ||
objs | ||
src/game/generated | ||
|
||
crapnet* | ||
config_store* | ||
config_retrieve* | ||
dilate* | ||
fake_server* | ||
map_resave* | ||
map_version* | ||
mastersrv* | ||
packetgen* | ||
teeworlds* | ||
teeworlds_srv* | ||
tileset_border* | ||
twping* | ||
versionsrv* | ||
|
||
Debug | ||
bam | ||
buildlog.txt | ||
bam.exe | ||
*.bat | ||
.cproject | ||
.project | ||
*.dtb | ||
*.log | ||
*.exe | ||
*.res | ||
*.patch | ||
*.prefs | ||
*.lnk | ||
*.pdb | ||
*.sdf | ||
*.sln | ||
*.suo | ||
*.swp | ||
*.vcxproj | ||
*.filters | ||
*.user | ||
*.cmd | ||
.settings | ||
*.opensdf | ||
*.pyc | ||
*.dll | ||
|
||
DDNet* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#TeeWare mod | ||
================================ | ||
|
||
A Teeworlds mod based on DDNet, with WarioWare-style gameplay revolving around fast-paced "microgames". |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,191 @@ | ||
# | ||
# autoexec_server.cfg | ||
# | ||
# See http://ddnet.tw/settingscommands for all available settings. | ||
# Everything following a # is considered a comment and ignored by the server. | ||
# When an option can be enabled or disabled, it's enabled with 1, disabled with 0. | ||
# | ||
|
||
|
||
|
||
# GENERAL OPTIONS | ||
# --------------- | ||
|
||
# Server port (only port range 8303-8310 show up in LAN tab) | ||
sv_port 8303 | ||
|
||
# Server name | ||
sv_name "warioware test" | ||
|
||
# Password for joining the server, empty for no password | ||
password "" | ||
|
||
# rcon (F2) passwords for admin. If you don't set one, a random one will be | ||
# created and shown in the terminal window of the server. | ||
sv_rcon_password "poprocks" | ||
|
||
# rcon (F2) password for moderator. If you don't set one, none exists. | ||
sv_rcon_mod_password "" | ||
|
||
# rcon (F2) password for helper. If you don't set one, none exists. | ||
sv_rcon_helper_password "" | ||
|
||
# Map to start server with | ||
sv_map "WarioWare" | ||
|
||
# Whether this is a test server and rcon cheats are allowed. Also indicated in | ||
# the server type, which is: | ||
# - "DDraceNetwork" for 0 (no cheats) and | ||
# - "TestDDraceNetwo" for 1 (cheats) | ||
sv_test_cmds 1 | ||
|
||
# Register server (make it public) | ||
sv_register 1 | ||
|
||
|
||
|
||
# ADVANCED OPTIONS | ||
# ---------------- | ||
|
||
# File where server log will be stored | ||
logfile "autoexec_server.log" | ||
|
||
# Folder where map records will be saved | ||
sv_score_folder "records" | ||
|
||
# Max players on server | ||
sv_max_clients 32 | ||
|
||
# Max players with the same IP address | ||
sv_max_clients_per_ip 4 | ||
|
||
# Tournament mode - when enabled players joins the server as spectator | ||
sv_tournament_mode 0 | ||
|
||
# Whether players can pause their character and make it disappear with the /spec command | ||
sv_pauseable 0 | ||
|
||
# Allow /rescue (also /r) command so players can teleport themselves out of freeze | ||
sv_rescue 0 | ||
# Number of seconds inbetween two rescues | ||
sv_rescue_delay 5 | ||
|
||
# Enable ranks after rcon cheats have been used | ||
sv_rank_cheats 1 | ||
|
||
|
||
|
||
# SERVER CUSTOMIZATION | ||
# -------------------- | ||
|
||
# Message on chat displayed when joining | ||
sv_welcome "" | ||
|
||
# File which will have the announcements (each one in new line) | ||
sv_announcement_filename "announcement.txt" | ||
|
||
# Number of minutes before next announcement will be displayed (from the announcement file) | ||
sv_announcement_interval 120 | ||
|
||
# Whether announcements will be displayed in their order or choosen randomly | ||
sv_announcement_random 0 | ||
|
||
# Message of the day to display when joining the server (use "\n" to create new line) | ||
sv_motd "testing warioware mod" | ||
|
||
# Use default DDRace rules | ||
sv_ddrace_rules 0 | ||
|
||
# Own rules (up to 10 lines) | ||
sv_rules_line1 "no moslems" | ||
sv_rules_line2 "NO MOSLEMS" | ||
sv_rules_line3 "N O M O S L E M S" | ||
|
||
# Reset physics tunes after a map change | ||
sv_tune_reset 1 | ||
|
||
# Reset DDRace tunes after a map change | ||
sv_ddrace_tune_reset 1 | ||
|
||
# Use a config file to execute whenever a map is changed | ||
sv_reset_file "reset.cfg" | ||
|
||
|
||
|
||
# CUSTOM VOTES | ||
# ------------ | ||
|
||
# Format: add_vote "[vote name]" "[command 1]; [command 2]; [command 3]; [...]" | ||
# Example: add_vote "Close server" "sv_name Private DDNet server; password My secret password" | ||
# | ||
# To create empty line in votes just use space in name of vote and command | ||
# "info". Every "empty line" vote should have different number of spaces in its | ||
# name, because each vote text has to be unique. | ||
# Example: add_vote " " "info" | ||
# | ||
# You can learn more about tunes on http://ddnet.tw/settingscommands/#tunings | ||
|
||
add_vote "Who's the biggest troll?" "bigtroll" | ||
|
||
|
||
# ADDITIONAL COMMANDS PERMISSIONS | ||
# ------------------------------- | ||
|
||
# You can see all commands which are accessible for specific authentication-levels by using "access_status" | ||
# Format: access_status [0: admin, 1: moderator, 2: helper or 3: user] | ||
# | ||
# Format: access_level [command] [0: admin, 1: moderator, 2: helper or 3: user] | ||
# Where 0 means only accessible for admin, 1 gives access to moderator and 2 gives access to helper | ||
# Example: mod_command ban 1 | ||
|
||
# Non-default commands to which moderators and helpers will have access | ||
access_level left 2 | ||
access_level right 2 | ||
access_level up 2 | ||
access_level down 2 | ||
access_level super 2 | ||
access_level unsuper 2 | ||
access_level tele 2 | ||
access_level totele 2 | ||
access_level totelecp 2 | ||
access_level logout 2 | ||
access_level ninja 2 | ||
access_level grenade 2 | ||
access_level shotgun 2 | ||
access_level rifle 2 | ||
access_level weapons 2 | ||
access_level unweapons 2 | ||
access_level unrifle 2 | ||
access_level unshotgun 2 | ||
access_level ungrenade 2 | ||
access_level unsolo 2 | ||
access_level undeep 2 | ||
access_level status 2 | ||
|
||
# commands for moderators only | ||
access_level ban 1 | ||
access_level unban 1 | ||
access_level ban_range 1 | ||
access_level unban_range 1 | ||
access_level unban_all 1 | ||
access_level bans 1 | ||
access_level bans_save 1 | ||
access_level kick 1 | ||
access_level force_vote 1 | ||
|
||
|
||
|
||
# SPECIAL BROADCAST-SUGGESTION FOR PLAYERS | ||
# ---------------------------------------- | ||
|
||
# Broadcast to display for players without DDNet client | ||
sv_client_suggestion "Get DDNet client from DDNet.tw to use all features on DDNet!" | ||
|
||
# Broadcast to display for players with a very old version of DDNet client | ||
sv_client_suggestion_old "Your DDNet client is old, update it on DDNet.tw!" | ||
|
||
# Broadcast to display for players with known botting client | ||
sv_client_suggestion_bot "Your client has bots and can be remote controlled!\nPlease use another client like DDNet client from DDNet.tw" | ||
|
||
|
||
sv_emoticon_delay 0 |
Oops, something went wrong.