Bastion's ammo in sentry mode

Hi

I have a question, can you change bastion’s minigun ammo in sentry mode? I tried to change it by using “is in alternate form”, but it doesn’t work.

Try using the Is Using Ability 1 instead. Not sure if it will scale his ammo in recon form, I play very little Bastion :(.

I tried this before and it didn’t work :frowning:

Just did some testing and turns out the minigun ammo is treated as the second clip. So you can just make a rule for Bastion that looks like:

rule("Bastion1000MinigunAmmo")
{
	event
	{
		Ongoing - Each Player;
		All;
		Bastion;
	}

	conditions
	{
		Max Ammo(Event Player, 1) == 300;
	}

	actions
	{
		Set Max Ammo(Event Player, 1, 1000);
		Set Ammo(Event Player, 1, 1000);
	}
}

Not sure what ammo you want, but this will set his minigun ammo to 1,000

1 Like

Thanks mate. I couldn’t figure this out. Much love friend.

1 Like