From 46c54c4fac23386d20e4a5175bd30686dcc10733 Mon Sep 17 00:00:00 2001 From: Resxt <55228336+Resxt@users.noreply.github.com> Date: Fri, 30 Sep 2022 22:09:45 +0200 Subject: [PATCH] anti_hardscope indentation fix --- small_scripts/anti_hardscope.gsc | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/small_scripts/anti_hardscope.gsc b/small_scripts/anti_hardscope.gsc index 4825765..fbde0fa 100644 --- a/small_scripts/anti_hardscope.gsc +++ b/small_scripts/anti_hardscope.gsc @@ -2,17 +2,17 @@ Init() { - level thread OnPlayerConnect(); + level thread OnPlayerConnect(); } OnPlayerConnect() { for(;;) { - level waittill("connected", player); + level waittill("connected", player); // Uncomment if using Bot Warfare - /*if (!self IsBot()) + /*if (!self IsBot()) { player thread OnPlayerSpawned(); }*/ @@ -23,16 +23,16 @@ OnPlayerConnect() OnPlayerSpawned() { - self endon("disconnect"); + self endon("disconnect"); - for(;;) - { - self waittill("spawned_player"); + for(;;) + { + self waittill("spawned_player"); self.pers["allow_ads"] = true; - self thread AntiHardscope(); - } + self thread AntiHardscope(); + } } AntiHardscope()