-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathddnet_06.html
More file actions
71 lines (71 loc) · 3.63 KB
/
ddnet_06.html
File metadata and controls
71 lines (71 loc) · 3.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="css/style.css">
<title>Teeworlds Protocol</title>
</head>
<body>
<div class="header">
<div class="header-grid">
<a class="logo" href="index.html">
<img src="img/tee.svg" alt="tee">
</a>
<span class="version">
DDNet 0.6
</span>
<div class="links">
<a href="index.html">home</a>
<a href="ddnet_06.html">overview</a>
<a href="ddnet_06/fundamentals.html">fundamentals</a>
<a href="ddnet_06/snap_items.html">snap_items</a>
<a href="ddnet_06/ddnet_ex_uuids.html">ddnet_ex_uuids</a>
</div> <!-- links -->
</div> <!-- header-grid -->
<hr>
</div> <!-- header -->
<div class="content">
<h2>The ddnet 0.6 network protocol</h2>
<p>
The teeworlds modification <a href="https://ddnet.org">DDraceNetwork</a>
is based on the <a href="06.html">teeworlds 0.6 protocol</a>. While being fully teeworlds
compatible ddnet added its own extensions. Meaning vanilla 0.6 teeworlds clients can join ddnet servers
and ddnet clients can join 0.6 vanilla teeworlds servers. But when a ddnet client connects to a ddnet server.
They start talking the ddnet protocol which for example adds security tokens, new game and system messages and
new snap items. This section only covers the ddnet extensions so for a complete protocol overview you also have to
look at the <a href="06.html">teeworlds 0.6 protocol</a>.
<h2>Table of contents</h2>
<ul>
<li>
<a href="ddnet_06/fundamentals.html">Fundamentals</a>
<ul>
<li><a href="ddnet_06/fundamentals.html#tokens">security tokens</a></li>
</ul>
</li>
<li>
<a href="ddnet_06/snap_items.html">Snap items</a>
</li>
<li>
<a href="ddnet_06/ddnet_ex_uuids.html">DDNet extension uuids</a>
</li>
</ul>
</p>
</div> <!-- content -->
<footer>
<hr>
<div class="footer">
<!-- Icon-link to source code on GitHub -->
<a class="github" href="https://github.com/ChillerDragon/teeworlds-protocol" target="_blank" rel="noopener" aria-label="Source code">
<!-- icon: https://materialdesignicons.com/icon/github -->
<svg viewBox="0 0 24 24" class="github">
<path d="M12,2A10,10 0 0,0 2,12C2,16.42 4.87,20.17 8.84,21.5C9.34,21.58 9.5,21.27 9.5,21C9.5,20.77 9.5,20.14 9.5,19.31C6.73,19.91 6.14,17.97 6.14,17.97C5.68,16.81 5.03,16.5 5.03,16.5C4.12,15.88 5.1,15.9 5.1,15.9C6.1,15.97 6.63,16.93 6.63,16.93C7.5,18.45 8.97,18 9.54,17.76C9.63,17.11 9.89,16.67 10.17,16.42C7.95,16.17 5.62,15.31 5.62,11.5C5.62,10.39 6,9.5 6.65,8.79C6.55,8.54 6.2,7.5 6.75,6.15C6.75,6.15 7.59,5.88 9.5,7.17C10.29,6.95 11.15,6.84 12,6.84C12.85,6.84 13.71,6.95 14.5,7.17C16.41,5.88 17.25,6.15 17.25,6.15C17.8,7.5 17.45,8.54 17.35,8.79C18,9.5 18.38,10.39 18.38,11.5C18.38,15.32 16.04,16.16 13.81,16.41C14.17,16.72 14.5,17.33 14.5,18.26C14.5,19.6 14.5,20.68 14.5,21C14.5,21.27 14.66,21.59 15.17,21.5C19.14,20.16 22,16.42 22,12A10,10 0 0,0 12,2Z" />
</svg>
</a>
<span>
ChillerDragon - 2023
</span>
</div>
</footer>
</body>
</html>