Search the Community
Showing results for tags 'effect'.
Found 2 results
-
Hi everyone, I have been working on project that includes weapon which makes enemies fall asleep after hit. I had searched through game files and I haven't found any code lines to make my effect based on luck. I mean that I don't want this effect to occur everytime character hits with the weapon. So maybe you know method to cause sleep on attack every few hits. This is the code: ------sleep local function sleepattack(inst, owner, target) if not target:IsValid() then --target killed or removed in combat damage phase return end target.SoundEmitter:PlaySound("dontstarve/common/blackpowder_explo") if target.components.sleeper ~= nil then target.components.sleeper:AddSleepiness(100, 15, inst) elseif target.components.grogginess ~= nil then target.components.grogginess:AddGrogginess(100, 15) end end Thanks in advance and have a great day/night
-
I've been working on an Alice in Wonderland character and I would like to make mushrooms have different effects for her. I'd like blue caps to make her glow, green to speed her up and red to increase strength all for limited times. How should I go about this? Would it be easier to have her craft the mushrooms into an entirely new edible item? This is my first character mod sorry if this question seems silly.