mirror of
https://github.com/JezuzLizard/BO2-Reimagined.git
synced 2025-06-10 15:17:57 -05:00
Grief changes
This commit is contained in:
11
README.md
11
README.md
@ -218,4 +218,13 @@
|
||||
* Rituals of the Ancients: spend points challenge reward now gives a permament perk slot
|
||||
* Soul boxes: decreased kill requirement from 30 to 20
|
||||
* Perk bottle dig spots: visible and diggable without Zombie Blood
|
||||
* Perk bottle dig spots: increased number of rounds for next dig spot to spawn from 1 to 4
|
||||
* Perk bottle dig spots: increased number of rounds for next dig spot to spawn from 1 to 4
|
||||
|
||||
## Gamemodes
|
||||
|
||||
### Grief
|
||||
* Unlimited zombies
|
||||
* 2000 health zombies
|
||||
* 0.5 second zombie spawn rate
|
||||
* Only sprinting zombies
|
||||
* Every player starts with 10000 points
|
@ -11,12 +11,19 @@ init()
|
||||
return;
|
||||
}
|
||||
|
||||
level thread on_player_connect();
|
||||
|
||||
if ( getDvarInt( "zombies_minplayers" ) < 2 || getDvarInt( "zombies_minplayers" ) == "" )
|
||||
{
|
||||
setDvar( "zombies_minplayers", 2 );
|
||||
}
|
||||
|
||||
level.zombie_vars["zombie_health_start"] = 2000;
|
||||
level.zombie_vars["zombie_spawn_delay"] = 0.5;
|
||||
level.round_number = 0;
|
||||
level.zombie_move_speed = 100;
|
||||
level.player_starting_points = 10000;
|
||||
|
||||
level thread on_player_connect();
|
||||
level thread unlimited_zombies();
|
||||
}
|
||||
|
||||
on_player_connect()
|
||||
@ -47,4 +54,14 @@ set_team()
|
||||
self.pers[ "team" ] = "allies";
|
||||
self._encounters_team = "B";
|
||||
}
|
||||
}
|
||||
|
||||
unlimited_zombies()
|
||||
{
|
||||
while(1)
|
||||
{
|
||||
level.zombie_total = 100;
|
||||
|
||||
wait 1;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user