TwinightCow
Veteran
- Messages
- 21
- Reaction score
- 8
- Points
- 783
Ive been trying to make an azza menu (ported from bo2)
My platform script so far, but I need the ID for a carepackage (Its still in bo2 format, Ill reformat it)
Code:
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, -15);
i = -3;
while (i < 3)
{
d = -3;
while (d < 3)
self.spawnedcrate[i][d] = spawn("script_model", startpos + (d * 40, i * 70, 0));
{
self.spawnedcrate[i][d] setmodel("t6_wpn_supply_drop_ally");
d++;
}
i++;
}
}