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

    Start Skill

    I have a script that gives the skill when the character enters, but the script is lagging the server and doesn’t deliver all the skill in the config for knight is 80, but he only delivers 62 i use tfs 0.4 3777 function onLogin(cid) local playerVoc = getPlayerVocation(cid) local...
  2. L

    Runes need creature

    I can't use magic wall, avalanche, gfb, all runes when i'm using it does it comes : You can only use rune on creatures. i change, spells in data and spells.cpp and spells.h but again problem i use this source and data https://github.com/HeberPcL/TeamWarOT
  3. L

    Account Manager Config

    Hello, how can I change the char settings through the account manager, exemple new character create lvl 8 with 300 hp points
  4. L

    Compiling No level difference restriction on kills

    i change minLevelThresholdForKilledPlayer = 0 maxLevelThresholdForKilledPlayer = 0 and change in source double attackerLevel = (double)attackerPlayer->getLevel(), min = g_config.getDouble( ConfigManager::EFP_MIN_THRESHOLD), max =...
  5. L

    Lua Frags Look

    hi, how can I change the frags query to table "Players" line frags_all function onLook(cid, thing, position, lookDistance) function getDeathsAndKills(cid, type) -- by vodka local query,d = db.getResult("SELECT `player_id` FROM "..(tostring(type) == "kill" and "`player_killers`" or...
  6. L

    Lua Add +1 frag if kill player

    I have this script to add frag when killing player, but it works in a rare way, I don't know if it's related to skulls my server is war 0.4
  7. L

    Lua Formula Exp script

    Hello, this script give exp for kill player, but it is giving a lot of exp is possible change exp gain to "X" * Player level target? function onKill(cid, target, lastHit) if(isPlayer(cid) and isPlayer(target)) then if getPlayerIp(cid) ~= getPlayerIp(target) then...
  8. L

    Solved Dont attack player with same ip

    hello, is possible add to dont attack and damage player with same ip? i have this for same guild function onCombat(cid, target) if getTileInfo(getThingPos (cid)). pvp then return true end if isPlayer(target) and getPlayerGuildId(cid) ~= 0 and getPlayerGuildId(cid) ==...
  9. L

    No exp from same IP when killing another player

    hello, i compile this script in tfs 0.4 3777 but dont work, no have error and exp again with same ip https://otland.net/threads/no-exp-from-same-ip-when-killing-another-player-pvp-enforced-hardcore.74764/page-2
  10. L

    Compiling Compile Ubuntu 16.04

    Hello, i have one problem with compile ubuntu 16.04 i use this sources https://github.com/opentibiabr/otservbr-global
  11. L

    Lua No vocation attack others players

    Hello, can i anable no vocation able to kill others players?
Back
Top