mirror of
https://github.com/JezuzLizard/Recompilable-gscs-for-BO2-zombies-and-multiplayer.git
synced 2025-06-10 10:47:58 -05:00
checked 54 patch_mp/maps/mp scripts
This commit is contained in:
@ -1,21 +1,20 @@
|
||||
//checked includes matches cerberus output
|
||||
#include codescripts/character;
|
||||
|
||||
setmodelfromarray( a )
|
||||
setmodelfromarray( a ) //checked matches cerberus output
|
||||
{
|
||||
self setmodel( a[ randomint( a.size ) ] );
|
||||
}
|
||||
|
||||
precachemodelarray( a )
|
||||
precachemodelarray( a ) //checked changed to match cerberus output
|
||||
{
|
||||
i = 0;
|
||||
while ( i < a.size )
|
||||
for ( i = 0; i < a.size; i++ )
|
||||
{
|
||||
precachemodel( a[ i ] );
|
||||
i++;
|
||||
}
|
||||
}
|
||||
|
||||
attachfromarray( a )
|
||||
attachfromarray( a ) //checked matches cerberus output
|
||||
{
|
||||
self attach( codescripts/character::randomelement( a ), "", 1 );
|
||||
}
|
||||
|
Reference in New Issue
Block a user