mirror of
https://github.com/JezuzLizard/Recompilable-gscs-for-BO2-zombies-and-multiplayer.git
synced 2025-06-08 01:47:50 -05:00
21 lines
445 B
Plaintext
21 lines
445 B
Plaintext
//checked includes matches cerberus output
|
|
#include codescripts/character;
|
|
|
|
setmodelfromarray( a ) //checked matches cerberus output
|
|
{
|
|
self setmodel( a[ randomint( a.size ) ] );
|
|
}
|
|
|
|
precachemodelarray( a ) //checked changed to match cerberus output
|
|
{
|
|
for ( i = 0; i < a.size; i++ )
|
|
{
|
|
precachemodel( a[ i ] );
|
|
}
|
|
}
|
|
|
|
attachfromarray( a ) //checked matches cerberus output
|
|
{
|
|
self attach( codescripts/character::randomelement( a ), "", 1 );
|
|
}
|