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

    modern acc shop button

    Stop using Modern AAC, it really has no support anymore, that's why nobody is helping you. Switch to MyAAC, Znote's AAC or Gesior AAC.
  2. Bogart

    AAC MyAAC - Highscores Box

    line 54 <img style="margin-left: -30px; margin-top: -40px ;" to <img style="margin-left: -30px; margin-top: -25px ;"
  3. Bogart

    experience cast open

    Easy to tell when it's 1.x or 0.x, check function onSay(player, words, param) player instead of cid. player:sendTextMessage(MESSAGE_INFO_DESCR, "You have started casting your gameplay.") player:sendTextMessage(..) instead of doPlayerSendTextMessage(cid, ..) etc etc
  4. Bogart

    TFS 0.X Can't login into character (Display only list)

    Well, are the ports 7171-7172 open?
  5. Bogart

    TFS 0.X Can't login into character (Display only list)

    That's because that IP isn't your public IP, either get it through What Is My IP? Shows your real IP - IPv4 - IPv6 - WhatIsMyIP.com® or "ifconfig" in your terminal.
  6. Bogart

    how ppl creates old accs?

    [rep note]: /Three Magic, rep back plz
  7. Bogart

    AAC Collapsed Sidebar

    Give us the solution, might be helpful for someone in the future.
  8. Bogart

    show outfit in gesiorACC 2012

    Do you mean for all characters or specific characters?
  9. Bogart

    TFS 1.X+ Few questions - housing

    Put it inside onTime()
  10. Bogart

    Solved Paypal Is not working

    I logged into paypal and couldn't find the option to donate to 3alola1's server :/ Point being, we need to know more about your script. You can't just tell a mechanic "e yo my car no run :/" you gotta bring the car and let them check it. Provide code or AAC name+version...
  11. Bogart

    Solved Paypal Is not working

    Well I mean, what answer did you expect? You just show us a picture with no context whatsoever, what are we supposed to do?
  12. Bogart

    TFS 1.X+ Few questions - housing

    Lol yes, should work if we remove "if owner > 0 then " I guess
  13. Bogart

    TFS 1.X+ Few questions - housing

    You said it was through storages lol local houses = Game.getHouses() for i = 1, #houses do local house = houses[i] local owner = house:getOwnerGuid() if owner > 0 then local own = Player(owner) if not Player.isVip(owner) then...
  14. Bogart

    Lua need a little help with create random items in random positions

    Use "created" instead of "itemsrand", but after the loop.
  15. Bogart

    Moving OT

    If you have no knowledge of linux it may be a lil bit hard at the beginning. Use a stable server distro known to work pretty well on both Windows and Linux, like TFS 1.2, and there should be no difference. For your website, you should check out which PHP version you're using on both since it may...
  16. Bogart

    Ban injustifiqued

    https://otservlist.org/pages/contact Send him an e-mail directly.
  17. Bogart

    TFS 1.X+ Few questions - housing

    I believe a global event would be the most appropiate solution since a player could buy a house and then never login again, so onLogin won't do the deed. local vip_storage = 1000 local houses = Game.getHouses() for i = 1, #houses do local house = houses[i] local owner...
  18. Bogart

    get the highest level online player [860]

    Well, if you only need to get the 1st place (highest level) it's ezpz: local level = 0 local name = "" for _, pid in ipairs(getPlayersOnline()) do if getPlayerLevel(pid) > highest then name = getPlayerName(pid) highest = getPlayerLevel(pid) end end print(name . " level...
  19. Bogart

    [9.6] Global datapack + map

    It's in the map board, watcha expect?
  20. Bogart

    Php how to make path into character information. And color

    .bg6 > a { text-decoration:none; } <a> elements (links) are styled by default, you can remove the underline by settings its text-decoration to "none".
Back
Top