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

Search results

  1. Leon Zawo

    Suggestion Black Theme [PHP] Colors

    ...? I can't read posts from other users in Support section. If you had a brain, you'd know it. It isn't difficult to change 2 values in style..
  2. Leon Zawo

    Suggestion Black Theme [PHP] Colors

    Refresh.... https://i.imgur.com/KCckUKo.png
  3. Leon Zawo

    Suggestion Black Theme [PHP] Colors

    Hi, Seriously? Navy blue with red? I have problems to read code in this tags. Please change these colors to more contrast to the black background.. Thanks. <?php date_default_timezone_set('UTC'); echo date("l"); echo date('l jS F Y h:i:s A'); echo "1 lipca, 2000 wypada w " . date("l"...
  4. Leon Zawo

    Lua Daily/hourly chest open times

    function onUse(cid, item, fromPosition, itemEx, toPosition) local pos = {x=999, y=999, z=7} local daily = getPlayerStorageValue(cid, 13545) if (daily == -1) then daily = 0 end if getPlayerStorageValue(cid, 13544) - os.time() <= 0 then doPlayerAddItem(cid...
  5. Leon Zawo

    Lua Daily quest chest help

    I hate when somebody stealing credits.. :/ http://forum.tibia.tv/showthread.php?36349-Daily-Quest
  6. Leon Zawo

    Action Daily Quest + Counter - player can get prize after 24 hours from the last time.

    Where are credits..? http://forum.tibia.tv/showthread.php?36349-Daily-Quest
  7. Leon Zawo

    Lua Rusty remove does not disapear

    You can use my Rusty Remover: http://otland.net/threads/rusty-remover-99-real-tibia.129907/ ... Here is with better format: http://forum.tibia.tv/showthread.php?36744-Rust-Remover-(99-Real-Tibia)
  8. Leon Zawo

    Lua Daily quest chest help

    O, remake of my old script.. Where are credits?! XD Change: local time = getPlayerStorageValue(cid, 13543) To: local daily = getPlayerStorageValue(cid, 13543) This should fix the number of times you have used this chest. Problem 2: WTF, what did you do with timer..? xD NEVERMIND., take...
  9. Leon Zawo

    Lua Weapon Charges.

    In npc script you must provide additional parameter, which is charges amount. i.e: name,id,price,count,charges ; (I don't remember the order)
  10. Leon Zawo

    Lua Spell animation list and help me understand

    /libs/000-constant.lua Some values are used to spell area effect, effect on hit, missile animation, etc. @Edit This time you was faster. :|
  11. Leon Zawo

    Solved NPC

    local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid)...
  12. Leon Zawo

    Solved Can't Open MY OT!

    Make sure your ip changer works, Check your config.lua for hashing type and then passwords from database, Hmm.. you can use "ps aux" to search PID of your process and then kill it with: kill -9 PID
  13. Leon Zawo

    Lua What is wrong with this NPC??

    In 100-shortcut.lua "getItemNameById" is referencing to non-existing function. Better show 260 line from that file. /\
  14. Leon Zawo

    Lua Ingame premium point shop help

    What error are u getting in console?
  15. Leon Zawo

    Running TFS and having an error

    Man I told you all what u need to deal with it. Search for libaries and send it to hoster. Problem is in .DLL files.
  16. Leon Zawo

    Solved NPC look direction and message greet

    1. after walkinterval add "direction". 2. use default npc script without onCreatureSay handler. (Ofc dont edit default.lua, just create new one) local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) function...
  17. Leon Zawo

    Solved Cannot talk to Npc

    Problem is in your .xml file You have empty: <parameter key="message_greet" value="SOME TEXT HERE"/>
  18. Leon Zawo

    Lua Duplicate lever when timer ends

    Okey, u can pass lever uid to function. doTransformItem(item.uid,1946) addEvent(onTimer, 10000, item.uid) function onTimer(lever) doTransformItem(lever, 1945)
  19. Leon Zawo

    Running TFS and having an error

    What you used to compile? You need same .dll libaries what linked your compiler to application. So check paths to libs in your compiler and take from there all .dll files what you need and send them on hoster computer. You can also try check integrity with Winsows XP. btw. I think you moved...
  20. Leon Zawo

    Bug Talkactions and GlobalEvents

    function isPlayerGhost(cid) return isPlayer(cid) and (getCreatureConditionInfo(cid, CONDITION_GAMEMASTER, GAMEMASTER_INVISIBLE) or getPlayerFlagValue(cid, PLAYERFLAG_CANNOTBESEEN)) end Just change all your getCreatureCondition to getCreatureConditionInfo ; Or simply add it to compat. (:
Back
Top