spawnplat(location)
{
while (isDefined(self.spawnedcrate[0][0]))
{
i = -3;
while (i < 3)
{
d = -3;
while (d < 3)
{
self.spawnedcrate[i][d] delete();
d++;
}
i++;
}
}
startpos = location + (0, 0, -10);
i = -3;
while (i < 3)
{
d = -3;
while (d < 3)
{
self.spawnedcrate[i][d] = spawn("script_model", startpos + (d * 40, i * 35, 0));
self.spawnedcrate[i][d] setmodel("com_plasticcase_friendly");
d++;
}
i++;
}
wait 1;
}
Copyright © 2026, NextGenUpdate.
All Rights Reserved.