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

Lua NPC + Quest

Dracitus

New Member
Joined
Feb 8, 2009
Messages
1
Reaction score
0
I'm Trying to make a quest where i bring some items from loot and give it to the npc then he gives me a reward / add on ........
 
It's simple instruction in lua:
Code:
if(getPlayerItemCount(cid, itemid) > 0) then
and if you want give player item you need use:
Code:
doPlayerAddItem(cid,item)
 
Back
Top