• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

How to use math.random with doCreateItem

Tbol

Well-Known Member
Joined
Apr 7, 2019
Messages
625
Reaction score
71
TFS 1.2
So managed to create random amount with addItem but when i tried to use doCreateItem it gives A nil value error
LUA:
function onUse(cid, item, fromPosition, itemEx, toPosition)
    doCreateItem(15848, math.random(3))
    doTransformItem(item.uid, 2786)

    doDecayItem(item.uid)
    return true
end
 
Back
Top