Zysen
=)
Here's Pokemon Portrait System
TFS 0.3.6
When you put a poke ball example: 2453 on your feet then its will appear a picture on that creature which is contain on that 2453! On your legs that image will appear!
Credits to fast atk on OTFANS!
TFS 0.3.6
When you put a poke ball example: 2453 on your feet then its will appear a picture on that creature which is contain on that 2453! On your legs that image will appear!
LUA:
local fotos = {
["Abra"] = {fotopoke = 8485},
}
local idballs = {
[2532] = "Pokeball"
}
function onEquip (cid, item, slot)
local nome = getItemName(item.uid)
local balls = idballs[item.itemid]
local image = getPlayerSlotItem(cid, 7)
local semimage = 2649
function setItemName(uid,name)
return doItemSetAttribute(uid,'name',name)
end
for i,x in pairs(fotos) do
if i == balls then
doTransformItem(image.uid,x.fotopoke)
setItemName(image.uid, "portfoli's")
return true
end
end
end
Credits to fast atk on OTFANS!
Last edited: