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

    Linux Security and stability problems

    What are you basing that on? Any Linux distribution should be equally secure if properly setup. @thread I'd suggest reading about basic network security and firewalls in Linux. General knowledge about iptables and host intrusion detection systems, such as ossec, may come handy when dealing with...
  2. Frikx

    TFS 0.X OTX error - crash [segmentation fault]

    That's strange. When does it happen? Are you able to replicate the error?
  3. Frikx

    TFS 0.X OTX error - crash [segmentation fault]

    Did you modify the sources?
  4. Frikx

    Znote aac problems

    Change the site URL in the config.php
  5. Frikx

    Desktop Post your desktop!

    Sick! :o
  6. Frikx

    TFS 1.3

    otland/forgottenserver
  7. Frikx

    OTClient ( remove movement system )

    Disable the smart walking:
  8. Frikx

    AutoPush Delay

    From what I can understand... >> data/events/events.xml <event class="Player" method="onMoveCreature" enabled="1" /> >> data/events/scripts/player.lua function Player:onMoveCreature(creature, fromPosition, toPosition) if creature:getId() == self:getId() then -- If you are trying to push...
  9. Frikx

    !bless tfs 1.3

    local getPlayerBlessings(player) local t = 0 for i = 2, 8 do if player:hasBlessing(i) then t = t + 1 end end return t < 7 and false or true end function onUse(player, item, fromPosition, target, toPosition, isHotkey) if getPlayerBlessings(player)...
  10. Frikx

    // Scripter looking for a job

    Frikx#9942 !bump
  11. Frikx

    Gamemaster Searching for Gamemasters to MasterCores 7.4 Lowrate!

    Just sent an application! :p
  12. Frikx

    // Scripter looking for a job

    Sorry for the late reply, I'm not too experienced in C++. >> Open for new projects << Latest script: [TFS 1.2] Stone Event
  13. Frikx

    Lua script error: [creaturescript interface]

    local outfits = { [1] = {lookType = 2, lookHead = 0 , lookBody = 0, lookLegs = 0, lookFeet = 0, lookTypeEx = 0, lookAddons = 0}, -- Goku [2] = {lookType = 19, lookHead = 0 , lookBody = 0, lookLegs = 0, lookFeet = 0, lookTypeEx = 0, lookAddons = 0}, -- Vegeta [3] = {lookType = 55...
  14. Frikx

    Lua script error: [creaturescript interface]

    Next time tell us what version are you using when reporting the problem... local outfits = { [1] = {lookType = 2, lookHead = 0 , lookBody = 0, lookLegs = 0, lookFeet = 0, lookTypeEx = 0, lookAddons = 0}, -- Goku [2] = {lookType = 19, lookHead = 0 , lookBody = 0, lookLegs = 0, lookFeet...
  15. Frikx

    Lua script error: [creaturescript interface]

    What TFS version are you using?
  16. Frikx

    Lua script error: [creaturescript interface]

    Read the script.
  17. Frikx

    Lua script error: [creaturescript interface]

    So... local outfits = { [1] = {lookType = 2, lookHead = 0 , lookBody = 0, lookLegs = 0, lookFeet = 0, lookTypeEx = 0, lookAddons = 0}, -- Goku [2] = {lookType = 19, lookHead = 0 , lookBody = 0, lookLegs = 0, lookFeet = 0, lookTypeEx = 0, lookAddons = 0}, -- Vegeta...
  18. Frikx

    choiceId 0 in modalwindows

    Persists :^((
  19. Frikx

    choiceId 0 in modalwindows

    If I print the choiceId it will show 0 before the index error.
  20. Frikx

    choiceId 0 in modalwindows

    Hey!! I'm getting an error using modal windows. The first window is working just fine but then the second one's choiceId is constant and is always 0, which causes an error to happen with the third one because it uses the choiceId to reference the value you are looking for in an array. This is...
Back
Top