undead mage
Active Member
Just say !addsoul with the doll and u will get 1 soul point u can change it to more soul points 
data\talkactions\scripts\addsoulpoint
And this in talkactions
(I did not make the script!!! Im just sharing it
Its from Limos so give her the rep!)
data\talkactions\scripts\addsoulpoint
PHP:
function onSay(cid, words, param)
local soul = getPlayerSoul(cid)
if soul == 200 then
return doPlayerSendCancel(cid, "You can not add more soul")
end
if getPlayerItemCount(cid, 10306) >= 1 then
doPlayerRemoveItem(cid, 10306, 1)
doPlayerAddSoul(cid, 1)
doPlayerSendTextMessage(cid,25,"You added 1 soul.")
else
doPlayerSendCancel(cid, 'You need a doll for this.')
end
return true
end
And this in talkactions
PHP:
<talkaction words="!addsoul" event="script" value="addsoulpoint.lua"/>
(I did not make the script!!! Im just sharing it
Last edited: