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

    Kompilacja najnowszego TFS i kilka pytań :)

    Nie wiem dokładnie, gdzie powinien znajdować się MySQL. Ja zrobiłem to w ten sposób, że otworzyłem plik CMakeCache.txt w katalogu build i tam podałem takie ścieżki: //Path to a file. MYSQL_INCLUDE_DIR:PATH=C:/MinGW/include/mysql //Path to a library. MYSQL_LIB:FILEPATH=C:/MinGW/lib/libmysql.a...
  2. rsdsebek

    Kompilacja najnowszego TFS i kilka pytań :)

    Po pierwsze, jak widać na logu z CMake'a G++ 4.4.0 nie ma wsparcia dla C++11. Jeżeli chodzi o LuaJIT, to nie jest to niezbędne do skompilowania TFSa 1.0 - równie dobrze możesz go skompilować z Lua 5.1 lub 5.2. A po drugie, oficjalną wersją TFSa 1.0 jest ta na githubie - innej nie ma i nie...
  3. rsdsebek

    Samsung Galaxy S4 vs iPhone 5S

    I am 21, and I don't have small hands (xD), I just thinks it's kind of uncomfortable to use phone with 5" screen, for sure it's not as comfortable like using 4". Of course I don't say, that 5" screen in phones is bad thing, but for me 4" is the best :)
  4. rsdsebek

    Samsung Galaxy S4 vs iPhone 5S

    For me, iPhone 5S all the way. Main reason why I prefer 5S over S4 (and generally Android phones) is its smoothness in UI and overall feel in use. I had few opportunities to use S4 for about a week and unfortunately I couldn't accustom myself to it - generally S4 was stable and wasn't crashing...
  5. rsdsebek

    How to do effect "attached" to character.

    Hi I was wondering if it's possible do make an effect which is "attached" to the character. Now when you cast spell you get blue shimmer, but when you go away from the place you casted spell this "blue shimmer" stays on it's place. Is it possible to make effect staying on character? My best...
  6. rsdsebek

    TheImaginedServer & TheImaginedClient (custom TFS and Client) - Updated 1/16/2015

    @Flatlander: Do you still plan on adding idle animations and editable tile size to TheImaginedClient? It would be very helpful. My best, djseban
  7. rsdsebek

    storage in c++

    Sure, In 0.3.6pl1 function getStorage has 2 parameters - first is number of storage value (in this case 897), in second parameter you have to specify in which variable this storage should be stored (in this case variable named "value"). If specified storage value is empty, then function...
  8. rsdsebek

    storage in c++

    I don't know which distro you're using, but from std::string type of variable value I am guessing that it's 0.3.6pl1. I'll try to help. Try something like that: int32_t attackValue = 0; std::string value; player->getStorage(897, value); if (value != "-1") { attackValue = atoi(value.c_str()); }
  9. rsdsebek

    TalkAction [TFS 1.0] Custom ban command with ban length and reason

    Hi, Recently I wrote ban window for my project, so this command isn't longer compatible with my TFS, though it's fully compatible with the newest stock TFS 1.0 revision - so I'm sharing ;) Create new file called "customban.lua" in /data/talkactions/scripts directory: function onSay(cid, words...
  10. rsdsebek

    ObjectBuilder [10.32]

    Hi, I have small issue with ObjectBuilder - strictly saying it can't load sprite file on Mac OS X (I'm on 10.9) - on Windows it's working fine, without an issue. When on Mac OS X it loads "Metadata", small piece of "Sprites" progress bar appears, and then nothing happens. It's just hanging on...
  11. rsdsebek

    OpenTibia Remere's Map Editor for Mac OS X

    Hi, Recently I was working on my OpenTibia project actually only on Mac OS X, and I was finding running RME through Wine to be a huge pain in the ass (performance and bugs like not rendering modifications done to map). I was trying to compile RME on Mac OS X, since Remere shared his code to the...
  12. rsdsebek

    ObjectBuilder [10.32]

    Sorry, It seems like my Tibia.dat was somehow messed up, I re-saved it by Gray's Dat Editor and ObjectBuilder succesfully loaded dat file and finally, I was able to convert my dat to 10.36 :D My best
  13. rsdsebek

    ObjectBuilder [10.32]

    Hi @EdMingari, are you planning to add support for versions around 9.8? It would be very helpful. My best
  14. rsdsebek

    OTClient console.

    Just compile it without flag WINDOWS_CONSOLE. Best Sebastian
  15. rsdsebek

    source code dat editor

    It's source code from BlackDemon's TibiaEditor adjusted to work with 9.6+. I used this to transfer my items from 8.54 to 9.81, however this editor doesn't support Market - so if you will save your Tibia.dat with that, then you will lose all market information from items. If you want good editor...
  16. rsdsebek

    Organizacja pętli c++

    I tutaj nasuwa się problem. Ja zrozumiałem treść inaczej, ty inaczej. W zadaniu jest napisane nie o tworzeniu pętli, lecz jej organizacji. Na moje, organizacja pętli jest w środku pętli, zresztą nigdy nie spotkałem się z pojęciem jej "organizowania". W pętli możesz zagnieździć inną pętlę, możesz...
  17. rsdsebek

    source code dat editor

    Here you go: https://github.com/decltype/TibiaEditor It has support for 9.6+ (don't know where support ends). If you gonna come up with some mod about 10.10+ please PM me or post it. Best Sebastian
  18. rsdsebek

    Organizacja pętli c++

    Chyba mieli na myśli pytanie "Która instrukcja służy do robienia pętli w C++?", czy coś w tym stylu. Szczerze mówiąc to merytorycznie do pytania, które wstawiłeś, wszystkie odpowiedzi są poprawne. Pętle można zorganizować na tysiąc sposobów (przecież wiadomo, że w pętli można zagnieździć...
  19. rsdsebek

    Feature [TFS 1.0] Solution for Dynamic IP hosters

    Many people like me, are forced to use protocol 9.81 (since in my project dat editor is essential tool, by this time there isn't any for 10.10+). Unfortunately 9.81 doesn't support passing IP as string to client, so there isn't any possibility to skip IP changing "feature". Anyway, thanks for...
  20. rsdsebek

    Error in the Console

    You have to change your database name in config.lua.. From theforgottenserver to evosoft. Best Sebastian
Back
Top