Revert "[Zombie Core] Replaced all scripts with scripts decompiled by..."

This reverts commit 0d2c068adb.
This commit is contained in:
JezuzLizard
2022-04-20 01:58:46 -07:00
parent f97389d9da
commit d85d35ba1a
157 changed files with 94191 additions and 87604 deletions

View File

@ -1,19 +1,21 @@
// T6 GSC SOURCE
// Decompiled by https://github.com/xensik/gsc-tool
#include codescripts\character;
#include codescripts/character;
setmodelfromarray( a )
{
self setmodel( a[randomint( a.size )] );
self setmodel( a[ randomint( a.size ) ] );
}
precachemodelarray( a )
{
for ( i = 0; i < a.size; i++ )
precachemodel( a[i] );
i = 0;
while ( i < a.size )
{
precachemodel( a[ i ] );
i++;
}
}
attachfromarray( a )
{
self attach( codescripts\character::randomelement( a ), "", 1 );
self attach( codescripts/character::randomelement( a ), "", 1 );
}