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

    Ranger's Arcani - [HOT] best custom server on earth! - discussion.

    Looks cool but the light is killing me. I can't play servers with dim lightning where you have to cheese your eyes to see in caves or keep using light spells.
  2. Nevalopo

    What are people using to edit spirtes for custom clients?

    Cool thanks will check it out :) Nice anime taste aswell i checked out your list and u have good animes there :D
  3. Nevalopo

    What are people using to edit spirtes for custom clients?

    Where do u find a itemeditor that supports 10.35? :O
  4. Nevalopo

    What are people using to edit spirtes for custom clients?

    Is there an ItemEditor for 10.x+? Like 10.77 for example?
  5. Nevalopo

    What are people using to edit spirtes for custom clients?

    Hi! Im wondering what you guys are using to edit sprites for a custom client. I know the tibiaeditor for 8.6 etc but what about later version like tfs 1.X+?
  6. Nevalopo

    Can't change avatar?

    Hi! Im trying to change my avatar and whenever i click my avatar i get Error The following error occurred: The contents of the uploaded image do not match the file's extension. Anyone have any idea how i can delete my current avatar?
  7. Nevalopo

    Lua COMBAT_FORMULA_LEVELMAGIC whats the one based on skills?

    Ahh i see if i use this formula how does it work? local skillTotal, levelTotal = skill + attack * 2, level / 5 return -(skillTotal * 2.1 + levelTotal), -(skillTotal * 3 + levelTotal) what does skill + attack * 2, level / 5 mean? If one have 100 skill and 100 attack on weapon it would...
  8. Nevalopo

    Lua COMBAT_FORMULA_LEVELMAGIC whats the one based on skills?

    Hi! I have now read about COMBAT_FORMULA_LEVELMAGIC which i understand is only based on minmax and level and magiclevel, What do i use if i want it to be based on a single skill like fist fighting? COMBAT_FORMULA_SKILL ?? Is there any explanation of how i use this to either get max skill or a...
  9. Nevalopo

    [Znote AAC] Show outfit on online list

    Fatal error: Call to undefined function highscore_getAll() in C:\Webserver\htdocs\highscores.php on line 17 Running 0.4 here is my highscores.php <?php require_once 'engine/init.php'; include 'layout/overall/header.php'; echo '<link href="high.css" rel="stylesheet" type="text/css" />'; if...
  10. Nevalopo

    [Znote AAC] Characterprofile detailed character info (HP, MP, Level, Exp, skills)

    Cool! Works perfect. What is the difference between 'percent' => (int)($player['mana'] / $player['manamax'] * 100), and 'percent' => (int)($player['mana'] * 100), If im using $player['manamax'] im getting error because im running a class with 0 mana and it gives me division errors. I tried...
  11. Nevalopo

    Solved Voc ID 9 fast soul regen

    Thanks! Here is optimized code for anyone who wants: function onThink(interval, lastExecution, thinkInterval) for _, cid in ipairs(getPlayersOnline()) do if getPlayerVocation(cid) == 9 and getPlayerSoul(cid) < 200 then doPlayerAddSoul(cid, 1) end end...
  12. Nevalopo

    Solved Voc ID 9 fast soul regen

    Thanks! It's working fine now without errors. The script itself is still really messy but it works and i don't dare clean it up with my 0 knowledge of lua. If anyone ever wants a soul regen script here it is working: local vocations,max_soul = {{9}},{200} function onThink(interval...
  13. Nevalopo

    Solved Voc ID 9 fast soul regen

    So just simple like this? function onThink(interval, lastExecution) if getPlayerVocation(cid) == 9 and getPlayerSoul(cid) < 200 then doPlayerAddSoul(cid, 1) end end Then im getting error
  14. Nevalopo

    Solved Voc ID 9 fast soul regen

    Hi! I have a little problem with my soul regen script for voc 9 this is what i have so far: local vocations,max_soul = {{9}},{200} function onThink(interval, lastExecution, thinkInterval) for _, cid in ipairs(getPlayersOnline()) do local maxsoul =...
  15. Nevalopo

    setCreatureMaxMana on Voc ID?

    Its ok this works perfectly fine :D It's really no difference ^^
  16. Nevalopo

    setCreatureMaxMana on Voc ID?

    Yeah they already have 0 mana gain, I just wanted this to set it to start with 0 mana because znote acc has no specific vocation hp/mana start settings just overall settings.
  17. Nevalopo

    setCreatureMaxMana on Voc ID?

    It works! Thank you sooo much for all your help! Not sure why it had to be posted in login.lua but it works! Thanks :D
  18. Nevalopo

    setCreatureMaxMana on Voc ID?

    tfs 0.4 ^^ Not sure what the problem is, Pretty much every 0.3.6 script is working fine.
  19. Nevalopo

    setCreatureMaxMana on Voc ID?

    Same error as i posted above:
  20. Nevalopo

    setCreatureMaxMana on Voc ID?

    Ok atleast there is an error now:
Back
Top