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

    Solved How to randomize several different values?

    local numbers = {} while (#numbers ~= 5) do local rand = math.random(1, 10) if (not table.find(numbers, rand)) then table.insert(numbers, rand) end end
  2. Elbow

    VIP Status in Character List.

    You can hex the client easily to change it, but all of your players would have to download the client, otherwise they'd still see the word "Premium"
  3. Elbow

    Windows CustomClient -> Account Data Warning

    Using this tutorial, i've managed to find the addresses in 7.72 client: https://otland.net/threads/remove-account-data-warning.8375/ at address 0001FE5A, change 75 65 to 90 90 (account name warning) at address 0001FE83, change 75 3A to 90 90 (password warning) If you don't know how to hex...
  4. Elbow

    Compiling TFS 0.4

    See if this helps, your sources need to have a vc10 folder You can get 64-bit boost libs here https://github.com/otland/forgottenserver/wiki/Compiling-on-Windows
  5. Elbow

    A way to expand picture when clicked on?

    You can change it to this: <img id="ScreenshotContent" class="ThemeboxContent" src="<?PHP echo $layout_name; ?>/images/screenshots/witch_thumb.gif" onclick="window.open('<?PHP echo $layout_name; ?>/images/screenshots/witch_thumb.gif', '', 'width=730, height=410')"> Edit the size as needed.
  6. Elbow

    A way to expand picture when clicked on?

    onclick="window.open('http://static.tibia.com/images/news/webshop_big.jpg', 'coins packages', 'width=730, height=410')" This is the code they're using on their img tags, just edit the URL/size to suit your neds.
  7. Elbow

    Linux How to Setup

    What do you mean by bumping, he linked you to a good tutorial for compiling the gameserver, the rest of te steps are just basic operations on Linux which means you could follow another Linux tutorial and get done withi t.
  8. Elbow

    Solved PLS ! i lost a head ! layout.php problem

    http://pastebin.com/raw.php?i=yvw9dfB4
  9. Elbow

    Distance corpse creature

    That's possible even on normal accounts, without GM access?
  10. Elbow

    Solved How: player first login on "a" coord without losing his town.

    imkingran already proposed that in his first reply, but the thread creator said it didn't work on topic, which version of gesior aac is this?
  11. Elbow

    Field vote does not exist in data / is not loaded.

    Open <your web folder>/classes/account.php and modify these 2 lines: (in my script they are lines 10 and 11: public $data = array('name' => null, 'password' => null, 'premdays' => null, 'lastday' => null, 'email' => null, 'key' => null, 'create_ip' => null, 'creation' => null...
  12. Elbow

    Field vote does not exist in data / is not loaded.

    Execute this query (in SQL Tab) via phpmyadmin: ALTER TABLE `accounts` ADD `vote` INT( 11 ) NOT NULL DEFAULT '0'; If you get more errors after this, reinstall your AAC.
  13. Elbow

    Solved News Ticker do not WORK!

    If you don't want to make a proper fix for this one (a form that adds tickers with automatic date), use this site to check the current unix time and just copypaste it inside date column: http://www.epochconverter.com/
  14. Elbow

    Problem in potions.lua

    Weird, you shouldn't be having that kind of latency on localhost. Try with -200 or -300 and see if it's still 2 seconds apart. Or just remove the exhaust thing altogether, shouldn't affect much, maybe except for allowing you to combo potions and healing spells (not sure about this one).
  15. Elbow

    Compiling TFS 0.4

    You can use Visual Studio to create a project (don't use the express version, doesn't include the 64-bit compiler), and provided you have the required libraries present it should compile with a few minor edits. Most of the libraries except for boost are available here...
  16. Elbow

    Problem in potions.lua

    That's weird, the - 100 was probably added to compensate for network latency, since the the client polls the server every 1 second when holding down a hotkey button without releasing it. Have you tried spamming/pressing the key repeatedly? It should not be 2 seconds under any circumstances...
  17. Elbow

    Solved How: if creature leave, set talkState[talkUser] = 0

    function greetCallback(cid) talkState[cid] = 0 return true end npcHandler:setCallback(CALLBACK_GREET, greetCallback) this should work, and talkUser is mostly cid unless you're using pre-8.2 NPC systems
  18. Elbow

    OTclient error

    did you get the sources from https://github.com/edubart/otclient/tree/master/src?
  19. Elbow

    Problem in potions.lua

    Are you testing on your local machine/localhost?
  20. Elbow

    Captain bluebear problems

    maybe you've got thais keyword in Captain Bluebear.xml
Back
Top