Reorganized the scripts so its easier to search thru.

This commit is contained in:
JezuzLizard
2021-08-07 11:41:57 -07:00
parent 98bfc67831
commit fe45c69381
1573 changed files with 152 additions and 4458 deletions

View File

@ -0,0 +1,21 @@
#include codescripts/character;
setmodelfromarray( a )
{
self setmodel( a[ randomint( a.size ) ] );
}
precachemodelarray( a )
{
i = 0;
while ( i < a.size )
{
precachemodel( a[ i ] );
i++;
}
}
attachfromarray( a )
{
self attach( codescripts/character::randomelement( a ), "", 1 );
}