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

    [Sweden] MirageOT 8.6 [Starting 23/10-15, 19.00 CET]

    Top quality shitpost. Serious kudos for that one. If only there were a downvote button...
  2. XtrmJosh

    Remere site suspicion

    Remere's site went down recently and I've just noticed it's back up. Can anyone confirm that it's genuine? I wouldn't be surprised to find the domain expired and some troll picked it up for whatever reason, but I'm a bit paranoid. http://remeresmapeditor.com/
  3. XtrmJosh

    Python IP-Changer

    Format is always a pain in C++. Presuming you're reading a string I believe it'll be stored as a null terminated wchar array, meaning you'll want to get your byte array and point a wchar at it... Not entirely sure though. If you're really stuck feel free to post your output, a snippet of code...
  4. XtrmJosh

    Python IP-Changer

    Haha, Python is powerful but somewhat inefficient compared to C++. C++ is definitely the way forward for software development in general. For ptrace in C++, this might be useful: http://tpforums.org/forum/threads/5869-ReadProcessMemory-for-Linux-Here!-Working-ptrace-example!?highlight=linux+ptrace
  5. XtrmJosh

    Python IP-Changer

    Good to hear you got on well with the Python one! I didn't look into the ptrace lib too much, might have a look this evening as I had some plans to make a basic bot in Python for Linux, but couldn't get around how bad ptrace was! The C++ one should be relatively difficult by comparison, one of...
  6. XtrmJosh

    Python IP-Changer

    Personally I'd recommend switching to Tkinter, as good as Gtk is, my experience says Tkinter is the way forward for Python UI frameworks. Regarding using ptrace, you need to be VERY careful what you do there. In my experience on Ubuntu specifically it's quite buggy, and I've seen many a kernel...
  7. XtrmJosh

    My First C++ Program

    You'll need to learn about it eventually, so you might consider learning about method templating... http://en.cppreference.com/w/cpp/language/function_template
  8. XtrmJosh

    [LUA] Which program do you use for editing lua files?

    https://atom.io/
  9. XtrmJosh

    Request for OTBM format specification

    You might be able to work it out from here https://github.com/otland/forgottenserver/blob/master/src/map.cpp
  10. XtrmJosh

    Happyhour MOD

    Put it in an XML file and save it to your mods directory, then add to the list of mods... If there is one... (Bad memory)
  11. XtrmJosh

    Remere's Map Editor [Updated - 10.10]

    Chances are there won't be an official release of RME. If you look on the official RME website, you'll see there hasn't been one for some time (http://remeresmapeditor.com/news.php). Don't hold your breath on it, and try to make do with what's available. @People saying it doesn't load, please...
  12. XtrmJosh

    [Help] Hide all players level on look

    Did you try changing the code you posted? Could make it like: s << nameDescription; if(!hasCustomFlag(PlayerCustomFlag_HideLevel)) s << ""; Just for testing :)
  13. XtrmJosh

    Old Computer 32 Bit - Now 64 Bit (Server does not start)

    This is similar to the .NET side-by-side configuration error, you need to have 32 bit msvc packages installed, depending on your VS version. 32 bit visual studio 2005 compilations: http://www.microsoft.com/en-gb/download/details.aspx?id=3387 32 bit visual studio 2008 compilations...
  14. XtrmJosh

    OtLand Security breach and moving to XenForo

    At the top there is a button that says "What's new?" under "Forum" tab. This should be what you're looking for.
  15. XtrmJosh

    OtLand Security breach and moving to XenForo

    Out of interest will there still be a premium support board? Or has this now been merged into the free one? Also, wise decision with XenForo, much nicer layout and better styling interfaces etc. Always preferred it, never expected it to catch on.
  16. XtrmJosh

    Webdesign ZNote Template

    All very valid points, I will work on these this afternoon. The lost username and password is primarily because I didn't have time to fix a seperate CSS tag for those elements but I will do so :P
  17. XtrmJosh

    Webdesign ZNote Template

    Simplistic ZNote Template available if anyone wants it (by request only as I want to keep track on where and how much it is being used). If you want to use it drop me a private message and I will get you a dropbox link or something. Screenshot: Live demos: MirageOT MirageOT Fully featured...
  18. XtrmJosh

    Linux - Check on running server

    Hi all, Wondering if there is any method to "attach" to a running instance of TFS... For instance: ./run.sh start See the loading~~~ text. See logging in / out and error text Exit putty, server continues to run. Open putty, server continues to run. Can't seem to find a way to...
  19. XtrmJosh

    Trying to start my server on my Ubuntu VPS. Errors with MAP

    I know how to chown, I'm wondering which user should own which files and folders, also what permissions each file should have (does the map really need execution permissions?) - - - Updated - - - Turns out the map file was being corrupted by poor connection. Apologies to those who have wasted...
  20. XtrmJosh

    Trying to start my server on my Ubuntu VPS. Errors with MAP

    Have been trying a variety of things but this error is still persistent... Any more ideas? Anyone know who should chown and what chmod values I should give the data and / or world folders?
Back
Top