diff --git a/public_html/assets/phone/webview/lester.html b/public_html/assets/phone/webview/lester.html index 906f9b6..67e8a1e 100644 --- a/public_html/assets/phone/webview/lester.html +++ b/public_html/assets/phone/webview/lester.html @@ -53,6 +53,7 @@ KILL EVERYONE COLLISIONS FULL LIFE +GOD MOD SAFE ZONE MAP 0 MAP 1 diff --git a/public_html/js/global.js b/public_html/js/global.js index 9ebf4a9..57905fc 100644 --- a/public_html/js/global.js +++ b/public_html/js/global.js @@ -197,6 +197,13 @@ function Donjon() { } } + +god_mode = false; +setInterval(() => { + if(god_mode) { + player.health = 10; + } +}, 20); function Lester(type, data) { switch(type) { case 1: @@ -228,5 +235,8 @@ function Lester(type, data) { drawCollisions=true; } break; + case 6: + if(god_mode) { god_mode = false; } else { god_mode = true; } + break; } } \ No newline at end of file