• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Halloween Pumpkin!

  • Thread starter Thread starter Deleted member 49793
  • Start date Start date
D

Deleted member 49793

Guest
Hey guys this might be released if it is mind linking or if you want rep ++ make me one quick :D?

Basicly its like you eat a pumpkin and it makes you into a creature outfit for 3 minutes, like a zombie for example :D Pretty easy!

Thank you!
Repp++
Moist
 
Post 3,000. :blink:

Code:
local outfit = {
	lookType = 0,
	lookHead = 0,
	lookBody = 0,
	lookLegs = 0,
	lookFeet = 0
}

function onUse(cid, item, fromPosition, itemEx, toPosition)
	local time = 3 * 60
	return doSetCreatureOutfit(cid, outfit, time) and doSendMagicEffect(getThingPos(cid), CONST_ME_MAGIC_BLUE) and doRemoveItem(item.uid, 1)
end

If it's a monster outfit, just edit lookType.
 
Post 3,000. :blink:

Code:
local outfit = {
	lookType = 0,
	lookHead = 0,
	lookBody = 0,
	lookLegs = 0,
	lookFeet = 0
}

function onUse(cid, item, fromPosition, itemEx, toPosition)
	local time = 3 * 60
	return doSetCreatureOutfit(cid, outfit, time) and doSendMagicEffect(getThingPos(cid), CONST_ME_MAGIC_BLUE) and doRemoveItem(item.uid, 1)
end

If it's a monster outfit, just edit lookType.

But the real The Mutated Pumpkin transform players in many diferent monsters...

Do you know do that??

ty for help
 
Maybe function math.random(Outfit NUmber,outfit number) its good.
Its takes from 10 to 40 or settings by you outfits from tibia! :)
function onUse(cid, item, fromPosition, itemEx, toPosition)
local time = 3 * 60
return doSetCreatureOutfit(cid, math.random(Outfit-ID,Outfit-ID), time) and doSendMagicEffect(getThingPos(cid), CONST_ME_MAGIC_BLUE) and doRemoveItem(item.uid, 1)
end
 
Back
Top