Old Starchy
Nicholas Sorokin   Australia
 
 
Information may or may not have been given.
Currently Offline
Favorite Game
37
Hours played
Rarest Achievement Showcase
Comments
Rhetticus 23 Feb, 2021 @ 11:18pm 
Celeste, the best a boy can get
Old Starchy 25 Jul, 2015 @ 5:30am 
haha no worries, you want the third one. see here http://pastebin.com/diqEajVQ
Gonz008 25 Jul, 2015 @ 4:48am 
Alrite, so should it be like:
self.task = nil
end
if (fertilizer.components.stackable ~= nil) then
fertilizer.components.stackable:Get(1):Remove()
end
fertilizer.components.stackable:Get(1):Remove()
return true
else
return old(self, fertilizer)
end
end

Or like:

self.task = nil
end
if (fertilizer.components.stackable ~= nil) then
fertilizer.components.stackable:Get(1):Remove()
fertilizer.components.stackable:Get(1):Remove()
return true
else
return old(self, fertilizer)
end
end

Or like:
self.task = nil
end
if (fertilizer.components.stackable ~= nil) then
fertilizer.components.stackable:Get(1):Remove()
end
return true
else
return old(self, fertilizer)
end
end

Thanks for the swift response and sorry for blowing up your comments!
Old Starchy 25 Jul, 2015 @ 2:12am 
Yes, mostly, but you've doubled up on the "end"

if (fertilizer.components.stackable ~= nil) then
fertilizer.components.stackable:Get(1):Remove()
endfertilizer.components.stackable:Get(1):Remove()

should be

if (fertilizer.components.stackable ~= nil) then
fertilizer.components.stackable:Get(1):Remove()
end
Gonz008 24 Jul, 2015 @ 2:29pm 
Hey, I saw your comment on the Walter Character mod for DST and I wish to also fix the crash on my server. Just double checking what the script looked like... is this how it looked after you added the code?

if self.growthpercent >=1 then
self.inst.AnimState:PlayAnimation("grow_pst")
self:Mature()
self.task:Cancel()
self.task = nil
end
if (fertilizer.components.stackable ~= nil) then
fertilizer.components.stackable:Get(1):Remove()
endfertilizer.components.stackable:Get(1):Remove()
return true
else
return old(self, fertilizer)
end
end
end)

I know this is time consuming, but I would really appreciate it :)