• 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. C

    Lua Item for block spawn

    Bump :)
  2. C

    Visual Studio 2017 - Otclient - DirectX9

    It is possible to compile otclient dx9 on vs17?
  3. C

    Visual Studio 2017 - Otclient - DirectX9

    Hi Thank's i will try:)
  4. C

    Visual Studio 2017 - Otclient - DirectX9

    Hi i try to compile otclient directX9 on VS 2017. i have set OPENGL_ES=2 as a preprocessor. I add path to librares OpenGL-ES-SDK-master i get the error 'GLES2/gl2.h': No such file or directory (kompilowanie pliku źródłowego ..\src\client\client.cpp) otclient...
  5. C

    Otclient on Windows 10 (virtualbox)

    Hi I have Ubuntu 18.04 I install virtualbox and install windows 10 on virtualbox. When i started otclient on windows 10 i get message " No graphics card detected, everything will be drawn using the CPU,\nthus the performance will be really bad.\nPlease update your graphics driver to have a...
  6. C

    darkness on all floors

    Bump. I bet a beer
  7. C

    Lua TFS 1.2 can not log out for XX seconds.

    Hi I want rebuild foods script . After you eat food you can't logout for xx seconds. i found this script local storage = 102 function onLogout(cid) if (getCreatureStorage(cid, storage) == 1) then doPlayerSendCancel(cid, "You can not log out during these effects.") return...
  8. C

    Lua Item for random teleport

    like that? if(math.random(1,1000) <= psychodelic[8]) then -- chance to add skill (target:getBaseMagicLevel() + 1) doRemoveItem(item.uid, 1) else i get syntax error or i try this...
  9. C

    Lua Item for random teleport

    How to add magic lvl on tfs 1.2 i use doPlayerAddMagLevel(cid, 1) but i get error this is full code local random_positions = { {x = 29990, y = 30125, z = 7}, {x = 29990, y = 30124, z = 7}, {x = 29990, y = 30000, z = 7} } local random_positions_spec = { {x = 29990, y = 30125, z = 7}, {x =...
  10. C

    Lua Item for random teleport

    my(our) final code? thanks for help. someone have any tips for this code? local random_positions = { {x = 29990, y = 30125, z = 7}, {x = 29990, y = 30124, z = 7}, {x = 29990, y = 30000, z = 7} } local random_positions_spec = { {x = 29990, y = 30125, z = 7}, {x = 29990, y = 30124, z = 7}, {x =...
  11. C

    Lua Item for random teleport

    Thank's its working! You have nice skill :)
  12. C

    Lua Item for random teleport

    i want to make exhaust to this system. I found this code function Player.setExhaustion(self, value, time) self:setStorageValue(value, time + os.time()) end function Player.getExhaustion(self, value) local storage = self:getStorageValue(value) if not storage or storage <= os.time()...
  13. C

    Lua Item for random teleport

    I made a mistake. i uncheck multiuse and now its working. thanks for the tips and lessons. i go sleep is late in poland :)
  14. C

    Lua Item for random teleport

    i use created by me item when i uncheck multi use, script dont work
  15. C

    Lua Item for random teleport

    I'm sorry, maybe I wrote wrong. To use this item i must click right button on mouse on this item and next to me(player). How to make one click active item, without click on player. Function food working that.
  16. C

    Lua Item for random teleport

    Big thanks! Actually to use item i must click on item right button in mouse and on player left button mouse. How to make item active only right button? like "food" i click on food right button and disappear item Which function is responsible for it
  17. C

    Lua Item for random teleport

    I have modified little bit code for random_voices But there are no subtitles in game. No errors. What i do wrong? local random_positions = { {x = 29990, y = 30125, z = 7}, {x = 29990, y = 30124, z = 7}, {x = 29990, y = 30000, z = 7} } local random_voices = { {'Xddd'}, {'zzzz'}, {'vvvv'} }...
  18. C

    Lua Item for random teleport

    TFS 1.2
  19. C

    Lua Item for random teleport

    as you think, if I set the timer for 2 hours. If many people use the item. will this server overload?
  20. C

    Lua Item for random teleport

    You are my master :D thanks alot. this is code local random_positions = { {x = 29990, y = 30125, z = 7}, {x = 29990, y = 30124, z = 7}, {x = 29990, y = 30000, z = 7} } local timeback = 5 function back(cid) doTeleportThing(cid, old) doSendMagicEffect(old, CONST_ME_TELEPORT) end...
Back
Top