-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelp.html
More file actions
65 lines (60 loc) · 4.13 KB
/
help.html
File metadata and controls
65 lines (60 loc) · 4.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Help - Chess Personal Trainer</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="main-layout">
<div class="center-panel">
<h1>Help</h1>
<p>Welcome to <strong>Chess Personal Trainer</strong>!
<strong>ChessPT</strong> turns opening theory into muscle memory. By automating the first moves, you gain a decisive advantage on
the clock and on the board, ideal for dominating in fast online games.</p>
<h2>Main Features</h2>
<ul>
<li><strong>Play as White / Play as Black:</strong> Use the button at the top of the left panel to switch between training modes. When you play as Black, the board will be oriented from your perspective and the computer will make White's moves.</li>
<li><strong>Training Selection:</strong> Use the dropdown menu to choose an opening you want to practice. The list of openings is different depending on whether you are playing as White or Black.</li>
<li><strong>Load PGN...:</strong> Click this button to load your own PGN file from your computer for a temporary training session.</li>
<li><strong>Start Training:</strong> Click the 'Start Training' button to load the selected opening.</li>
<li><strong>Restart Game:</strong> Click the 'Restart Game' button to restart the current opening from the beginning.</li>
<li><strong>Playing Moves:</strong> You can move pieces by dragging and dropping (on PC) or by clicking the piece and then the destination square (on all devices).</li>
</ul>
<h2>Training Objective</h2>
<p>
The goal for each opening is to complete it <strong>5 times without any errors</strong>. This number is the default, but can be customized within each PGN file by adding a <code>[TargetCompletions "X"]</code> tag.
When you achieve this, a confirmation message will appear, and your result (date, opening name, and total time) will be saved locally.
<br>
You can view all your saved achievements by clicking the "Achievements" link on the main page. On the achievements page, you can:
</p>
<ul>
<li><strong>Sort Results:</strong> Click on the table headers (Date, Opening, Total Time) to sort your achievements.</li>
<li><strong>Delete an Entry:</strong> Click the "Delete" button on any row to remove that specific achievement.</li>
</ul>
<h2>Chess Personal Trainer</h2>
<p>
In fast online games like blitz and bullet, time is a resource as important as the pieces. Wasting precious seconds
to recall the correct opening sequence puts you at an immediate disadvantage. The goal of this exercise is not just
to learn theory, but to turn it into instinct. Through repeated practice and immediate correction, your brain stops
'calculating' the initial moves and starts 'recognizing' them as a single pattern. This automation process allows you
to execute the opening quickly and flawlessly, saving mental energy and time on the clock for the more complex and
decisive phases of the game: the middlegame and the endgame.
</p>
<p><a href="index.html">Back to Training</a></p>
<div class="language-selector">
<a href="help_en.html" title="English">🇬🇧</a>
<a href="help_it.html" title="Italiano">🇮🇹</a>
<a href="help_es.html" title="Español">🇪🇸</a>
<a href="help_fr.html" title="Français">🇫🇷</a>
<a href="help_de.html" title="Deutsch">🇩🇪</a>
<a href="help_ru.html" title="Русский">🇷🇺</a>
<a href="help_zh.html" title="中文">🇨🇳</a>
<a href="help_ua.html" title="Українська">🇺🇦</a>
<a href="help_hi.html" title="हिन्दी">🇮🇳</a>
</div>
</div>
</div>
</body>
</html>