mirror of
https://github.com/JezuzLizard/Recompilable-gscs-for-BO2-zombies-and-multiplayer.git
synced 2025-06-07 17:37:50 -05:00
20 lines
364 B
Plaintext
20 lines
364 B
Plaintext
// T6 GSC SOURCE
|
|
// Decompiled by https://github.com/xensik/gsc-tool
|
|
#include codescripts\character;
|
|
|
|
setmodelfromarray( a )
|
|
{
|
|
self setmodel( a[randomint( a.size )] );
|
|
}
|
|
|
|
precachemodelarray( a )
|
|
{
|
|
for ( i = 0; i < a.size; i++ )
|
|
precachemodel( a[i] );
|
|
}
|
|
|
|
attachfromarray( a )
|
|
{
|
|
self attach( codescripts\character::randomelement( a ), "", 1 );
|
|
}
|