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

    TFS 0.X getNpcName in protocolgame.cpp tfs 0.4

    how i can get Npc Name in protocolgame.cpp?? example i can know name of player with player->getName() == "NAME" i try using npc->getName() == "NAME" but j have this error i added in header #include "npc.h" and extern Npc* npc;
  2. S

    TFS 0.X 0.4 Multi World (Help Debug Client)

    i need some help when i try enter to character list me client have debug i compiled with -D__LOGIN_SERVER__ on windows Debug ScreenShot Config.lua -- Server 1 worldId = 0 Config.lua -- Server 2 server.xml
  3. S

    Lua Cast System Viewers

    This accumulates all the spectators and does not clean them function onThink(cid, interval, lastExecution) local count = 0 for _, pid in pairs(getPlayersOnline())do local viewers = getCastViewers(pid) for _,v in pairs(viewers) do count = count + 1...
  4. S

    CreatureEvent onTarget Interact with Npc

    u have this for tibia 8.60 tfs 0.4??
  5. S

    8.54 Skills

    <skill fist="1.1" club="1.1" sword="1.1" axe="1.1" distance="1.4" shielding="1.1" fishing="1.1" experience="2.0"/>
  6. S

    TFS 0.4 not find any monster

    Bump
  7. S

    TFS 0.4 not find any monster

    BUMP Help my please
  8. S

    TFS 0.4 not find any monster

    that capitals? when I say /m Darkness Knight monster appears without difficulty ie is running fine :(
  9. S

    TFS 0.4 not find any monster

    yes :( darkness knight.xml
  10. S

    TFS 0.4 not find any monster

    <monster name="Darkness Knight" nameDescription="a Darkness Knight" race="blood" experience="23900" speed="650" manacost="480"> [Spawn::addMonster] Cannot find "Darkness Knight" [Spawn::addMonster] Cannot find "Darkness Knight" the error persists
  11. S

    Problem reborn

    replace this line: db.executeQuery('UPDATE players SET rebirths=rebirths+'.. 1 ..' WHERE id='..getPlayerGUID(cid)) For this: db.executeQuery("UPDATE `players` SET `rebirths` = `rebirths` + " .. 1 .. " WHERE `id` = " .. getPlayerGUID(cid) .. ";")
  12. S

    TFS 0.4 not find any monster

    [Spawn::addMonster] Cannot find "Darkness Knight" [Spawn::addMonster] Cannot find "Darkness Knight" This error has all monsters on my server I checked monsters.xml and everything is fine all the monsters were in their respective folders Please Help me
  13. S

    Add New Lines

    Mmmmmm i want that my server have a level difference to a kill player to a low level not gain level witth level high or high too low!!! Because my system pvp-enforced is was in creaturescripts Help
  14. S

    Add New Lines

    function onKill(cid, target, lastHit) if isPlayer(cid) then if isPlayer(target) then doPlayerAddExperience(cid, getPlayerLevel(target)*5) end end return true end Add This Lines minLevelThresholdForKilledPlayer = 0.9 maxLevelThresholdForKilledPlayer = 1.1 Example: function onKill(cid...
  15. S

    Spell addEvent Cancel Spell in PzTile

    Okey Thx Is Works :)
  16. S

    Spell addEvent Cancel Spell in PzTile

    Example function makankosappo(cid) doPlayerSay(cid, 'Makanko!', TALKTYPE_ORANGE_1) addEvent(sap,1500,cid) end function super(cid) doPlayerSay(cid, 'Super!', TALKTYPE_ORANGE_1) addEvent(makankosappo,1500,cid)...
  17. S

    Bugs first items

    Help my bug first items chest need that items is falling since i use this Compilation http://otland.net/threads/perfect-autostacking-items-100-0-stack-all-for-0-4-and-0-3-6pl1.163089/ Thanks for u help ;p Sorry for my bad english
Back
Top