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.
Summon control and stacks of money
Moderator: Moderator
Summon control and stacks of money
Burb Lulls wrote:"FLURRYFLURRYFLURRYFLURRYFLURRYFLURRY"
Re: Summon control and stacks of money
The summons not dropping money should be fixed with the addition of something like this to Actor:die...
EDIT: Ok, tested it and edited the code above. This works.
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
<DarkGod> lets say it's intended