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

Search results

  1. 1268995

    PayPal Script [RELEASE]

    re up plx
  2. 1268995

    Solved how to: a check that set iten that cannot be used

    Hello, i am making a checker to my script but is not working look: (...) function onUse(cid, item, fromPosition, itemEx, toPosition) if item.itemid ~= 2182 then (...) I want that if player use the item named X on itemID 2182, do code returnns. How? EDIT: oh i found thesolution. I must put...
  3. 1268995

    Linux Trying compile in Ubuntu 14.04

    Use another source
  4. 1268995

    Lua Error on a upgrade system: attempt to index field '?' (a nil value)

    Wait, i have a new problem... I can only upgrade a item +1. It was supposed to be possible to upgrate until +10, right? When item are +1, appear: The targeted spike sword is already on max upgrade level.
  5. 1268995

    Lua Error on a upgrade system: attempt to index field '?' (a nil value)

    I changed chances.upgrade = (self.levels[self.item.level + 1][1] or 100) to chances.upgrade = (self.levels[self.item.level] or 100) and all workeeeed!!!!!!! THANKSSSSSSS EDIT: not work, read down!
  6. 1268995

    Lua Error on a upgrade system: attempt to index field '?' (a nil value)

    Ops sorry for that. Sorry limos xd I cant update to tfs 1.x, my server are already online about 2 months, 15 player online +/- >.< But thanks for ur time, help and attentions Buddy! Maybe someone have another idea, i will wait!
  7. 1268995

    Lua Error on a upgrade system: attempt to index field '?' (a nil value)

    This is a old script from other forum. His owner do not enter in the forum in like a year. Maybe @Limos has something to say :confused:
  8. 1268995

    Lua Error on a upgrade system: attempt to index field '?' (a nil value)

    Really thanks anyway!!!! I also dont know why are giving this error >.<
  9. 1268995

    Lua Error on a upgrade system: attempt to index field '?' (a nil value)

    I did: (...) print(self.item.level) local chance = (self:chance().upgrade + tool.info.chance) (...) And appear on console ' 0 ' + the error .
  10. 1268995

    Lua Error on a upgrade system: attempt to index field '?' (a nil value)

    i maded: (...) print(self.levels[self.item.level + 1]) chances.upgrade = (self.levels[self.item.level + 1][1] or 100) (...) And on console appear the error (the same?): [13/07/2015 19:04:29] [Error - Action Interface] [13/07/2015 19:04:29] data/actions/scripts/upgrade.lua:onUse...
  11. 1268995

    Lua Error on a upgrade system: attempt to index field '?' (a nil value)

    I maded this way: (...) print(self.levels[self.item.level + 1][1]) chances.upgrade = (self.levels[self.item.level + 1][1] or 100) (...) And the same error appeared, and notthing appear on console. Only appear on console the same error. I think the error are on upgrade.lua, line 12...
  12. 1268995

    Lua Error on a upgrade system: attempt to index field '?' (a nil value)

    chances.upgrade = (self.levels[self.item.level + 1][1] or 100)
  13. 1268995

    Lua Error on a upgrade system: attempt to index field '?' (a nil value)

    Hello, i am having this error on this upgrade system: [13/07/2015 16:00:09] [Error - Action Interface] [13/07/2015 16:00:09] data/actions/scripts/upgrade.lua:onUse [13/07/2015 16:00:09] Description: [13/07/2015 16:00:09] data/lib/upgradesystem.lua:60: attempt to index field '?' (a nil value)...
  14. 1268995

    Solved Why exhausted are not working on this script?

    Reading better the link u sent me, i think i really need a checker of storage.. I will see what can i do. YE, @Limos are ALWAYS RIGHT! if (getPlayerStorageValue(cid, gab.storage) > os.time())then return doPlayerSendCancel(cid,"You must wait more " .. getPlayerStorageValue(cid, gab.storage) -...
  15. 1268995

    Solved Why exhausted are not working on this script?

    I read what you teach on the link u sent me. Are you suggesting me to make a checker? IF yes, how can i do that in my script? As i said, this exhausted function WORKS on others scriptS without the need of using checkers. This part works on my other script: local gab = { exhausted = 2.7, --...
  16. 1268995

    Lua Error on make small tree desappear on this script

    watching the code, in this part i think needed to be changed: addEvent(doCreateItem, time*1000, item2.itemid, 1, getThingPos(item2.uid)) I think the best think to do is to put doTransformItem(TRANSFORM SMALL PLANT WITH ITEM ID 8786 IN GROWN TREE WITH ID:8313 ) The code give i think 4 tree...
  17. 1268995

    How: gesior stuff for counting player online time

    0.3.6 buddy (or 0.4, but i think 0.3.6)
Back
Top