You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It will also show you how to download the bot pack containing bots like Kamael and Botimus Prime.
45
45
Note, RLBot only works on PC both with Epic and Steam.</p>
@@ -49,7 +49,7 @@ <h5 class="card-title">How do I play against the bots?</h5>
49
49
<!-- Which bot is the best bot and how good is it? -->
50
50
<divclass="card mb-3">
51
51
<divclass="card-body">
52
-
<h5class="card-title">Which bot is the best bot and how good is it?</h5>
52
+
<h5id="which-bot-is-best" class="card-title">Which bot is the best bot and how good is it?</h5>
53
53
<p>The best bots are Kamael for 1v1 and 3x Bumblebee for 3v3. They are both around mid-gold level
54
54
in terms of skill and can be found in the bot pack.</p>
55
55
@@ -70,7 +70,7 @@ <h5 class="card-title">Which bot is the best bot and how good is it?</h5>
70
70
<!-- Can RLBot be used online? -->
71
71
<divclass="card mb-3">
72
72
<divclass="card-body">
73
-
<h5class="card-title">Can RLBot be used online?</h5>
73
+
<h5id="online-use" class="card-title">Can RLBot be used online?</h5>
74
74
<p>The RLBot framework cannot be used online. The API is only activated when the game is started
75
75
with a special RLBot setting which disables online play. You can be banned without warning if
76
76
we suspect that you have malicious intent (farming, levelling, etc.). We want to stay on
@@ -81,7 +81,7 @@ <h5 class="card-title">Can RLBot be used online?</h5>
81
81
<!-- Can I use RLBot with friends? -->
82
82
<divclass="card mb-3">
83
83
<divclass="card-body">
84
-
<h5class="card-title">Can I use RLBot with friends?</h5>
84
+
<h5id="rlbot-with-friends" class="card-title">Can I use RLBot with friends?</h5>
85
85
<p>You can! It requires setting up a LAN/VLAN connection. <ahref="https://github.com/RLBot/RLBot/wiki/LAN-Setup">Here is a guide</a>.</p>
86
86
87
87
<p>It is not possible to play with friends cross platform.</p>
@@ -91,7 +91,7 @@ <h5 class="card-title">Can I use RLBot with friends?</h5>
91
91
<!-- Are the bots using machine learning? -->
92
92
<divclass="card mb-3">
93
93
<divclass="card-body">
94
-
<h5class="card-title">Are the bots using machine learning?</h5>
94
+
<h5id="machine-learning" class="card-title">Are the bots using machine learning?</h5>
95
95
<p>Most are hardcoded and do not use machine learning. However, since the release of
96
96
<ahref="https://rlgym.github.io/">RLGym</a> the machine learning are progressing faster than
97
97
ever. If you are interesting in making a ML bot yourself, start by reading the
@@ -110,7 +110,7 @@ <h5 class="card-title">Are the bots using machine learning?</h5>
110
110
<!-- How do I get started making my own bot? -->
111
111
<divclass="card mb-3">
112
112
<divclass="card-body">
113
-
<h5class="card-title">How do I get started making my own bot?</h5>
113
+
<h5id="how-to-make-a-bot" class="card-title">How do I get started making my own bot?</h5>
114
114
<p>Decide which language to use. RLBot supports :python: Python (most used), Java, Scratch, C#,
115
115
Rust, C++, JavaScript, and Go. We recommend having some amount of experience with programming
116
116
before making a bot. However, making a bot can be a great way to get more comfortable with
@@ -139,7 +139,7 @@ <h5 class="card-title">How do I get started making my own bot?</h5>
139
139
<!-- What is in the GameTickPacket and FieldInfo? -->
140
140
<divclass="card mb-3">
141
141
<divclass="card-body">
142
-
<h5class="card-title">What is in the GameTickPacket and FieldInfo?</h5>
142
+
<h5id="game-tick-packet-and-field-info" class="card-title">What is in the GameTickPacket and FieldInfo?</h5>
143
143
<p>The GameTickPacket is a packet sent to your bot each tick. It contains information about
144
144
everything that tends to update during the game. For instance, the location and velocity of
145
145
all cars and the ball, the state of boost pads, the time elapsed.</p>
@@ -155,19 +155,21 @@ <h5 class="card-title">What is in the GameTickPacket and FieldInfo?</h5>
155
155
<!-- What is the dimensions of the field? Gravity? Ball radius? Max speed? Boost? Kickoff locations? etc? -->
156
156
<divclass="card mb-3">
157
157
<divclass="card-body">
158
-
<h5class="card-title">What is in the GameTickPacket and FieldInfo?</h5>
158
+
<h5id="useful-game-values" class="card-title">What is the dimensions of the field? Gravity? Ball radius? Max speed? Boost? Kickoff locations? etc?</h5>
159
159
<p>All of these values can be found on <ahref="https://github.com/RLBot/RLBot/wiki/Useful-Game-Values">RLBot wiki</a>.</p>
160
160
161
161
<p>To learn more about the physics of Rocket League, see <ahref="https://samuelpmish.github.io/notes/RocketLeague/">chip's notes</a>.</p>
162
162
163
163
<p>We also have a note on <ahref="https://github.com/RLBot/RLBot/wiki/Jumping-Physics">jumping physics</a>.</p>
164
+
165
+
<imgsrc="https://i.imgur.com/nOz84cD.png" alt="game field dimensions" style="height: 400px"/>
164
166
</div>
165
167
</div>
166
168
167
169
<!-- How do I use debug rendering/game state setting/ball prediction/RLBotTraining? -->
168
170
<divclass="card mb-3">
169
171
<divclass="card-body">
170
-
<h5class="card-title">How do I use debug rendering/game state setting/ball prediction/RLBotTraining?</h5>
172
+
<h5id="debug-rendering-game-state-setting-ball-prediction-rlbottraining" class="card-title">How do I use debug rendering/game state setting/ball prediction/RLBotTraining?</h5>
171
173
<p>The RLBot framework comes with a set of useful features. Learn more about these here:</p>
0 commit comments