Plastic Pandemonium from Army Men: Air Attack

Custom Multiplayer Maps
Forum rules
Required: All new map posts must include a direct link to the map, either screenshots or a video, and a description.
Not Required but Recommended: It would be a good idea to include a voting poll in your post so that others can rate your map.

Rate the map

Shitty
0
No votes
Horrible
0
No votes
Tolerable
0
No votes
Alright
4
50%
Awesome
4
50%
 
Total votes: 8

User avatar
TommyCD1
Moderator
Moderator
Posts: 1145
Joined: Tue Jun 04, 2013 8:55 am
Location: East Coast
Contact:
United States of America

Re: New map: Plastic Pandemonium

Post by TommyCD1 »

I played the map and I like it, although I agree in that I miss having Sarge. I also really like the health boost being guarded; it keeps it from being a free sbs ticket.

I also noticed something, I'm not sure why this happens, or how exactly you've modded the ground textures, but the new dirt textures do not layer properly.
Screenshot 3.png
I may not make the best maps, or be the best player, but I put a lot of time, effort, and care into my stuff. That counts for something, right? No.
Image
"Can we order a pizza?"
GameRanger ID: 913974
User avatar
johnweven
Grunt
Grunt
Posts: 6
Joined: Sun Aug 12, 2018 3:13 pm
United States of America

Re: New map: Plastic Pandemonium

Post by johnweven »

Magnos wrote: Sun Apr 07, 2019 2:37 am Anyone tell me please what is scratch!
Scratch as in made from scratch? If this is the case, then scratch means starting from the beginning. Basically, to start from scratch is to begin from the beginning, to set out on some action or process without any prior preparation, knowledge or advantage. :COFE:
Green Soldier: Oh no! We have some really bad news. The Reds are building tanks!
Blue Soldier: The Plastic Red Army is building tanks? What kind of tanks? How Many?
Green Soldier: They are building storage tanks.
Blue Soldier: ...
User avatar
Secg
Half Track L2
Half Track L2
Posts: 200
Joined: Sat Jun 10, 2017 12:28 am
United States of America

Re: New map: Plastic Pandemonium

Post by Secg »

Greetings, j3rry!

I've downloaded & played the map. Awesome! :SWEET:

I kinda like the Apache Sarge. However, his projectiles cannot hit any individual chopper properly (his projectiles keep missing it :? because of the wide space between the Apache-Sarge's firepoints; unless he's engaging bunched-up packs)
Last edited by Secg on Thu Jun 27, 2019 1:01 pm, edited 1 time in total.
ImageImage
User avatar
j3rry
Map Maker
Map Maker
Posts: 121
Joined: Thu Oct 11, 2018 5:43 am
Location: Central Russia
Russia

Re: New map: Plastic Pandemonium

Post by j3rry »

Secg wrote: Thu Jun 27, 2019 1:04 am
Yeah. I have noticed that before. I will try to fix it as soon as possible. If you already know the way to fix this, then reply me — I will be grateful.
Last edited by j3rry on Tue Dec 28, 2021 9:17 pm, edited 1 time in total.
User avatar
Secg
Half Track L2
Half Track L2
Posts: 200
Joined: Sat Jun 10, 2017 12:28 am
United States of America

Re: New map: Plastic Pandemonium

Post by Secg »

Here's how I fixed that bug: I tweaked the projectile definition & substituted the ProjectileModel("StraightTrajectory") with ProjectileModel("GuidedTrajectory") (also adding other parameters)

Before:

Code: Select all

// PROJECTILE DEFINITION
CreateObjectType("army.proj.aagun", "Projectile")
{
  MapObj()
  {
    GodFile("army_mortar_shell.god");
    GenericFX()
    {
      Add("ProjectileObj::Trail", "weapon.aagun.proj");
    }
  }

  ProjectileObj()
  {
    ProjectileModel("StraightTrajectory");
    Explosion("army.exp.aagun");
  }
}
After:

Code: Select all

// PROJECTILE DEFINITION
CreateObjectType("army.proj.apache", "Projectile")
{
  MapObj()
  {
    GodFile("army_mortar_shell.god");
    GenericFX()
    {
      Add("ProjectileObj::Trail", "weapon.aagun.proj");
    }
  }

  ProjectileObj()
  {
    TopSpeed(400);
    ProjectileModel("GuidedTrajectory");
    HomingRate(120);
    //WaverTurn(30);
    //WaverRate(180);
    //AccelerationTime(2);
    Explosion("army.exp.apache");
  }
}
One more question: I know that the army_apache.god may no longer be modified. Yet can there be any way to minimize the pre-.god model & minimized texture proportionally?
ImageImage
User avatar
j3rry
Map Maker
Map Maker
Posts: 121
Joined: Thu Oct 11, 2018 5:43 am
Location: Central Russia
Russia

Re: New map: Plastic Pandemonium

Post by j3rry »

Secg wrote: Thu Jun 27, 2019 12:59 pm
Thanks, will update the map soon.

Minimize? Are you mean decrease polygons number or just reduce the model size?
Last edited by j3rry on Tue Dec 28, 2021 9:18 pm, edited 1 time in total.
User avatar
Secg
Half Track L2
Half Track L2
Posts: 200
Joined: Sat Jun 10, 2017 12:28 am
United States of America

Re: New map: Plastic Pandemonium

Post by Secg »

Hello again, j3rry! By "minimizing" I mean "reducing the model's size". Sorry for using the vague Latinate word. I did not know why I temporarily forgot the clearer Anglo-Saxon word "shrink". LoL!
ImageImage
User avatar
j3rry
Map Maker
Map Maker
Posts: 121
Joined: Thu Oct 11, 2018 5:43 am
Location: Central Russia
Russia

Re: New map: Plastic Pandemonium

Post by j3rry »

Secg wrote: Thu Jun 27, 2019 6:10 pm
Hello.

Apache is bigger than standard Chopper, but it is a way smaller than Chinook from original game files, which is enormous in all dimensions. (It seems justified, because Chinook is a transport.) In my opinion the model size is passable, because the size reminds us that Sargecopter is leader, leader among another vehicle units (Tanks, Choppers). Even standard Sarge model is bigger than Grunt or Bazooka-Man, so I did the same with Apache.
Last edited by j3rry on Tue Dec 28, 2021 9:21 pm, edited 1 time in total.
User avatar
Secg
Half Track L2
Half Track L2
Posts: 200
Joined: Sat Jun 10, 2017 12:28 am
United States of America

Re: New map: Plastic Pandemonium

Post by Secg »

Well said, my friend!
ImageImage
User avatar
j3rry
Map Maker
Map Maker
Posts: 121
Joined: Thu Oct 11, 2018 5:43 am
Location: Central Russia
Russia

Re: New map: Plastic Pandemonium

Post by j3rry »

Secg wrote: Thu Jun 27, 2019 11:42 pm
I have tested your fix and it works great. Thanks.

Reuploaded the map and uploaded the version without music. (If you do not want to re-download audio files.)
Last edited by j3rry on Tue Dec 28, 2021 9:23 pm, edited 2 times in total.
Post Reply

Who is online

Users browsing this forum: No registered users and 0 guests