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

  1. lokolokio

    TFS 1.X+ Offline Training OnLogin Problem

    Thanks, It works too... I dont know if it works better, but gives no error too, and I'll follow your advice, thank you again
  2. lokolokio

    TFS 1.X+ Offline Training OnLogin Problem

    The solution that I found is by put "false" instead of "-1", now the console gives no error and seems to works fine. player:setOfflineTrainingSkill(false)
  3. lokolokio

    TFS 1.X+ Offline Training OnLogin Problem

    BUMP, Same here :S TFS 1.4.2
  4. lokolokio

    AAC The better website for TFS 1.4.2

    Thanks both for answer, I solved via creating a new database for the new server, I have forgot to put a complete new database with schema.sql, thanks both, I am very grateful with both, I dont know how can I mark as "best answer" here, thank you very very much. @Albert José @Mateus Robeerto
  5. lokolokio

    AAC The better website for TFS 1.4.2

    Hello dear otlanders, I want to ask, wich are the best website for TFS 1.4.2? with myAcc, gives error of Exception class: PDOException() SQLSTATE[42S02]: Base table or view not found: 1146 Table 'server.z_polls' doesn't exist File: C:\xampp\htdocs\system\libs\pot\OTS_Base_DB.php Line: 86 and...
  6. lokolokio

    RevScripts Protection by % based on a storage value.

    and if try to remove the callback?... just this line... "local ec = EventCallback" and change this ... function ec.onHealthChange(creature, attacker, primaryDamage, primaryType, secondaryDamage, secondaryType, origin) for this... function onHealthChange(creature, attacker, primaryDamage...
  7. lokolokio

    Lua Where to found lua options list.

    Where I can found the lua options list of TFS1.4.2? Ex. Player:getHealth(), Player:get;Mana(), isValidMoney(money), getLootRandom(), getMoneyCount(string), etc.
  8. lokolokio

    RevScripts Protection by % based on a storage value.

    And if you try this one?... (this is a modified version of the script that @Sarah Wesker have created), thanks Sarah, also hope this works. local storage = 757557 local difference = 30 -- 30% local ec = EventCallback function ec.onHealthChange(creature, attacker, primaryDamage, primaryType...
  9. lokolokio

    TFS 1.X+ Paradox Quest entrance. tfs 1.5

    Try this ... hope it works. function ChangeBack(pos) doTransformItem(getThingfromPos(pos).uid, 1304) end function onStepIn(cid, item, pos) if item.actionid == 8008 and getThingfromPos({x=32478, y=31906, z=7, stackpos=1}).itemid == 2782 and getThingfromPos({x=32478, y=31902, z=7...
  10. lokolokio

    TFS 1.X+ remove wall with lever tfs 1.5

    Im sorry, my mistake, need to change this ... pushgate1 = {x=gatepos.x, y=gatepos.y + 1, z=gatepos.z, stackpos=gatepos.stackpos} pushgate2 = {x=gatepos.x, y=gatepos.y + 1, z=gatepos.z, stackpos=gatepos.stackpos} pushgate3 = {x=gatepos.x, y=gatepos.y + 1, z=gatepos.z...
  11. lokolokio

    TFS 1.X+ remove wall with lever tfs 1.5

    This is not an "Improved" version, but, I hope this helps you... in "pushgate" positions, you can modify where player will be kicked. (x=gatepos.x+1... x=gatepos.x-1... y=gatepos.y+1... y=gatepos.y-1) function onUse(cid, item, frompos, item2, topos) gatepos = {x=32862, y=32556, z=11...
  12. lokolokio

    Lua [TFS 0.X] Convert 1.X Spell - Silencer Skill Reducer

    You can try this one... local combat = {} for i = 20, 70 do local condition = Condition(CONDITION_ATTRIBUTES) condition:setParameter(CONDITION_PARAM_TICKS, 6000) condition:setParameter(CONDITION_PARAM_STAT_MAGICPOINTSPERCENT, i) combat[i] = Combat()...
  13. lokolokio

    Lua TFS 1.2 Looking for Bless Npc

    :( it needs to be on: -1, but, It's working fine for me, but I didn't use npc blessing, I use Talkaction... function getCost(level) if level <= 30 then return 2000*5 elseif level >= 120 then return 10000*5 else return ((level - 20) * 200 * 5) end end...
  14. lokolokio

    Lua TFS 1.2 Looking for Bless Npc

    I know, maybe you already checked this, but, its better to comment... did you already checked your config.lua? May you need to change some values there, because when is 0-10, the config lua takes control, no matter what "core/player.lua" says. -- Deaths -- NOTE: Leave deathLosePercent as -1...
  15. lokolokio

    MoveEvent [1.3] Zombski 🧠🧟‍♂️

    That function is available in TFS 1.2? This one -- "zombski.lua" -- (To create a monster with custom params)
Back
Top