FAQ/ko: Difference between revisions

From DDraceNetwork
No edit summary
(Updating to match new version of source page)
 
(9 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{LangNavBox}}
{{MigrateTranslation}}
<languages/>
<div lang="en" dir="ltr" class="mw-content-ltr">
Here you can find a collection of '''''frequently asked questions'''''. If you want to know how to contribute to this wiki, you can take a look at [[Special:MyLanguage/How to contribute|How to contribute]].
</div>


해당 페이지는 '''''자주 묻는 질문''''' 모음을 찾을 수 있습니다.
<div lang="en" dir="ltr" class="mw-content-ltr">
If you don't find the answers you want here, you can go to the [https://ddnet.org/discord official Discord].
</div>


== 기술적인 질문 ==
<div lang="en" dir="ltr" class="mw-content-ltr">
===DDNet 구성, 구성 디렉토리 또는 저장 디렉토리는 어디에 있나요?===
== Technical Questions ==
</div>
 
<span id="config-dir"></span>
<div lang="en" dir="ltr" class="mw-content-ltr">
===Where is the DDNet config, config directory or save directory?===
</div>
 
<div lang="en" dir="ltr" class="mw-content-ltr">
'''<u>Windows</u>'''
'''<u>Windows</u>'''
</div>


과거: <code>%appdata%\Teeworlds</code>
<div lang="en" dir="ltr" class="mw-content-ltr">
Old: <code>%appdata%\Teeworlds</code>
</div>


현재: <code>%appdata%\DDNet</code>
<div lang="en" dir="ltr" class="mw-content-ltr">
New: <code>%appdata%\DDNet</code>
</div>


<div lang="en" dir="ltr" class="mw-content-ltr">
'''<u>Linux</u>'''
'''<u>Linux</u>'''
</div>


과거: <code>~/.teeworlds</code>
<div lang="en" dir="ltr" class="mw-content-ltr">
Old: <code>~/.teeworlds</code>
</div>


현재: <code>~/.local/share/ddnet</code>
<div lang="en" dir="ltr" class="mw-content-ltr">
New: <code>~/.local/share/ddnet</code>
</div>


