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

    Windows Domain :?

    Isn't ddns.net part no-ip.org? Anyway, you should set up an A record in your DNS settings, and not a redirect. Assuming you did buy a domain, no-ip.org is something else entirely.
  2. forgee

    Solved Znote Error create players +REP

    Did you restart MySQL after saving?
  3. forgee

    Solved Znote Error create players +REP

    In the file you have open called "my", change thread_stack to 256K.
  4. forgee

    Solved Znote Error create players +REP

    Your thread stack is at the smallest possible size. Try setting it to the default, 196608 if you're using a 32-bit OS or 262144 for 64-bit. More information can be found here: http://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_thread_stack Where the configuration files...
  5. forgee

    Compiling TFS 1.1 on Raspberry Pi or Debian 7

    Which Linux distribution are you running? I have compiled TFS 1.2 on Raspberry Pi 2 running Raspbian Jessie Lite without issue. Compiling TFS 1.1 on Raspbian Wheezy (Debian 7), the only thing I had to fiddle with was gcc. I would suggest that you get the latest Raspbian as it is based on...
  6. forgee

    Windows Export console log to txt file

    You can redirect std-out and std-err to a file like this. forgottenserver.exe 1>log.txt 2>&1
  7. forgee

    Lua Lua Loop Issue

    I would have done something like this. I'm assuming that Player:getExhaustion(...) returns the remaining time in seconds, I'm not entirely sure if that's the case though. local STORAGE = 616261 local EXHAUST_STORAGE = 616262 local INTERVAL = 10 * 60 -- 10 minutes in seconds local function...
  8. forgee

    Compiling TFS: When do u chose the version when compiling

    TFS 1.0 supports 10.41.
  9. forgee

    [TFS 1.2] Refil three hours of stamina

    How about player:setStamina(stamina)? I'm not sure what unit stamina is measured in so use player:getStamina() to check if it's in seconds, minutes or something else.
  10. forgee

    Lua Help fix !frags

    Not that I know of, and in this case it is being used as a number variable.
  11. forgee

    Windows Resetting player skills when they logout

    As @whitevo said you should reset the tries too. I don't know where they are stored in the server you're using so I can't tell you exactly how to. I'm sure you can work it out. You can set all the values that are in the same table (player_skills) in one go, so your code would look like this...
  12. forgee

    Lua Help fix !frags

    It's not defined anywhere.
  13. forgee

    TFS 1.2 - Simple Magic Effects Function

    Now you're checking if "player" is a player, but you named the function argument "self". Also Player:isPlayer() would cause the same null pointer issue. You should pass the creature id and not the object. Screw it, @Ninja was quicker.
  14. forgee

    Lua Invasion 1 week

    TFS 1.0 and up: Game.startRaid(raidName) or Game.createMonster(monsterName, position[, extended =false[, force =false]])
  15. forgee

    Lua Invasion 1 week

    I believe so.
  16. forgee

    Lua Life Steal Help

    It's the character that gets hit (loses health) that fires the event. Log in 2 characters (one with vocation id 4) and have them hit each other. Having it registered on yourself does nothing unless you get hit by another player and that player is the correct vocation. I can help you further...
  17. forgee

    Lua Life Steal Help

    Script in OP works fine over here. Are you sure the event is registered on the creature that is being hit and not the one who is doing the hitting?
  18. forgee

    Opening two maps with RME in two monitors

    You can get close. Open 2 maps in one RME client, resize the window (not maximized) so it spans both screens. Then drag one of the maps' tab to the other screen. The area on the side of the first map view should get a grey highlight. You can place the maps side by side or over/under each other.
  19. forgee

    Lua Help fix !frags

    Looks like the script is made for TFS 1.0 or above, and you seem to be missing part of the script at the top.
  20. forgee

    Lua Invasion 1 week

    I would use a global event and check the week day with os.date("*t"). <globalevent name="Invasion" time="09:00:00" script="invasion.lua" /> If you want to randomize the time you can use addEvent in the script to delay the start. local now = os.date("*t") if now.wday == 2 then -- if today is...
Back
Top