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

    OTClient Effects frame duration speed

    What errors you got when compiling? and your source have other edits or its clean source?
  2. G4BB3R

    OTClient Effects frame duration speed

    How do you edit it to each effect have a different duration?
  3. G4BB3R

    How to create new conditions in c++ and otclient sources ?

    remove please
  4. G4BB3R

    Bug on CONDITION_PARAM_DELAYED

    BUMP
  5. G4BB3R

    Bug on CONDITION_PARAM_DELAYED

    BUMP
  6. G4BB3R

    Bug on CONDITION_PARAM_DELAYED

    The server is 0.3.6pl1 with no source edit. The bad-status damage is not changing since it is fixed, like burn (damages 15 hp each 2 seconds 10 times)
  7. G4BB3R

    Bug on CONDITION_PARAM_DELAYED

    In my server sometimes (once a day with 300 players online) happen a strange bug. Spells that uses delayed damage with CONDITION_PARAM_DELAYED with fire or poison is casted by a player but the hit is done from a random player on the map, even the hit message is sent to him. Example: player A...
  8. G4BB3R

    Solved Segmentation fault.. Ooh Crazy!!

    Why my post is deleted ? I don't want to increase my post count, I do not have 15 years old haha I just want to know how to solve this problem. Why create a new thread for the same problem ? I don't care if it occurred in 2009, the problem is exacly the same.
  9. G4BB3R

    Crash/Cpu 100%

    BUMP I am having this exacly problem, with 0.3.6pl1 TFS on debian 6, 7.5, ubuntu 12, 14, 15. But on windows it works :( Do you discovered what is causing this segmentation fault ? @Lares
  10. G4BB3R

    [node.js] Application with various tools

    OO is a 70's concept but only got popular in 90's. Nowadays I can't imagine myself coding imperative instead OO. But years pass and new technologies are created to replace the old ones, and Functional Programming is growing exponentially in the last years.
  11. G4BB3R

    [node.js] Application with various tools

    Actually NodeJS has nice MySQL drivers to work async as good as MongoDB. One good example: https://github.com/felixge/node-mysql/ But Node is not my main choice, I will try Elixir (from Erlang VM) and Haskell prototypes first, because functional programming is the future :)
  12. G4BB3R

    [node.js] Application with various tools

    PHP was the worst choice, eew. I have plans to rewrite AAC to NodeJS, Elixir or Haskell, but obviously not as a customizable framework, only for my needs to avoid useless CPU usage.
  13. G4BB3R

    What is the most stable distro ?

    I am making a custom server with otclient, and I want to know your opinions. What is the best distro version to work with custom otclient ? Distro stability VS OTB, OTBM, Dat and Spr Tools VS OTClient version stability
  14. G4BB3R

    Compiling I need CMakeLists do compile on linux/OSX

    https://github.com/otland/forgottenserver/wiki/Compiling-on-Mac-OS-X This tutorial with the last TFS source worked. But it fails with TFS 0.3.6pl1 :(
  15. G4BB3R

    Compiling I need CMakeLists do compile on linux/OSX

    It do not recognizes autoreconf -vfi neither ./configure. I gave permissions to source folder and tried aswell with sudo... #Edit: In the past I used this comand: ./autogen.sh && ./configure --enable-mysql --enable-server-diag && make clean && make But it is not working on OSX
  16. G4BB3R

    Compiling I need CMakeLists do compile on linux/OSX

    Hello, I compiled many times a few distros in Linux and OSX, but now with 0.36pl1 version 8.54, I do not have the CMakeLists.txt to compile. Can someone post the correct one for this version ? Thanks!
  17. G4BB3R

    Compiling problem :: Gcc can't be updated to 4.6 or greater

    Today I followed the github tutorial to compile on windows 8. But even updating mingw, the message "Sorry, you need gcc 4.6 or greater to compile." still appears. I verified the toolchain path, deleted the MinGW from Code::Blocks folder, and still not working. Error log (half): --------------...
  18. G4BB3R

    LUA Auto Border

    Recently to practise LUA scripting and logic, I was trying to make an action that I would use the pick in a earth cave border and then the square would be removed and the borders would be reajusted. Remeres map editor has a similar algorithm to make the earth auto border (the same for water...
  19. G4BB3R

    Solved Using more than one skill condition per time

    Do not worked, but I analyzed a lot of buff spells examples and got a conclusion. To work, in a single combat object you need to set all params, and not each param for each combat object. local MY_CONDITION = {CONDITION_PARAM_SKILL_CLUB, CONDITION_PARAM_SKILL_SWORD} local condition =...
  20. G4BB3R

    Solved Using more than one skill condition per time

    Look at this example, I can't set two conditions at the same time :( local MY_CONDITION = {CONDITION_PARAM_SKILL_CLUB, CONDITION_PARAM_SKILL_SWORD} local combat = {} for i = 1, #MY_CONDITION do local condition = createConditionObject(CONDITION_ATTRIBUTES) setConditionParam(condition...
Back
Top