From 921ad80b1f9e08fb7648187fb8ebfbb600620657 Mon Sep 17 00:00:00 2001 From: Baptiste Date: Tue, 17 Dec 2024 19:00:24 +0100 Subject: [PATCH] feat(cheat-ux) : toggle state --- public_html/assets/phone/webview/lester.html | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/public_html/assets/phone/webview/lester.html b/public_html/assets/phone/webview/lester.html index 0900196..7876ba9 100644 --- a/public_html/assets/phone/webview/lester.html +++ b/public_html/assets/phone/webview/lester.html @@ -48,14 +48,22 @@ alert("Vous devez entrer l'identifiant de celui que vous souhaitez tuer !") } } + function toggleDot(id) { + const dot = document.getElementById('dot-' + id); + if (dot.style.display === 'none') { + dot.style.display = 'inline'; // ou 'block' si vous préférez + } else { + dot.style.display = 'none'; + } + } KILL KILL EVERYONE COLLISIONS FULL LIFE -GOD MOD -AK-47 -TP sur clique gauche +GOD MOD +AK-47 +TP sur clique gauche SAFE ZONE MAP 0 MAP 1 @@ -70,4 +78,8 @@ MAP 10 MAP 11 + + \ No newline at end of file