Things like
Code: Select all
function toxic()
poison1:setParticleSystem("hit_slime")
end
But other things like
Code: Select all
function light()
lamp1:toggle()
end
Code: Select all
function toxic()
poison1:setParticleSystem("hit_slime")
end
Code: Select all
function light()
lamp1:toggle()
end
Code: Select all
poison1:setParticleSystem("hit_slime")
function toxic()
local poison = findEntity("poison1")
poison:setParticleSystem("hit_slime")
end
Code: Select all
function levelcheck()
if party.level == x then
end