Arma 3
Not enough ratings
Spider Bot from Hell
   
Award
Favorite
Favorited
Unfavorite
Data Type: Scenario
Scenario Gameplay: Multiplayer, Zeus
Scenario Type: Infantry, Vehicles
Scenario Map: Altis
Meta: Dependency
Tags: Tag Review
File Size
Posted
862.373 KB
12 Aug, 2022 @ 1:25pm
1 Change Note ( view )

Subscribe to download
Spider Bot from Hell

Description
Really basic demo mission using Seb's "Giant Death Spider" composition found here:

https://steamhost.cn/steamcommunity_com/sharedfiles/filedetails/?id=2838846896

I gave it some custom weapons, sounds and cosmetics for a little extra flair. Automatically spawns in and tracks the nearest player... give it a minute or two to reach you after the mission starts.

It's pretty deadly... would definitely need some balancing for a "serious" gamemode. All vanilla assets, just needs CBA loaded. Host as a multiplayer mission and go.

There are probably (almost certainly) some bugs but everything worked on my end for what little testing I did.
14 Comments
void 21 Jan, 2023 @ 12:49am 
Might be a dumb question but how do you make units engage at the Spider? Im quite new to eden editor so i don't really know
Graf von Scyth 19 Sep, 2022 @ 1:21am 
Thank you so much!! I got it working and my playerbase is now terrified.
Jacqueline 18 Sep, 2022 @ 9:27am 
Holy ever loving hell thank you!
Beef Supreme  [author] 18 Sep, 2022 @ 9:24am 
Yeah, the code I posted was just a example of how I added guns for the guy that was asking. If you are editing the code for original author's composition there's a line near the top of the code that says:

spider_target_object = "ProtectionZone_Invisible_F";

Try changing it to:

spider_target_object = "Land_HelipadEmpty_F";

Pretty sure that's all I had to do to get attached turrets to work properly.
Graf von Scyth 18 Sep, 2022 @ 6:45am 
I tried to do what you specified, but it just spawns a Fennec with a Praetorian attached to it. How do I just make it spawn this contraption?
Also, in the mission, how do you get the thing to shoot?
Whenever I attatch anything to the original composition, it can't shoot because it's inside the thing's safe zone, so the projectiles just instantly explode.
I've tried going into the long string of code inside the sub and deleting all references to the safe zone (there's only one) and it breaks half the code and the sub spawns without the legs.
Jacqueline 2 Sep, 2022 @ 7:51pm 
Amazing, thank you very much. I might make a video or something of the op I'm working on when we play it so you can see this beast in action.
Beef Supreme  [author] 2 Sep, 2022 @ 7:21pm 
_truck = createVehicle ["I_MRAP_03_F", [0,0,0], [], 0, "NONE"];
_truck setUnloadInCombat [FALSE,FALSE];

_truck setPosATL (player modelToWorld[0,30,0]);

_pilot = createGroup resistance createUnit ["O_Soldier_VR_F", [0,0,0], [], 0, "NONE"];
_pilot assignAsDriver _truck;
_pilot moveInDriver _truck;
_pilot setCaptive true;

_group = group _pilot;
_group setBehaviour "COMBAT";

_gun = "B_AAA_System_01_F" createVehicle getPos _truck;
_gun attachto [_truck,[0,0,3]];

_gun removeMagazines "magazine_Cannon_Phalanx_x1550";
_gun removeMagazines "magazine_Cannon_Phalanx_x1550";
_gun addWeaponTurret ["cannon_125mm",[0]];
_gun addMagazineTurret ["24Rnd_125mm_APFSDS_T_Red",[0]];
_gun addMagazineTurret ["24Rnd_125mm_APFSDS_T_Red",[0]];

_gunner = createGroup east createUnit ["O_Soldier_VR_F", [0,0,0], [], 0, "NONE"];
_gunner moveInAny _gun;
_gunner setCaptive true;
Beef Supreme  [author] 2 Sep, 2022 @ 7:21pm 
There's no composition for this one. I just put the original author's composition code into a script file and packed it in the mission pbo.

Go into the eden editor, place a unit down and hit the "play scenario" button. Next hit esc key and paste the code in the above post into the debug console with ctrl + v and hit the "LOCAL EXEC" button.

You can play around with that code and make it shoot whatever you want or attach more turrets/objects using the "attachTo" command. Put some blufor vehicles down in the distance to give it something to shoot at. Here is a list of the all the vehicle guns/ammo in the game:

https://community.bistudio.com/wiki/Arma_3:_CfgWeapons_Vehicle_Weapons

That is basically what I did with the spider.
Jacqueline 2 Sep, 2022 @ 1:57pm 
I cant seem to find this in my compositions even after restarting the game, and I'm also curious how you added the guns.
☃︎❄️IceColdCubes❄☃ 25 Aug, 2022 @ 3:52pm 
Thanks for the tip I will try it out and see if that helps I appreciate it.