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

    Lua Blessing in creaturescripts

    give them all blessings?
  2. Elbow

    Compiling Help change spawnrates per players online

    post your spawn.cpp too
  3. Elbow

    [TFS 1.0] Critical Hit % - Permanent

    under function onHealthChange, add if(Monster(attacker) ~= nil) then return primaryDamage, primaryType, secondaryDamage, secondaryType end this way, your summons also can't crit targeted monsters/players
  4. Elbow

    Solved Create New Skill - Mining

    what is the ID of mining skill in your client? have you made it 7 just like in sources? since you shifted SKILL_MAGLEVEL and SKILL_LEVEL by +1 in server, I hope you also did it in client how about vocations.xml? did you add something like this for each vocation <skill id="7" multiplier="1.1" />...
  5. Elbow

    Can't login tibia

    because you are NAT'ed, check solution in other thread https://otland.net/threads/help-with-logging-in.241227/#post-2379875
  6. Elbow

    item-movement attribute

    easier suggestion: write an onHealthChange creaturescript to check if plate legs are equipped, and then return 0 damage for certain primaryTypes/secondaryTypes see more here: https://github.com/otland/forgottenserver/wiki/Interface:Creature-Events#onHealthChange
  7. Elbow

    Windows [10.10] RME optype sprite ERRORRRR

    Have you manually downloaded any missing dlls? remove them from the folder if you did, and download vcredist_x86.exe from https://www.microsoft.com/en-us/download/details.aspx?id=40784
  8. Elbow

    Lua Blessing in creaturescripts

    you need to write some code for onLogin to add back levels, skills, magic if they are below the required minimum, based on vocation(?)
  9. Elbow

    help to understand how ots really work.

    tfs 0.3: http://web.archive.org/web/20100702222147/http://hem.bredband.net/johannesrosen/playerflags.html 0.2(?): http://comedinha.github.io/flags-calculator/ mixed: http://ranisalt.github.io/flags-calculator/ https://otland.net/threads/elimes-flag-calculator.225667/...
  10. Elbow

    Windows [10.10] RME optype sprite ERRORRRR

    that's why you should download a newer copy of RME
  11. Elbow

    [7.7] RealOTS 7.7 Cipsoft files (virgin)

    rm ../save/* or just manually remove pid file in save folder
  12. Elbow

    StatsChange Defenses (absorbPercentAll / armor)

    Look for the function where executeStatsChange is called, and then you can look for other functions which call the function you've found, repeat until you've found the right part
  13. Elbow

    Help With Logging in!!

    go ahead, PM
  14. Elbow

    Windows [10.10] RME optype sprite ERRORRRR

    not sure but sounds like some incompatibility? which RME are you using? https://otland.net/threads/10-76-remeres-map-editor.211040/page-20#post-2365822 the one from this thread worked fine for me, and supports many versions.
  15. Elbow

    Help With Logging in!!

    typo, config.lua, not global.lua so your free DNS host is now entered in config.lua? which server are you using? did you save the hosts file properly, and add the correct domain in hosts file? If you did, it will redirect you to 127.0.0.1 instead of global IP, which should work to login just...
  16. Elbow

    Crash Server onkill tfs 1.x

    Unfortunately I don't know what function updateDamage does. Can you post it, if that's the the function which causes the crash
  17. Elbow

    Set unmoveable,unpickupable and use with

    the IDs are 8711 for shovel and 8712 for rope
  18. Elbow

    Compiling Help change spawnrates per players online

    You will probably need to add this code at the top of file, but I am not sure if it's also necessary to move this function into game.cpp now, and just leave a prototype in header file, or if current implementation (accessing global variables in header file) is fine. #include "game.h" extern...
  19. Elbow

    StatsChange Defenses (absorbPercentAll / armor)

    reason is probably that you don't have the original damage available in onStatsChange, but the reduced damage. so what you're doing here is multiplying the reduced damage by 2, and the damage is even less after being reduced twice. suggesting you try to perform a source edit
  20. Elbow

    Help With Logging in!!

    if you put 192.168.1.9 into config.lua then you can login, but other people won't be able to login, NAT is the reason of this problem. you can create a free hostname at http://www.noip.com/ and use it in config.lua, but then you have to add a hosts file entry on the hosting PC like this...
Back
Top