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

  1. X

    Windows Gesior Acc for TFS 1.2 Vocation problem

    Hello, I've got a problem with my Gesior Acc Maker for TFS 1.2 . I created a vocation with id = 20 and Acc Maker doesn't accept new vocation even if I inserted a valid ID. code from config.php ACC Maker $config['site']['newchar_vocations'] = array(1 => 'Sorcerer Sample', 2 => 'Druid Sample', 3...
  2. X

    Gesior2012 TFS 1.0 bug fixes and big update to tibiacom layout

    bump! Someone can fix this problem?
  3. X

    Gesior2012 TFS 1.0 bug fixes and big update to tibiacom layout

    I'm including a screen. Sorry I couldn't edit earlier post.
  4. X

    [1.2 TFS] getFormattedWorldTime function

    It works if I put "getFormattedWorldTime() >= "1435" thanks! By the way, it is possible to make server time same like in real world?
  5. X

    Gesior2012 TFS 1.0 bug fixes and big update to tibiacom layout

    How can I there add new vocations?
  6. X

    [1.2 TFS] getFormattedWorldTime function

    so what I have to do with this "1435"?
  7. X

    [1.2 TFS] getFormattedWorldTime function

    I've just added this new function to global.lua and changed from getWorldTime() to getFormattedWorldTime2() and got error: attempt to compare number with string. My whole globalevent script:
  8. X

    [1.2 TFS] getFormattedWorldTime function

    function onThink() if getWorldTime() >= 1435 then for i = 1, #t do local light = getTileItemById(t[i], 1479).uid local light1 = getTileItemById(t[i], 1480).uid if(light >= 0) then doTransformItem(light, 1480)...
  9. X

    [1.2 TFS] getFormattedWorldTime function

    getWorldTime() works different, because this function is counting time when OT is online.
  10. X

    [1.2 TFS] getFormattedWorldTime function

    Hi, I've got a problem with function getFormattedWorldTime. I want to create a condition "if server worldtime is 14:35 or above then function runs" I tried with: if getFormattedWorldTime() >= 1435 then and I've got this error: attempt to compare string with number Can you help me?
  11. X

    [1.2 TFS] Max health/mana potion

    Thanks zbizu, that's it!;)
  12. X

    [1.2 TFS] Max health/mana potion

    but I see, "1000" means, every player get 1000 hp by drinking potion. I need script that player who has 250 hp get 255 and who has 500 hp get 505. I need something like this: creature:setMaxHealth((getCreatureMaxHealth)+5) but this not working.
  13. X

    [1.2 TFS] Max health/mana potion

    okay, so how can I set up this function if I want to give life potions +5 max health? I'm asking because I don't know how functions of TFS 1.2 working. Thanks PS. will be fine if anybody give me link to tutorial of TFS 1.2 scripting
  14. X

    [1.2 TFS] Max health/mana potion

    bump
Back
Top