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

help in this script

Flourence

New Member
Joined
Sep 22, 2009
Messages
60
Reaction score
4
help in this plzz
Code:
function onUse(cid, item, fromPosition, itemEx, toPosition)
   if getPlayerVocation(cid) <= 4 then
      doPlayerAddItem(cid,2365,1)
   end
end
how to add in this bp like 100 ham 100 meat 100 mushroom
when this itm is created
 
Code:
local container = doPlayerAddItem(cid, 2000)
doContainerAddItem(container, HamID, 100)
doContainerAddItem(container, MeatID, 100)
doContainerAddItem(container, MushroomID, 100)
 
Back
Top