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

    Prace Maturalne

    Takim, że technikum trwa 4 lata, a liceum 3 :-)
  2. Crypton3

    Prace Maturalne

    Nie wziąłeś jeszcze pod uwagę, że w tym roku (a raczej w przyszłym) niektórzy będą zdawali jeszcze starą maturę.
  3. Crypton3

    Time w Globalevents

    Do 000-const.lua dodaj: -- WEEK DAYS SUNDAY = 0 MONDAY = 1 TUESDAY = 2 WEDNESDAY = 3 THURSDAY = 4 FRIDAY = 5 SATURDAY = 6 Przykład wpisu w globalevents.xml: <globalevent name="Automatic Restart" time="1:30:00" event="script" value="basic/automaticRestart.lua"/> Skrypt: function...
  4. Crypton3

    [8.60] 50 Random Generated Islands

    Hello! 50 Random Generated islands from terrain generator that I'm working on. They look similar, but every island has different shape :) Every map is 250x250 SQM. Auto border? If you want to borderize the map then you have to turn on RME, go to edit > border options and click "borderize all"...
  5. Crypton3

    [Concept] Dynamic Maps

    At the moment I'm working on simple terrain generator in C++, it will be able to generate islands, caves, mazes etc. Generator will be capable to export terrains to PNG, LUA, JSON and even OTBM. Why C++? If we want to create quality terrains we have to use some CPU-intensive functions (for ex...
  6. Crypton3

    Darowizny

    Małe sprostowanie, podatek za "ukryte dochody" wynosi aż 75%. Jednak nie zapominajmy o kwocie zwolnionej od podatku, która w naszym kraju wynosi aż 3091 zł (inne kraje dla porównania). Oznacza to, że do tej kwoty podatków nie trzeba odprowadzać.
  7. Crypton3

    [Concept] Dynamic Maps

    Yep, 4k lines but the script is also responsible for entire instance system (waiting rooms, generating monsters, prizes, names and some other things). Also the structures are hardcoded (~500 lines), but I'm planning to put them on the map and the script will copy them from it. :)
  8. Crypton3

    Heroland RPG - Information and Discussion

    Wow, that looks really nice. What kind of algorithm are you using to generate terrain shapes?
  9. Crypton3

    Zmiana mnożnika Spells.

    Vocations.xml: <formula meleeDamage="1.0" distDamage="1.0" wandDamage="1.25" magDamage="1.0" magHealingDamage="1.0" defense="1.0" magDefense="1.0" armor="1.0"/>
  10. Crypton3

    [Concept] Dynamic Maps

    Something like my instance system? After 3 players enter the waiting room, the instance map starts generating. Every map is fully random :-) It took me about ~4000 lines of code to write that system.
  11. Crypton3

    Darowizny

    Jeśli chodzi o zwykłe SMSy i przelewy to niestety działalność gospodarcza jest konieczna. Co do uznawania tego jako darowizn - nie wiem czy coś takiego przyjdzie. Teoretycznie właściciel serwera otrzymuje od graczy pieniądze, a w zamian daje im punkty, a to już chyba jest traktowane bardziej...
  12. Crypton3

    Auto restarter linux + logi

    Hmm, z tego co się orientuję to TFS ma wbudowanego loggera. Spróbuj się nim trochę pobawić :P Linijki, które za niego odpowiadają: adminLogsEnabled = "yes" displayPlayersLogging = true prefixChannelLogs = "" runFile = "" outLogName = "" errorLogName = ""...
  13. Crypton3

    Auto restarter linux + logi

    A to? #!/bin/bash ulimit -c unlimited while true; do ./theforgottenserver --log-file "output.txt" "error.txt"; done Pamiętaj o chmodach.
  14. Crypton3

    Auto restarter linux + logi

    Za bardzo się nie znam na linuxie, ale może to zadziała: #!/bin/bash ulimit -c unlimited while true; do ./theforgottenserver > log.txt; done
  15. Crypton3

    Skrypcik

    http://chooser.willz.org/ I przydatna opcja: "Do NOT allow an item to be used twice."
  16. Crypton3

    Usuwanie jednego itema pod Magic Wall Rune

    Masz pozycję pod nosem, a dokładniej w zmiennej var. Oto co ona zawiera: (table) [type] = (number) 2 [pos] = (table) [y] = (number) 1001 [x] = (number) 1021 [z] = (number) 7 [stackpos] = (number) 0
  17. Crypton3

    Idle nie działa. Nie wyrzuca graczy.

    Jaka jest wartość customFlags w grupie gracza w groups.xml? Miałem kiedyś podobny problem i okazało się, że flaga PlayerCustomFlag_AllowIdle (2^0) była włączona.
  18. Crypton3

    Kompilacja 32 i 64 bit

    Tak, wystarczy w ustawieniach projektu w Visual Studio zmienić platformę z x32 do x64.
  19. Crypton3

    Visaul Express

    Używasz złych DLLek (o ile je w ogóle masz), poszukaj takich z którymi twój silnik ruszy.
  20. Crypton3

    Gesior ACC TFS 1.0 TIBIA 10.41

    https://github.com/gesior/Gesior2012/tree/TFS-1.0 Swoją drogą ciągle się zastanawiam jak można taki projekt kontynuować, kod Gesior AAC przypomina spaghetti i jest po prostu zły :/.
Back
Top