• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. zerghel

    how to connect using tibia 12?

    weird thing, i switched back to previous update of malucooo's OTX server (11.49 protocol) and everything works fine, makes me wonder if isn't port forwarding, ip issues, or bad confug.lua settings, what else could be?
  2. zerghel

    how to connect using tibia 12?

    im trying to connect locally i know i have to use global ip address to make it work, i know how to set up config.lua -maybe is the login.php? -i also already changed client ip to 127.0.0.1 -maybe the client's rsa key? (don't know how to search for it) -- Connection Config -- NOTE: maxPlayers...
  3. zerghel

    how to connect using tibia 12?

    im hosting a server on my pc, i haven't change anything but the config.lua in the distro, the thing is i can't connect to it using tibia 12 client, is there something im not seeing?
  4. zerghel

    how to connect using tibia 12?

    ty i'll change it
  5. zerghel

    how to connect using tibia 12?

    hello guys first of all, i know is a stupid question but i can't find a solution anywhere and this client is new to me how can i connect with tibia 12?, server is set up, im using gpedro's myaac login for tibia 12, and using tibia 12.00 but im getting "login failed. tibia might currently be...
  6. zerghel

    !online talkactions script

    thx for sharing :P
  7. zerghel

    CreatureEvent [TFS 1.3 / 1.4] Upgrade System

    ??? ??? im not a programer myself but i managed to follow the steps carefully and recompiled the distro with these changes
  8. zerghel

    Tibia Coins on start

    im using myaac right now
  9. zerghel

    Strange error client 11

    so im getting the illegal value error but everything was working fine for a week until today i looked at the console and i saw numbers like: 27371 27371 27371 27675 .... and so(dont remember the exact numbers but they all started with "27") now the client is giving me the illegal value error...
  10. zerghel

    Tibia Coins on start

    hello dear otlanders hope someone can help me to create a simple script how to give tibia coins on Account Creation?
  11. zerghel

    TFS 1.X+ Premium scroll no add coins

    local function doPlayerAddPremiumPoints(cid, count) db.query('UPDATE accounts SET coins = coins+'.. count ..' WHERE id = ' .. getAccountNumberByPlayerName(getCreatureName(cid))) end function onUse(cid, item, fromPosition, itemEx, toPosition) doPlayerAddPremiumPoints(cid, 30)...
  12. zerghel

    [Script] Tibia Coin need help.

    local function doPlayerAddPremiumPoints(cid, count) db.query('UPDATE accounts SET coins = coins+'.. count ..' WHERE id = ' .. getAccountNumberByPlayerName(getCreatureName(cid))) end function onUse(cid, item, fromPosition, itemEx, toPosition) doPlayerAddPremiumPoints(cid, 10)...
  13. zerghel

    CreatureEvent Cast on Login

    hello dying community i want to share a simple AUTOCAST script i have to say im not a scripter myself, so if anyone can make an improvement to this, feel free to do it local autoCastLevel = 1 function onLogin(cid) local player = Player(cid) if player:getLevel() >= autoCastLevel then...
  14. zerghel

    [TFS 1.2] Logs of commands used

    in my case, this one just works with local client commands only
  15. zerghel

    [MyAAC][Plugin] login.php for Tibia 11

    yes it does xD
  16. zerghel

    [MyAAC][Plugin] login.php for Tibia 11

    Change $char = array("worldid" => 0, "name" => $character->getName(), "ismale" => (($character->getSex() == 1) ? true : false), "tutorial" => true); to $char = array("worldid" => 0, "name" => $character->getName(), "ismale" => (($character->getSex() == 1) ? true : false), "tutorial" => false)...
  17. zerghel

    Use Item to give tibia coin

    local function doPlayerAddPremiumPoints(cid, count) db.query('UPDATE accounts SET premium_points = premium_points+'.. count ..' WHERE id = ' .. getAccountNumberByPlayerName(getCreatureName(cid))) end function onUse(cid, item, fromPosition, itemEx, toPosition)...
  18. zerghel

    OpenTibia Tibia 11 IP Changer

    same here
  19. zerghel

    Lua spell scroll tfs 1.1?

    Hello guys im trying to use this script for spell learning i think is kinda messy 'cause somehow it can be used by other vocations local spell = "sharp light" function onUse(cid, item, fromPosition, itemEx, toPosition) if not getPlayerLearnedInstantSpell(cid, spell) then...
Back
Top