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

    Lua Monster loot distance

    Update to a newer revision, try tfs 1.1, your scripts should still be compatible
  2. Milice

    Windows Custom Client

    Pretty simple actually, but everything is just as simply reversable. Go get a hexeditor a bit more advanced than the standard XVI32, (i use hex workshop by breakpoint software.) then go search for 810 as an uint16_t value and the first two entried should be the login and game protocol versions...
  3. Milice

    Lua check if player walks diagonally

    One way to check it would be to intercept the packet sent and pass it through to the function, thus having just onStepIn(..., bool sideStep = (op == sideStepOp)) but unless you plan to use this in pretty much every aspect of your onStepIn codes it really wouldn't be the way to go, just playing...
  4. Milice

    Linux Custom Client

    That part is in fact not in the client at all, it's serversided when it sends the characterlist. https://github.com/otland/forgottenserver/blob/master/src/protocollogin.cpp#L81 So if you set for example port 37264 in your config.lua gameport it will tell the client to connect to the gameserver...
  5. Milice

    Problem with CSS

    Yeah probably, if i were you i would try using percentage instead of pixels if it fits with the rest of your configuration like such; margin-left: 20%;
  6. Milice

    Problem with CSS

    I see where you're coming from, but since the object is relative, there's a big chance that the rest of the site moves with it and you're back at square one
  7. Milice

    Problem with CSS

    If it's interfering with other stuff and it's not related to anything, you could always set it to an absolute position like so: #side-bar { position: absolute; top: 200px; left: 50px; }
  8. Milice

    Solved I cant connect while others can and reversed.

    Strange, but you should never host on the same computer as you're hosting on. To prevent these kinds of issues and lag and such. Have you made sure that bindOnlyPublicAddress (or something like that) is set to false? Also try another ipchanger, like otland ipchanger
  9. Milice

    which client you like more ? 8.60 or 10.79

    If you decide to go for 10.79 you should take your time and update to 10.82, imo having an almost newest version looks a bit like "fuck it, i'll juat throw up a shitty server and close it when i got some cash going".
  10. Milice

    Solved I cant connect while others can and reversed.

    When your public ip is in config.lua, have you tried connecting with both that and 127.0.0.1?
  11. Milice

    Polls for best client, 10.77 Or 7.6?

    Why would you go with 10.77 at all? imo either you go with oldschool (<= 7.72), semi-oldschool (8.x) or you go with the newest client, 10.82
  12. Milice

    [SOLVED] colored Broadcasting talkaction

    Try doing /bc green msg
  13. Milice

    Question about tibia 7.6 anti mc

    What danger said. On newer versions it's easier because the extra diagnostic data the client sends can be used as a HWID, if same ip && same pc then NOPE but in 7.6 you will block the entire router, so that's a bad thing to do. You can ofcourse tweak it and have it so that if someone is...
  14. Milice

    Windows How to change Tibia windows name?

    What's the version of the client you're trying to edit? I can help you find the correct addresses. And i'm guessing it'll be on windows considering you're using olly
  15. Milice

    making a spell with multiple effects only hit once?

    Oooh, my bad then. Guess i got lost somewhere on the road, then yeah whiteevo's solution should be the right approach
  16. Milice

    making a spell with multiple effects only hit once?

    Yeah that's true. Might be that i have completely misunderstood the request here and if so i apologize for that. But isn't the whole point of this thread having, lets say for example 5 different effects on a spell but only the first one actually dealing damage? if so wouldn't it be easiest to...
  17. Milice

    making a spell with multiple effects only hit once?

    I really don't understand what you mean by that it wouldn't be "sexy". Because for the player it would look in the exact same way using a spell with no damage and just normal magic effects
  18. Milice

    Windows How to change Tibia windows name?

    Try a hex editor, for XVI32 is a free one (i prefer hex workshop by breakpoint software). Anyhow, then you search for TibiaClient, and you should have the window name close by to it aswell ( this is the class name ). Then if you want to do it in olly for any reason (longer name perhaps?) Then...
  19. Milice

    making a spell with multiple effects only hit once?

    Okay, i'll be the one to put it out there. Why make it so that the rest of the spell is even a damagespell? Just have it as a sendMagicEffect and you'll need no storages no nothing
  20. Milice

    IP changer to mac?

    Ipchanger to mac? There isn't even a client for mac?
Back
Top