uploading 119 patch_mp scripts and 23 patch_zm scripts as a baseline

This commit is contained in:
JezuzLizard
2020-05-29 07:55:47 -07:00
parent b044bba3c2
commit 89fa02ab7f
144 changed files with 75534 additions and 0 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 );
}