• 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 [SQLite] -=[TFS]=- 0.4 8.60 [ACTION] 0.4 8.60 Casino Error

samuel157

/root
Joined
Mar 19, 2010
Messages
447
Solutions
3
Reaction score
49
Location
São Paulo, Brazil
GitHub
Samuel10M
Lua:
[23/08/2023 22:41:05] [Error - Action Interface]
[23/08/2023 22:41:05] In a timer event called from:
[23/08/2023 22:41:05] data/actions/scripts/casssino.lua:onUse
[23/08/2023 22:41:05] Description:
[23/08/2023 22:41:05] (luaDoCreateItem) Item not found

Lua:
-- Cassino System by LucasHere
function onUse(cid, item, frompos, item2, topos)
  pos1 = {x=272, y=344, z=7, stackpos=1} --posição que vai cria os items
  pos2 = {x=273, y=344, z=7, stackpos=1}
  pos3 = {x=274, y=344, z=7, stackpos=1}
local config = {
    moneyneed = 100 * 20, -- money needed to play (scarab 100)
  }
 
  local premios = {
    [2189] = 1,
    [6529] = 1,
    [2546] = 1,
    [2352] = 1,
    [2545] = 1,
    [8851] = 1,
    [7424] = 1,
    [7735] = 1,
    [8293] = 1,
    [7450] = 1,
    [8931] = 1,
    [8856] = 1
  }
 
  function additem(cid, premios)
    for itemId, quantity in pairs(premios) do
      doPlayerAddItem(cid, itemId, quantity)
    end
    doPlayerSendTextMessage(cid, MESSAGE_EVENT_ADVANCE, "Desculpe, você não tem 2K de Vip Coins moeda suficiente para jogar.")
  end
 
  if item.itemid == 1945 and getPlayerItemCount(cid, 11192) < config.moneyneed then
    doPlayerSendCancel(cid, "Desculpe, você não tem 2K de Vip Coin moeda suficiente para jogar!")
    return true
  end
 
  if item.itemid == 1945 then
    doTransformItem(item.uid, 1946)
    doPlayerRemoveItem(cid, 11192, config.moneyneed)

    addEvent(doCreateItem, 0, 0, pos1)
    addEvent(doCreateItem, 1000, 0, pos2)
    addEvent(doCreateItem, 2000, 0, pos3)
    addEvent(additem, 2000, cid, premios)
    return true
  end
 
  local item0 = getThingfromPos(pos1)
  local item1 = getThingfromPos(pos2)
  local item2 = getThingfromPos(pos3)
 
  if item.itemid == 1946 then
    doTransformItem(item.uid, 1945)
    if item0.itemid ~= 0 then
      doRemoveItem(item0.uid, 1)
    end
    if item1.itemid ~= 0 then
      doRemoveItem(item1.uid, 1)
    end
    if item2.itemid ~= 0 then
      doRemoveItem(item2.uid, 1)
    end
  else
    doTransformItem(item.uid, 1945)
  end
 
  return true
end
 

Similar threads

Back
Top