Hi, I need a code for the NPC for TSF 0.3.5pl1.r88 Tibia: 8.50
NPC has transformed the player here is like this:
This transformation has to be constant and you can do it only once.
all this is to take place in the channel NPCs.
NPC has transformed the player here is like this:
Code:
doPlayerSetVocation (cid, 20)
doSendMagicEffect (getCreaturePosition (cid), 10)
doCreatureChangeOutfit (cid, {lookType = 261})
local maxHp = getCreatureMaxHealth (cid)
local newHp = (3000 + maxHp)
setCreatureMaxHealth (cid, newHp)
local maxMp = getCreatureMaxMana (cid)
local newMp = (3000 + maxMp)
setCreatureMaxMana (cid, newMp)
This transformation has to be constant and you can do it only once.
all this is to take place in the channel NPCs.