diff options
author | rafa_99 <raroma09@gmail.com> | 2022-01-29 02:54:21 +0000 |
---|---|---|
committer | rafa_99 <raroma09@gmail.com> | 2022-01-29 02:54:21 +0000 |
commit | e3b073b85ff0923b6fee3b95e3d8b5898b4a30c2 (patch) | |
tree | eeadff536e9f32e86cfa0db3fe40cf1d11ddebf1 | |
parent | 31d807a247e5b20cbd11629fef3a42b03128ba84 (diff) |
Updated Labels
-rwxr-xr-x | mods/all/modLoader.gsc | 6 | ||||
-rwxr-xr-x | mods/counters/bothCounters.gsc | 4 | ||||
-rwxr-xr-x | mods/counters/zombieCounter.gsc | 4 |
3 files changed, 8 insertions, 6 deletions
diff --git a/mods/all/modLoader.gsc b/mods/all/modLoader.gsc index d3047ba..ef52f71 100755 --- a/mods/all/modLoader.gsc +++ b/mods/all/modLoader.gsc @@ -23,9 +23,11 @@ modLoader(p, l) thread removePerkLimit(l);
// 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);
// Mod that adds a health counter to the bottom of the screen
+ // p thread healthCounter(p, 0, 190);
p thread healthCounter(p, -100, 190);
// Gives all the perks available in the map to the player
@@ -79,11 +81,11 @@ zombieCounter(p, l, x, y) zombies = l.zombie_total + get_current_zombie_count();
if ( zombies > 0 )
{
- p.zombiecounter.label = &"Zombies Left: ^1";
+ p.zombiecounter.label = &"Zombies: ^1";
}
else
{
- p.zombiecounter.label = &"Zombies Left: ^6";
+ p.zombiecounter.label = &"Zombies: ^6";
}
p.zombiecounter setvalue(zombies);
diff --git a/mods/counters/bothCounters.gsc b/mods/counters/bothCounters.gsc index a2f944d..3cef802 100755 --- a/mods/counters/bothCounters.gsc +++ b/mods/counters/bothCounters.gsc @@ -49,11 +49,11 @@ zombieCounter(p, l, x, y) zombies = l.zombie_total + get_current_zombie_count();
if ( zombies > 0 )
{
- p.zombiecounter.label = &"Zombies Left: ^1";
+ p.zombiecounter.label = &"Zombies: ^1";
}
else
{
- p.zombiecounter.label = &"Zombies Left: ^6";
+ p.zombiecounter.label = &"Zombies: ^6";
}
p.zombiecounter setvalue(zombies);
diff --git a/mods/counters/zombieCounter.gsc b/mods/counters/zombieCounter.gsc index 3ea7557..69a18dd 100755 --- a/mods/counters/zombieCounter.gsc +++ b/mods/counters/zombieCounter.gsc @@ -46,11 +46,11 @@ zombieCounter(p, l, x, y) zombies = l.zombie_total + get_current_zombie_count();
if ( zombies > 0 )
{
- p.zombiecounter.label = &"Zombies Left: ^1";
+ p.zombiecounter.label = &"Zombies: ^1";
}
else
{
- p.zombiecounter.label = &"Zombies Left: ^6";
+ p.zombiecounter.label = &"Zombies: ^6";
}
p.zombiecounter setvalue(zombies);
|