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

    BlackDemon TibiaEditor Source

    I got bad feeling its been lost for good :|
  2. tarjei

    [Discussion] Tibia/OpenTibia Multi-Tool Suite | Currently in Development

    Im curious how this will look like ; D If you need any help that will save your time feel free to send me private message:)
  3. tarjei

    TibiaEditor v67a7

    Seems like source code at google code is missing some files.. Does anyone have full source? We could make this work for 9.6..
  4. tarjei

    Introduction to OTClient.

    Yes I quess everyone that tries to login using 8.54 protocol has this issue. I have an idea why is that happening, but I have to investigate that. It happens also when monster attacks you. I wonder if its not beaocouse map packets are kinda fucked. What I mean - monster attacks you blood is...
  5. tarjei

    Kilka pytań

    function onSay(cid, words, param) local t = string.explode(param, ",") if(not t[2]) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Invalid param specified.") return true end local tid = getPlayerByNameWildcard(t[1]) if(not tid or (isPlayerGhost(tid) and...
  6. tarjei

    Maybe a cool idea.. :D Monster grouping o.O

    Ghost its awesome!! Maybe I could make group thinking in engine? I will see... : P
  7. tarjei

    DLL injector

    IID King wygoogluj to i masz sprawe z głowy. Ewentualnie był tutoarial na tprograming.org. Dasz rade masz juz chyba wszystko co potrzeba do lokalizacji potrzebnych ci rzeczy.
  8. tarjei

    Updating Sprites file (to newer tibia versions)

    Hi, recently I was forced to face that problem - update sprites file so it can contain more images. I figured that I could write some code for ppl if its needed, to update .spr file. Just sign in if you need such thing maybe and you dont want to move manualy sprites from 8.54 to newer (f.e).
  9. tarjei

    DLL injector

    google.pl >.< Sorry ale jestem pewien ze tam to znajdziesz, to po co bezsensu tu piszesz.
  10. tarjei

    Position class. Simpler way of handling positions in scripts.

    Yea I hope at least ppl will learn from that : )
  11. tarjei

    Necronia NW Revamp ♦ Mapping Thread

    I will read the story soon, I waas busy with something to make that. But I love revamped swamp : DD
  12. tarjei

    Position class. Simpler way of handling positions in scripts.

    Hi. This morning I figured that using position in using standard arrays is horrible :O. So.. This simple code makes it a bit simpler to compare, add and subtrac positions using normal math operators. I tested it, there is some kind os issues when we speak about z coordinate. But I hope you can...
  13. tarjei

    What song are you listening NOW!

    Led Zeppelin Bron-Yr-Aur stomp !
  14. tarjei

    Darkonia: The Revolution ||RPG||Low Rate||Custom Map 100%||Custom Sprites||

    Jav is about to make one, after its done I will make adjustments, make some finnal tests on code, and we can make some chill weekend with that XD Like open necronia (fine server) for a day or two and have fun testing it on your maps :D (and invite ppl ofcourse) @down you got it :D
  15. tarjei

    Darkonia: The Revolution ||RPG||Low Rate||Custom Map 100%||Custom Sprites||

    Ghost if you make a CTF map I will provide you lib with those eventsHandlers for Darkonia :D
  16. tarjei

    [Sweden] Necronia NW ♦ Custom Client ♦ Low Exp RPG

    Hmm Im prolly not updated, but I dont know you :O
  17. tarjei

    [Help] CTF EVENT Not End !

    Use code tag except of QUOTE dude, its f*cking retarded and inpossible to read the code -.- To make a task easier you can give an error down here.
  18. tarjei

    SZUKAM Kilka rzeczy

    @up :confused: Pisz jakoś żeby można było to odczytać nie uciekając sie do domysłów czy prosić wróżke o porade. Chcesz pomóc naprowadź go tak żeby dało się to zrozumieć, bo nic z sensem nie wypatrzyłem od ciebie w tym temacie. Wracajac do tematu: Kolega chce osiągnąć 2 rzeczy: - dostać sie...
  19. tarjei

    SZUKAM Kilka rzeczy

    Z zalozenia tego zdarzenia masz hp <= 0 >.< Ale mozesz sprobowac: function onPrepareDeath(cid, lastHitKiller, mostDamageKiller) doTeleportThing(cid, temple_pos, true) doRemoveCondition(cid, CONDITION_INFIGHT) doCreatureAddHealth(cid, getCreatureMaxHealth(cid)...
  20. tarjei

    [C++]walk through players or summons only if the cid is trapped

    bool Player::isBlocked(){ int32_t n[8][2] = { {-1, 0}, {0, 1}, {1, 0}, {0, -1}, //diagonal {-1, -1}, {1, -1}, {1, 1}, {-1, 1}, }; bool isBlocked = true; Position p = getPosition(); for(uint8_t i = 0; i<= 7; i++){ Tile* tile = g_game.getTile(p.x + n[i][1], p.y +...
Back
Top