• 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 [Solved]BUG in addItem()

tuxico

Member
Joined
Aug 2, 2010
Messages
52
Solutions
1
Reaction score
7
I'm trying to create an item by passing a variable as reference, or even doing table access operation, but it does not, the item is only created with an integer.
Lua:
    local test = 2128
   local NovaPB = player:addItem(test, 1)
 
Back
Top