• 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!

This should be easy to make Rep++

Frogq

New Member
Joined
Jun 1, 2010
Messages
45
Reaction score
1
Hey everyone,

Can someone help me create a item that will add 20 soul to the character who used it?

Items example : 2178 and if you can add some kind of magical effect, red music notes or something. Thanks Rep++
 
Code:
function onUse (cid, item, fromPosition, itemEx, toPosition)
  doPlayerAddSoul(cid, 20)
  doSendMagicEffect(getThingPos(cid), number_of_red_note)
  doRemoveItem(item.uid, 1)
  return true
end

change "number_of_red_note" to the "ID" of the music note ;p
 
Last edited:
Back
Top