checked 54 patch_mp/maps/mp scripts

This commit is contained in:
JezuzLizard
2020-06-13 01:37:00 -07:00
parent a46530d2fd
commit d2202281cd
55 changed files with 1781 additions and 1815 deletions

View File

@ -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 );
}