<div lang="en" dir="ltr" class="mw-content-ltr">
'''<u>macOS</u>'''
'''<u>macOS</u>'''
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Old: <code>~/Library/Application Support/Teeworlds</code>
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
New: <code>~/Library/Application Support/DDNet</code>
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Inside the <code>settings_ddnet.cfg</code> file will be your configurations/settings. The config directory can also be used as data directory to replace skins or other files, without modifying the client's data directory (Note: it has the same directory structure as the data directory).
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
===My game skin, entities, autoexec or any other file was overwritten by an update, why?===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
During development we regularly replace, update, or remove files. The updater will overwrite any changes made to the data and binary directories. To make sure that your personal modifications don't get lost use the config directory instead, it has the same directory structure as the "data"-directory that comes with the client.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Is there any documentation about the DDraceNetwork code? ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
The [[Special:MyLanguage/Development|Development]] page and some [[Special:MyLanguage/Resources#Blog Posts|blog posts]] may help you. You can also find auto-generated docs from Doxygen here: https://codedoc.ddnet.org/.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== The game warns me about images, whose width or height are not divisible by #number, which causes visual bugs, what does it mean? ===
[[File:Texture bleeding tilemap.png|thumb|Texture bleeding because of incorrect resolution|206x206px]]
</div>


과거: <code>~/Library/Application Support/Teeworlds</code>
<div lang="en" dir="ltr" class="mw-content-ltr">
The game tries to give you and graphic designers the best experience. In order to achieve that, it defines clear rules for the layout of its graphics, so that the artists can rely on consistency while creating their work.
</div>


현재: <code>~/Library/Application Support/DDNet</code>
<div lang="en" dir="ltr" class="mw-content-ltr">
For example: In Teeworlds the tile maps are small images inside a bigger image for a total of 16x16 images (tile images). In order to render these tile maps correctly the game needs the image width and height to be divisible by 16, otherwise it can not determine where to split the tilemap into smaller images which represent a single tile.
And thus something called "texture bleeding" occurs, which is quite common in texture atlasses.
</div>


<code>settings_ddnet.cfg</code> 파일 안에 구성/설정이 있습니다. config 디렉토리는 클라이언트의 데이터 디렉토리를 수정하지 않고 스킨이나 다른 파일을 교체하기 위한 데이터 디렉토리로 사용할 수도 있습니다.(참고: 데이터 디렉토리와 동일한 디렉토리 구조를 가집니다.).
<div lang="en" dir="ltr" class="mw-content-ltr">
You can search the internet for more information about that.
</div>


===게임 도중 저장/불러오기는 어떻게 하나요?===
<div lang="en" dir="ltr" class="mw-content-ltr">
Team 모드 내에서 /save 명령어를 사용하면 게임 도중을 저장할 수 있고 세이브 코드를 얻을 수 있습니다.
=== "No answer from server yet."? ===
config 디렉토리 안에는 ddnet-saves.txt라는 파일이 있으며 여기에는 저장 코드가 포함됩니다.
</div>
채팅창에 /load "세이브 코드"를 사용하여 저장해 놨던 기록을 다시 복원할 수 있습니다.
주의: 모든 플레이어가 로드할 '''이름'''이 같은지 확인해주세요. 만약 이름이 틀리시 로드가 되지 않습니다.


===내 게임 스킨, 엔티티, autoexec 또는 기타 파일을 업데이트로 덮어썼습니다. 이유가 무엇인가요?===
<div lang="en" dir="ltr" class="mw-content-ltr">
It is likely the server is down or not reachable from the client, probably due to DoS attacks. You can try again later or visit [[Troubleshooting#Network / Connection problems]] for more information about how to verify that your internet connection is fine.
</div>


개발 중에는 정기적으로 파일을 교체, 업데이트나 제거를 합니다. 업데이터는 데이터 및 이진 디렉터리에 대한 모든 변경 사항을 덮어씁니다. 개인 수정 사항이 손실되지 않도록 config 디렉토리를 사용하십시오. 클라이언트와 함께 제공되는 "data" 디렉토리와 동일한 디렉토리 구조를 갖습니다.
<div lang="en" dir="ltr" class="mw-content-ltr">
=== The servers I play in are gone. What happened? ===
</div>


===게임에서 '너비나 높이를 특정 #number로 나눌 수 없는 이미지에 대해 시각적 버그를 유발합니다.' 뜨는데 무슨 뜻인가요?===
<div lang="en" dir="ltr" class="mw-content-ltr">
First, check if you don't have any filters on that can reduce the amount of servers shown. If this is not the case, keep reading below.
</div>


이 게임은 당신과 그래픽 디자이너에게 최고의 환경을 제공하려고 합니다. 이를 위해 그래픽 레이아웃의 모양을 16x16 픽셀 단위로 정의하기 때문에 그 크기에 맞게 이미를 넣어주세요.
<div lang="en" dir="ltr" class="mw-content-ltr">
This is a problem that can happen from time to time.
</div>


예시:Teeworlds에서 타일 맵은 더 큰 이미지 안에 있는 작은 16x16픽셀 이미지입니다. 이러한 타일 맵을 올바르게 렌더링하려면 게임에서 이미지 너비와 높이를 16으로 나눌 수 있어야 합니다. 그렇지 않으면 타일 맵을 더 작은 타일로 분할할 위치를 결정할 수 없습니다. 그렇지 않으면 "텍스처 블리딩"이라는 현상이 발생합니다.
<div lang="en" dir="ltr" class="mw-content-ltr">
This is a little guide to help as a workaround until it gets fixed.
</div>


인터넷에서 이에 대한 자세한 정보를 검색할 수 있습니다.
<div lang="en" dir="ltr" class="mw-content-ltr">
If you visit [http://ddnet.org/status/ ddnet.org/status/] and your region server says it's up, this means there is a problem that leads to some (or every) servers to not appear in the server list. However, you can still connect to them via IP.
</div>


=== DDraceNetwork 코드에 대한 문서가 있습니까? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
[[Development]] 를 확인해 보세요.
Here is a list of servers domains that you can use to connect from your DDNet Client:
</div>


Doxygen에서 자동 생성된 문서는 여기에서 찾을 수 있습니다: https://codedoc.ddnet.org/
*<span lang="en" dir="ltr" class="mw-content-ltr">Germany2 <code>ger2.ddnet.org</code></span>
*<span lang="en" dir="ltr" class="mw-content-ltr">Germany10 <code>ger10.ddnet.org</code></span>
*<span lang="en" dir="ltr" class="mw-content-ltr">Poland <code>pol.ddnet.org</code></span>
*<span lang="en" dir="ltr" class="mw-content-ltr">Russia <code>rus4.ddnet.org</code></span>
*<span lang="en" dir="ltr" class="mw-content-ltr">Turkey1 <code>tur.ddnet.org</code></span>
*<span lang="en" dir="ltr" class="mw-content-ltr">Turkey2 <code>tur2.ddnet.org</code></span>
*<span lang="en" dir="ltr" class="mw-content-ltr">Persian <code>irn.ddnet.org</code></span>
*<span lang="en" dir="ltr" class="mw-content-ltr">Saudi Arabia <code>sau.ddnet.org</code></span>
*<span lang="en" dir="ltr" class="mw-content-ltr">Chile <code>chl2.ddnet.org</code></span>
*<span lang="en" dir="ltr" class="mw-content-ltr">Brazil <code>bra.ddnet.org</code></span>
*<span lang="en" dir="ltr" class="mw-content-ltr">Argentina <code>arg.ddnet.org</code></span>
*<span lang="en" dir="ltr" class="mw-content-ltr">Peru <code>per.ddnet.org</code></span>
*<span lang="en" dir="ltr" class="mw-content-ltr">USA1 <code>usa1.ddnet.org</code></span>
*<span lang="en" dir="ltr" class="mw-content-ltr">USA2 <code>usa2.ddnet.org</code></span>
*<span lang="en" dir="ltr" class="mw-content-ltr">China0 <code>chn0.ddnet.org</code></span>
*<span lang="en" dir="ltr" class="mw-content-ltr">China1 <code>chn11.ddnet.org</code></span>
*<span lang="en" dir="ltr" class="mw-content-ltr">China2 <code>chn2.ddnet.org</code></span>
*<span lang="en" dir="ltr" class="mw-content-ltr">China3 <code>chn3.ddnet.org</code></span>
*<span lang="en" dir="ltr" class="mw-content-ltr">China4 <code>chn4.ddnet.org</code></span>
*<span lang="en" dir="ltr" class="mw-content-ltr">China5 <code>chn5.ddnet.org</code></span>
*<span lang="en" dir="ltr" class="mw-content-ltr">China6 <code>chn6.ddnet.org</code></span>
*<span lang="en" dir="ltr" class="mw-content-ltr">China7 <code>chn7.ddnet.org</code></span>
*<span lang="en" dir="ltr" class="mw-content-ltr">China8 <code>chn8.ddnet.org</code></span>
*<span lang="en" dir="ltr" class="mw-content-ltr">China9 <code>chn9.ddnet.org</code></span>
*<span lang="en" dir="ltr" class="mw-content-ltr">China12 <code>chn12.ddnet.org</code></span>
*<span lang="en" dir="ltr" class="mw-content-ltr">China13 <code>chn13.ddnet.org</code></span>
*<span lang="en" dir="ltr" class="mw-content-ltr">Taiwan <code>twn.ddnet.org</code></span>
*<span lang="en" dir="ltr" class="mw-content-ltr">Korea <code>kor.ddnet.org</code></span>
*<span lang="en" dir="ltr" class="mw-content-ltr">Singapore <code>sgp2.ddnet.org</code></span>
*<span lang="en" dir="ltr" class="mw-content-ltr">India <code>ind.ddnet.org</code></span>
*<span lang="en" dir="ltr" class="mw-content-ltr">Australia <code>aus.ddnet.org</code></span>
*<span lang="en" dir="ltr" class="mw-content-ltr">South Africa <code>zaf3.ddnet.org</code></span>


도움이 될 수 있는 [[Resources#Blog Posts|블로그 게시물]]도 있습니다.
<div lang="en" dir="ltr" class="mw-content-ltr">
''Note that if you don't find your region in the previous [http://ddnet.org/status/ link], it probably means that the region does not have servers, or they were removed due to different problems with the hoster or not having enough players. If you have a good hoster, and want to share it, or even if you want to sponsor a region, join the [https://ddnet.org/discord DDNet Discord] server and talk to an admin about it, they will be very grateful! If you want to make a donation for any server, check out [https://ddnet.org/funding/ ddnet.org/funding/].''
</div>


=== "서버에서 응답이 없습니다."가 뜹니다. ===
<div lang="en" dir="ltr" class="mw-content-ltr">
DoS 공격으로 인해 서버가 다운되었거나 클라이언트에서 연결할 수 없는 것 같습니다.
Highlight a domain with your mouse, press {{key press|ctrl|C}} to copy, go to the server browser in DDNet Client, and paste with {{key press|ctrl|V}} into the Server address field at the bottom. Remember to add port (e.g. <code>usa1.ddnet.org:8308</code>).
나중에 다시 시도하시길 바랍니다.
</div>
# <span lang="en" dir="ltr" class="mw-content-ltr">Try ports greater or less than <code>8300</code> (port <code>8300</code> is always tutorial server) e.g. <code>8308</code>, <code>8298</code> ... for most servers. For BLOCKER servers, use <code>8203</code> or <code>8204</code>.</span>
# <span lang="en" dir="ltr" class="mw-content-ltr">If you want an empty server, change port until you get one.</span>
# <span lang="en" dir="ltr" class="mw-content-ltr">Once you connect, add it to your favorites. If you leave, you should be able to connect to it again by just double clicking on the IP in the Favorites tab.</span>


=== 그래픽 렌더러와 관련된 문제는 뭔가요? ===
<div lang="en" dir="ltr" class="mw-content-ltr">
[[GFX Troubleshooting]] 를 확인해 주세요
One small recommendation is to favorite all the servers you regularly play in, so when this problem happens, you have them ready to just join from your Favorites list.
</div>


<div lang="en" dir="ltr" class="mw-content-ltr">
=== Problems related to the graphics renderer? ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Check out [[Special:MyLanguage/GFX Troubleshooting|GFX Troubleshooting]].
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
==Gameplay Related==
==Gameplay Related==
===How to play privately with my group of people instead of in public team 0?===
</div>
 
<div lang="en" dir="ltr" class="mw-content-ltr">
===How to play with my friends only?===
</div>
 
<div lang="en" dir="ltr" class="mw-content-ltr">
There are multiple ways to achieve this:
There are multiple ways to achieve this:
</div>


<div lang="en" dir="ltr" class="mw-content-ltr">
# Join an empty official DDNet server, and vote any map you want in Escape -> Call Vote, or use "/map" in chat to search for a map. Join a team using "/team 23" in chat, you can /lock the team and /invite others to join it too. This means others can watch you play, and you get official ranks when you finish the map.
# Join an empty official DDNet server, and vote any map you want in Escape -> Call Vote, or use "/map" in chat to search for a map. Join a team using "/team 23" in chat, you can /lock the team and /invite others to join it too. This means others can watch you play, and you get official ranks when you finish the map.
# Use a public service to host a public server, like Trashmap: https://trashmap.ddnet.org/ You can upload any map you want, but you won't get official ranks this way.
# Use a public service to host a public server, like Trashmap: https://trashmap.ddnet.org/ You can upload any map you want, but you won't get official ranks this way.
# Create a [[LAN Server]], and set it up to be public.
# Create a [[Special:MyLanguage/LAN Server|LAN Server]], and set it up to be public.
</div>


<div lang="en" dir="ltr" class="mw-content-ltr">
===What's weak and strong hook?===
===What's weak and strong hook?===
You can find information about this at the [[Hook#Weak Hook - Strong Hook|Hook]] page.
</div>
 
<div lang="en" dir="ltr" class="mw-content-ltr">
You can find information about this at the [[Special:MyLanguage/Hook#Weak Hook - Strong Hook|Hook]] page.
</div>
 
<div lang="en" dir="ltr" class="mw-content-ltr">
===How to save and load a run?===
</div>


<div lang="en" dir="ltr" class="mw-content-ltr">
You can use command <code>/save</code> to save your run in Team or in a solo map and get a code. You can also type <code>/save "your code"</code> to use your own code. The run can be restored again with <code>/load "code"</code> command. Inside the config directory there is a file called ddnet-saves.txt, it will contain the save codes.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
Make sure that every player has the same name to load. You and your team members need to be in a team and not have touched the start line to load a save game. Each save game can only be loaded once, so repeat the above steps if you need to save again.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
== Design Related ==
== Design Related ==
</div>


<div lang="en" dir="ltr" class="mw-content-ltr">
=== How to make a map or skin? ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
See [[Special:MyLanguage/Mapping|Mapping]], [[Special:MyLanguage/Skin creation|Skin creation]] and [[Special:MyLanguage/Resources|Resources]] in general.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== How do I upload my map to the official server? ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
If you want to upload your map to the official server, your map should comply with and follow the map creation guidelines. Once you think your map meets all the requirements, you can submit it for review in the submit-maps channel on Discord.
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== How can I get other players to see the skin that I created? ===
=== How can I get other players to see the skin that I created? ===
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
There are two ways to get other players to see your custom skin:
There are two ways to get other players to see your custom skin:
</div>


<div lang="en" dir="ltr" class="mw-content-ltr">
# Others manually add your skin to their game files by pasting it in the skins folder in the config directory.
# Others manually add your skin to their game files by pasting it in the skins folder in the config directory.
# Your skin gets added to the official skin database and automatically downloaded for all other players.
# Your skin gets added to the official skin database and automatically downloaded for all other players.
</div>


<div lang="en" dir="ltr" class="mw-content-ltr">
If you are interested in the second option, your skin must meet a set of requirements in order to keep consistency with other skins in the database and the game's style:
If you are interested in the second option, your skin must meet a set of requirements in order to keep consistency with other skins in the database and the game's style:
</div>


<div lang="en" dir="ltr" class="mw-content-ltr">
* Resolution is 256x128
* Resolution is 256x128
* Outline sizes consistent with other skins
* Outline sizes consistent with other skins
Line 87: Line 265:
* Not an edit of an existing skin
* Not an edit of an existing skin
* No elements that could be considered offensive
* No elements that could be considered offensive
</div>


<div lang="en" dir="ltr" class="mw-content-ltr">
If you think your skin meets all of them, send it to one of the Skin Database Crew on discord for evaluation.
If you think your skin meets all of them, send it to one of the Skin Database Crew on discord for evaluation.
</div>

Latest revision as of 20:44, 19 June 2023

Note: This page already exists on your language! Please help out by migrating the archived page (accessible by clicking this link) to the new translation system by clicking 'Translate'. Once finished, delete the archived page to remove this notice. Thanks! You can find a list of pages needing migration on Category:NeedsMigration.

Here you can find a collection of frequently asked questions. If you want to know how to contribute to this wiki, you can take a look at How to contribute.

If you don't find the answers you want here, you can go to the official Discord.

Technical Questions

Where is the DDNet config, config directory or save directory?

Windows

Old: %appdata%\Teeworlds

New: %appdata%\DDNet

Linux

Old: ~/.teeworlds

New: ~/.local/share/ddnet

macOS

Old: ~/Library/Application Support/Teeworlds

New: ~/Library/Application Support/DDNet

Inside the settings_ddnet.cfg file will be your configurations/settings. The config directory can also be used as data directory to replace skins or other files, without modifying the client's data directory (Note: it has the same directory structure as the data directory).

My game skin, entities, autoexec or any other file was overwritten by an update, why?

During development we regularly replace, update, or remove files. The updater will overwrite any changes made to the data and binary directories. To make sure that your personal modifications don't get lost use the config directory instead, it has the same directory structure as the "data"-directory that comes with the client.

Is there any documentation about the DDraceNetwork code?

The Development page and some blog posts may help you. You can also find auto-generated docs from Doxygen here: https://codedoc.ddnet.org/.

The game warns me about images, whose width or height are not divisible by #number, which causes visual bugs, what does it mean?

Texture bleeding because of incorrect resolution

The game tries to give you and graphic designers the best experience. In order to achieve that, it defines clear rules for the layout of its graphics, so that the artists can rely on consistency while creating their work.

For example: In Teeworlds the tile maps are small images inside a bigger image for a total of 16x16 images (tile images). In order to render these tile maps correctly the game needs the image width and height to be divisible by 16, otherwise it can not determine where to split the tilemap into smaller images which represent a single tile. And thus something called "texture bleeding" occurs, which is quite common in texture atlasses.

You can search the internet for more information about that.

"No answer from server yet."?

It is likely the server is down or not reachable from the client, probably due to DoS attacks. You can try again later or visit Troubleshooting#Network / Connection problems for more information about how to verify that your internet connection is fine.

The servers I play in are gone. What happened?

First, check if you don't have any filters on that can reduce the amount of servers shown. If this is not the case, keep reading below.

This is a problem that can happen from time to time.

This is a little guide to help as a workaround until it gets fixed.

If you visit ddnet.org/status/ and your region server says it's up, this means there is a problem that leads to some (or every) servers to not appear in the server list. However, you can still connect to them via IP.

Here is a list of servers domains that you can use to connect from your DDNet Client:

  • Germany2 ger2.ddnet.org
  • Germany10 ger10.ddnet.org
  • Poland pol.ddnet.org
  • Russia rus4.ddnet.org
  • Turkey1 tur.ddnet.org
  • Turkey2 tur2.ddnet.org
  • Persian irn.ddnet.org
  • Saudi Arabia sau.ddnet.org
  • Chile chl2.ddnet.org
  • Brazil bra.ddnet.org
  • Argentina arg.ddnet.org
  • Peru per.ddnet.org
  • USA1 usa1.ddnet.org
  • USA2 usa2.ddnet.org
  • China0 chn0.ddnet.org
  • China1 chn11.ddnet.org
  • China2 chn2.ddnet.org
  • China3 chn3.ddnet.org
  • China4 chn4.ddnet.org
  • China5 chn5.ddnet.org
  • China6 chn6.ddnet.org
  • China7 chn7.ddnet.org
  • China8 chn8.ddnet.org
  • China9 chn9.ddnet.org
  • China12 chn12.ddnet.org
  • China13 chn13.ddnet.org
  • Taiwan twn.ddnet.org
  • Korea kor.ddnet.org
  • Singapore sgp2.ddnet.org
  • India ind.ddnet.org
  • Australia aus.ddnet.org
  • South Africa zaf3.ddnet.org

Note that if you don't find your region in the previous link, it probably means that the region does not have servers, or they were removed due to different problems with the hoster or not having enough players. If you have a good hoster, and want to share it, or even if you want to sponsor a region, join the DDNet Discord server and talk to an admin about it, they will be very grateful! If you want to make a donation for any server, check out ddnet.org/funding/.

Highlight a domain with your mouse, press ctrl+C to copy, go to the server browser in DDNet Client, and paste with ctrl+V into the Server address field at the bottom. Remember to add port (e.g. usa1.ddnet.org:8308).

  1. Try ports greater or less than 8300 (port 8300 is always tutorial server) e.g. 8308, 8298 ... for most servers. For BLOCKER servers, use 8203 or 8204.
  2. If you want an empty server, change port until you get one.
  3. Once you connect, add it to your favorites. If you leave, you should be able to connect to it again by just double clicking on the IP in the Favorites tab.

One small recommendation is to favorite all the servers you regularly play in, so when this problem happens, you have them ready to just join from your Favorites list.

Problems related to the graphics renderer?

Check out GFX Troubleshooting.

Gameplay Related

How to play with my friends only?

There are multiple ways to achieve this:

  1. Join an empty official DDNet server, and vote any map you want in Escape -> Call Vote, or use "/map" in chat to search for a map. Join a team using "/team 23" in chat, you can /lock the team and /invite others to join it too. This means others can watch you play, and you get official ranks when you finish the map.
  2. Use a public service to host a public server, like Trashmap: https://trashmap.ddnet.org/ You can upload any map you want, but you won't get official ranks this way.
  3. Create a LAN Server, and set it up to be public.

What's weak and strong hook?

You can find information about this at the Hook page.

How to save and load a run?

You can use command /save to save your run in Team or in a solo map and get a code. You can also type /save "your code" to use your own code. The run can be restored again with /load "code" command. Inside the config directory there is a file called ddnet-saves.txt, it will contain the save codes.

Make sure that every player has the same name to load. You and your team members need to be in a team and not have touched the start line to load a save game. Each save game can only be loaded once, so repeat the above steps if you need to save again.

Design Related

How to make a map or skin?

See Mapping, Skin creation and Resources in general.

How do I upload my map to the official server?

If you want to upload your map to the official server, your map should comply with and follow the map creation guidelines. Once you think your map meets all the requirements, you can submit it for review in the submit-maps channel on Discord.

How can I get other players to see the skin that I created?

There are two ways to get other players to see your custom skin:

  1. Others manually add your skin to their game files by pasting it in the skins folder in the config directory.
  2. Your skin gets added to the official skin database and automatically downloaded for all other players.

If you are interested in the second option, your skin must meet a set of requirements in order to keep consistency with other skins in the database and the game's style:

  • Resolution is 256x128
  • Outline sizes consistent with other skins
  • Fits the tee hitbox well
  • No missing, misaligned or cut off parts
  • No sharp or floating pixels
  • No effects that clash with the game's art style (blur, glow etc.)
  • Not too detailed or too plain
  • Not an edit of an existing skin
  • No elements that could be considered offensive

If you think your skin meets all of them, send it to one of the Skin Database Crew on discord for evaluation.