TwinightCow

Veteran
Messages
21
Reaction score
8
Points
783
Ive been trying to make an azza menu (ported from bo2)
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++;
   }
}
My platform script so far, but I need the ID for a carepackage (Its still in bo2 format, Ill reformat it)
 
S

SeriousHD-

Guest
Ive been trying to make an azza menu (ported from bo2)
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++;
   }
}
My platform script so far, but I need the ID for a carepackage (Its still in bo2 format, Ill reformat it)
Just a hunch, but try t7_wpn_supply_drop_ally. Or, go into radiant and look for it. Might also be in the scripts or the CSV assets
 

TwinightCow

Veteran
Messages
21
Reaction score
8
Points
783
Just a hunch, but try t7_wpn_supply_drop_ally. Or, go into radiant and look for it. Might also be in the scripts or the CSV assets
alright lol, I havent even tried it yet. I have to reinstall bo3, Just wanted to make sure before I do
 

CabCon

Head Administrator
Staff member
Head Staff Team
Messages
4,998
Reaction score
2,918
Points
1,053
Ive been trying to make an azza menu (ported from bo2)
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++;
   }
}
My platform script so far, but I need the ID for a carepackage (Its still in bo2 format, Ill reformat it)
Try this:
Code:
wpn_t7_care_package_world
 
Top