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

Npc bone and dream master + shield and lever diamonds + ( certificates)

Mauzim

Member
Joined
Jan 3, 2011
Messages
568
Reaction score
9
NPC BONE AND DREAM MASTER + SHIELD AND LEVER DIAMONDS + ( CERTIFICATES)
Any1 have this?;p
 
why dont you try doing theese? They are really simple to script.


based on this one below, you cant do the other certificates.
LUA:
function leverReturn3(item)
doTransformItem(getTileItemById({x=32833,y=32224,z=14}, 1946).uid, 1945)
end

local p = getPlayerPosition(cid)

if item.actionid == 19503 and getPlayerItemCount(cid, 2145) >= 1 and item.itemid == 1945 then

         doTransformItem(item.uid, 1946)
         doPlayerRemoveItem(cid, 2145,1)
         doSendMagicEffect({x=p.x-1,y=p.y,z=p.z},12)
         doCreateItem(7845,1,{x=p.x-1,y=p.y,z=p.z})
         addEvent(leverReturn3, 2 * 1000)
     else
         doPlayerSendCancel(cid,"Sorry, not possible." )
end
 
Back
Top