This repository has been archived on 2026-05-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
okey-card-game-assistant/index.html
T

39 lines
1.1 KiB
HTML

<html>
<head>
<meta charset="UTF-8">
<title>OKEY Assistant</title>
<meta name="robots" content="noindex">
<meta name="description" content="Metin2 Okey Card Game assistant. Win more with your games with computer assisted intel.">
<meta name="author" content="Thayol">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<main-container>
<main-panel>
<panel-title>Deck</panel-title>
<card-container id="deck">
</card-container>
</main-panel>
<main-panel>
<panel-title>Hand</panel-title>
<card-container id="hand">
</card-container>
</main-panel>
<main-panel>
Points: <span id="points">?</span>
<br>
<button onclick="reset();">Reset</button>
<button onclick="cashOut();">Auto Advance</button>
<input type="checkbox" onclick="toggleAutoDraw(this)" id="autoDrawToggle" /><label for="autoDrawToggle">Auto-Draw</label>
<br>
<div style="margin-top: 1.4em;" id="result">?</div>
</main-panel>
</main-container>
<script src="script.js"></script>
</body>
</html>