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

    Php href link question

    Everyone has a language they like above all others, but in your case it does not come down to your preference. Events/clicks are handled by JS wherever your like it or not (that's just how your browser is implemented). Front-end: HTML, CSS and JS Back-end: PHP, Java, C++, Go, etc...
  2. rwxsu

    Compiling Linux ubuntu compiling error "to_string" is not a member of "std"

    You need to specify the C++ version, or make your own to_string function using std::stringstream. template<typename T> std::string to_string(const T& n) { std::ostringstream ss; ss << n; return ss.str(); } https://stackoverflow.com/questions/19122574/to-string-isnt-a-member-of-std...
  3. rwxsu

    Why does TFS use bitwise shifting in enums?

    Hello, I'm just curious to why TFS chooses to use bitwise shifting in enumerations? E.g.: enum itemAttrTypes : uint32_t { ITEM_ATTRIBUTE_NONE, ITEM_ATTRIBUTE_ACTIONID = 1 << 0, ITEM_ATTRIBUTE_UNIQUEID = 1 << 1, ITEM_ATTRIBUTE_DESCRIPTION = 1 << 2, ITEM_ATTRIBUTE_TEXT = 1 <<...
  4. rwxsu

    Who can help me to make my own server?

    Since you got everything working I assume you already have XAMPP (with MySQL) up and running (if you are on Windows), and created a TFS database. Delete everything inside C:/xampp/htdocs, and add the Znote files there. Do not change config.php yet; instead go to localhost in your browser and...
  5. rwxsu

    Who can help me to make my own server?

    Old school Tibia: nostalrius New Tibia: forgottenserver (compile wiki) Website: ZnoteAAC There is even an OTS Guide link in the header to the left of your name: Introduction (https://docs.otland.net/ots-guide/)
  6. rwxsu

    Php href link question

    You should do this in JavaScript, not PHP; so you don't have to refresh the page on click. Just style the <div> containing all the quest info hidden to begin with (with CSS), and make it visible on click (with JS). Example: <button onclick="makeVisible()">Quest 1</button> <div...
  7. rwxsu

    Linux Website Unreachable

    What do you mean you change the www folder to gesior acc? You need to put gesior acc inside www, not replace it
  8. rwxsu

    Looking for programmer (C++)

    What is the current formula you are using?
  9. rwxsu

    TFS 1.X+ Compiling TFS 1.3 [Windows]

    For those of you who still have this problem: do not run powershell as an administrator use git clone inside your user directory, not in C:/Windows/System32
  10. rwxsu

    TFS 1.3 CLIENT TITLE Modification?

    Don't be lazy. Use search. The original question in this post was how to change otclient size 1 hour ago.
  11. rwxsu

    Lua Dawnport vocation changer

    What does "like global" mean? I assume you mean another server, but you should describe what that server does so that people who haven't played on the server still can help you. What account maker are you using? If website (e.g. Znote), it's probably in your PHP script.
  12. rwxsu

    C++ doSendAnimatedText in source

    @Steve Albert is right. It's a lot smarter and easier to move what you've written in C++ to Lua instead. You can do everything you did in C++ in Lua. Use Lua for scripting, and C++ to implement functions you're missing in Lua.
  13. rwxsu

    Action movies suggestions?

    300: Imdb
  14. rwxsu

    AAC myaac create account erro

    Columns 1-3 do not have default values Columns 4-6 do have the default value 'N' Your error message says that vote doesn't have a default value, so you need to set it. Please use the search function before posting. This is a duplicate of: AAC - Database error...
  15. rwxsu

    Znote AAC - Valhalla Layout

    Looks like styling issues, check if the directory path in the header to your .css file is correct
  16. rwxsu

    [Download] Tibianic DLL Sources (Client Injection)

    Here is versions.php You can disable the updater like this if you do not need it.
  17. rwxsu

    CreatureEvent [TFS 1.2] Task System

    It's not implemented in this script, but you can do it like this: - Under reward, set itemid to 0 and set the count to how much experience you want the player to get - Then in the task:reward() function's for-loop, you do a check to see if itemid is 0, and if it is reward the player with count...
  18. rwxsu

    [Download] Tibianic DLL Sources (Client Injection)

    Your directories are not okay. You either forgot a trailing / or have one too many.
  19. rwxsu

    [JOBS] Looking for someone who can do this... (Paid of course)

    From my experience, @nosey was a real pleasure to work with. He paid for every project without hesitation.
Back
Top