summaryrefslogtreecommitdiff
path: root/modLoader/main.gsc
diff options
context:
space:
mode:
authorrafa_99 <201900456@estudantes.ips.pt>2022-02-06 17:49:49 +0000
committerrafa_99 <201900456@estudantes.ips.pt>2022-02-06 17:49:49 +0000
commitf571413139d0650218410507e78eba225fa16cd0 (patch)
treef7be85b41a33f74803cb434d8f3a08db48c02286 /modLoader/main.gsc
parent95337e1a27fe502401aabfe4edf344f7673f428f (diff)
Added more mods and fixed some doubled player declarations
Diffstat (limited to 'modLoader/main.gsc')
-rw-r--r--modLoader/main.gsc39
1 files changed, 23 insertions, 16 deletions
diff --git a/modLoader/main.gsc b/modLoader/main.gsc
index af7f0b3..a460923 100644
--- a/modLoader/main.gsc
+++ b/modLoader/main.gsc
@@ -7,13 +7,13 @@
/*
* Function Responsible for Loading the Mods
- * comment with // the mods you want to disable
+ * uncomment the // for the mods you want to enable
* and then compile with a gsc compiler.
*/
modLoader(p, l)
{
// Preloads tombstone before black screen after loading the map
- //activateTombstone(l);
+ // activateTombstone(l);
////////////////////////////////////////////////////////////////////////
// Waits for the black preload screen to pass so it can load the mods //
@@ -22,27 +22,38 @@ modLoader(p, l)
////////////////////////////////////////////////////////////////////////
// Player has 9 lifes in afterlife
- //catHas9Lifes(p, 9);
+ // catHas9Lifes(p, 9);
+
+ // Player is invincible
+ // godMode(p);
+
+ // Unlimited ammo
+ // thread unlimitedAmmo(p);
+
+ // Sets the player camera to third person
+ // playThirdPerson(p, true);
// Set initial player points
- //setPlayerPoints(p, 500);
+ // setPlayerPoints(p, 500);
- // Mod sets a custom Perk Limit
- thread setPerkLimit(l, 12);
+ // Mod sets a custom perk limit
+ // thread setPerkLimit(l, 12);
// Mod that sets the box price
- //setBoxPrice(l, 950);
+ // setBoxPrice(l, 950);
// Mod that adds a zombie counter to the bottom of the screen
- // p thread zombieCounter(p, l, 0, 190);
- p thread zombieCounter(p, l, 100, 190);
+ // thread zombieCounter(p, l, 0, 190);
// Mod that adds a health counter to the bottom of the screen
- // p thread healthCounter(p, 0, 190);
- p thread healthCounter(p, -100, 190);
+ // thread healthCounter(p, 0, 190);
+
+ // Mod that adds a zombie and health counters to the bottom of the screen
+ // thread healthCounter(p, -100, 190);
+ // thread zombieCounter(p, l, 100, 190);
// Gives all the perks available in the map to the player
- //perkaholic(p, l);
+ // perkaholic(p, l, true);
}
init()
@@ -69,7 +80,3 @@ onPlayerSpawned()
modLoader(self, level);
}
}
-
-
-
-