Page 1 of 1

Mechanical Arms

Posted: Mon Jul 10, 2017 10:15 am
by GlassGo
Does they work with usual weapon, or only with mindstar?
Asking because Metalstar work without mindstar in hand, maybe even without mindstar in inventory.

Can someone chech it please?
Don't know where to put last category point.

Re: Mechanical Arms

Posted: Mon Jul 10, 2017 11:11 am
by Erenion

Code: Select all

callbackOnActBase = function(self, t)
		local mindstar = self:getInven(self.INVEN_OFFHAND) and self:getInven(self.INVEN_OFFHAND)[1]
		if not mindstar or mindstar.subtype ~= "mindstar" then return end
		if game.zone.wilderness then return end

Only works with mindstars.

Re: Mechanical Arms

Posted: Mon Jul 10, 2017 12:11 pm
by GlassGo
Many thanks!