Page 1 of 1

Summon control and stacks of money

Posted: Thu Aug 26, 2010 9:55 pm
by Zaive
During summon control, your summon can pick up stacks of money.

The money disappears when they do.

Another thing about summon control - it resets the summons cooldowns. I summoned a hydra, waited for it to use it's 3 breaths, used summon control and used them all again.

Re: Summon control and stacks of money

Posted: Thu Aug 26, 2010 11:00 pm
by yufra
The summons not dropping money should be fixed with the addition of something like this to Actor:die...

Code: Select all

	if self.money > 0 then
		local money = game.zone:makeEntityByName(game.level, "object", "MONEY_SMALL")
		money.money_value = self.money
		game.zone:addEntity(game.level, money, "object", self.x, self.y)
	end
EDIT: Ok, tested it and edited the code above. This works.