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

Recent content by Paulix

  1. Paulix

    RevScripts [RevScripts] Cooldown

    this should do the trick local refiller = Action() local timeToDisapear = 120 * 1000 function refiller.onUse(player, item, fromPosition, target, toPosition, isHotkey) if not Tile(player:getPosition()):hasFlag(TILESTATE_PROTECTIONZONE) and player:getCondition(CONDITION_INFIGHT...
  2. Paulix

    Lua [SQLite] -=[TFS]=- 0.4 8.60 Use only reset 100 storage = 54676

    you might be looking for this... local gold_cost = 0 function onSay(cid, words, param) if getPlayerLevel(cid) >= 717217 and (getPlayerStorageValue(cid, 13545) > 0) and getPlayerStorageValue(cid, 54676) > 100 and isPremium(cid) then if doPlayerRemoveMoney(cid, gold_cost) then...
  3. Paulix

    RevScripts Lever by time

    You'll have to use AddEvent function, to make them tp back after 1 hour, the same way you teleport, just with some delay. Just keep in mind that if players dies before the timer runs out, it will print some error on your console if you do nothing about.
  4. Paulix

    Lua [SQLite] [ACTION] -=[TFS]=- 0.4 8.60 Casino Script

    -- Cassino System by LucasHere function onUse(cid, item, frompos, item2, topos) pos1 = {x=264, y=344, z=7, stackpos=1} --posição que vai cria os items pos2 = {x=265, y=344, z=7, stackpos=1} pos3 = {x=266, y=344, z=7, stackpos=1} local config = { moneyneed = 100 * 20, -- money needed...
  5. Paulix

    Lua [SQLite] -=[TFS]=- 0.4 8.60 Is not working command !desbug and buy item free condition VIP LVL 717217 and Premium

    you're failing to meet one of this requirements if getPlayerLevel(cid) >= 717217 and getPlayerStorageValue(cid, 13545) == 1 and isPremium(cid) then probably one of these isn't true: you are level below 717218 your storagevalue 13545 isn't 1 you aren't premium try this script to see which one...
  6. Paulix

    Lua [SQLite] -=[TFS]=- 0.4 8.60 Is not working command !desbug and buy item free condition VIP LVL 717217 and Premium

    your script is missing the end in the file, copy again this
  7. Paulix

    Lua [SQLite] -=[TFS]=- 0.4 8.60 Is not working command !desbug and buy item free condition VIP LVL 717217 and Premium

    it is working here, you probably did something wrong, post the desbug.lua file
  8. Paulix

    Lua [SQLite] -=[TFS]=- 0.4 8.60 Is not working command !desbug and buy item free condition VIP LVL 717217 and Premium

    local gold_cost = 0 function onSay(cid, words, param) if getPlayerLevel(cid) >= 717217 and getPlayerStorageValue(cid, 13545) == 1 and isPremium(cid) then if doPlayerRemoveMoney(cid, gold_cost) then doPlayerAddItem(cid, 5805, 1) doCreatureSay(cid, "Você comprou um item para...
  9. Paulix

    TFS 1.X+ Problem with blocking shots.

    To actually check if you can attack something, you must validade a few things, here is a function I made that I use on my server for those purposes... function canAttack(cid,var) cid = Creature(cid) var = Creature(var) if cid == var then return false end local creaturePosition =...
  10. Paulix

    Lua -=[TFS]=- 0.4 8.60 [TALKACTION] ERROR ON SCRIPT VIP SYSTEM

    the problem is that the creature is logging off before the addevent executes, once the addevents runs if the player is logged out it will not be able to find the creature did you change anything on the original script? are you loggin instantly after using this talkaction or it takes 5 seconds...
  11. Paulix

    Lua -=[TFS]=- 0.4 8.60 [TALKACTION] ERROR ON SCRIPT VIP SYSTEM

    i think you might need more time to the script fully execute try changing "tempo" from 1 to 5 --[Configurações de Condição]__ config = { --[[verdadeiro / Falso]] needPa = true, -- Precisa de Premium Account? [true / false] needPz = true, -- Precisa estar em Protection Zone? [true / false]...
  12. Paulix

    Lua -=[TFS]=- 0.4 8.60 [TALKACTION] ERROR ON SCRIPT VIP SYSTEM

    try this --[Configurações de Condição]__ config = { --[[verdadeiro / Falso]] needPa = true, -- Precisa de Premium Account? [true / false] needPz = true, -- Precisa estar em Protection Zone? [true / false] battle = true, -- Precisa estar sem Batlle para Resetar? [true / false] withe =...
  13. Paulix

    Lua -=[TFS]=- 0.4 8.60 [TALKACTION] ERROR ON SCRIPT VIP SYSTEM

    post what is before this error, there is a cid: ..... on somewhere on ur console
  14. Paulix

    Lua -=[TFS]=- 0.4 8.60 [TALKACTION] ERROR ON SCRIPT VIP SYSTEM

    try this and check whats printing on console when you calling for cid --[Configurações de Condição]__ config = { --[[verdadeiro / Falso]] needPa = true, -- Precisa de Premium Account? [true / false] needPz = true, -- Precisa estar em Protection Zone? [true / false] battle = true, --...
  15. Paulix

    Lua -=[TFS]=- 0.4 8.60 [TALKACTION] ERROR ON SCRIPT VIP SYSTEM

    try this function onSay(cid, words, param) --[Configurações de Condição]__ config = { --[[verdadeiro / Falso]] needPa = true, -- Precisa de Premium Account? [true / false] needPz = true, -- Precisa estar em Protection Zone? [true / false] battle = true, -- Precisa estar sem Batlle para...
Back
Top