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

Xensik's gsc-tool.
This commit is contained in:
JezuzLizard
2022-02-25 22:03:12 -08:00
parent 5467e47fa8
commit 0d2c068adb
157 changed files with 87715 additions and 94302 deletions

View File

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