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

    TFS 0.X Remove all items from depot

    No bro, the if i posted is working What i need to do is clean that depot, delete all items there :)
  2. fyalhed

    TFS 0.X Sell items on trade but with charges

    thank you again
  3. fyalhed

    TFS 0.X Check CAP + free space slots in backpack

    thank you!!!
  4. fyalhed

    TFS 0.X Sell items on trade but with charges

    It works Why doPlayerAddItem(cid, 2446, 1000) is giving 100 instead of 1000? 22:33 You see a train axe that has 100 charges left.
  5. fyalhed

    TFS 0.X Check CAP + free space slots in backpack

    when i say free slots its empty slots on backpack
  6. fyalhed

    TFS 0.X Sell items on trade but with charges

    there isn't a parameter to charges?
  7. fyalhed

    TFS 0.X Remove all items from depot

    Delete all items, transfer, anything like this?
  8. fyalhed

    TFS 0.X Check CAP + free space slots in backpack

    There is any function to check free slots?
  9. fyalhed

    TFS 0.X Sell items on trade but with charges

    <?xml version="1.0" encoding="UTF-8"?> <npc name="Train Weapons" script="data/npc/scripts/train_weapons.lua" skull="green" walkinterval="2000" floorchange="0"> <health now="100" max="100"/> <look type="57" head="0" body="0" legs="0" feet="0" addons="0"/> <parameters> <parameter...
  10. fyalhed

    TFS 0.X Sell items on trade but with charges

    I have this NPC seller <parameter key="shop_buyable" value="train sword,2446,250000;train axe,2443,250000;train club,2444,250000;train rune,2348,1000"/> I want to train sword, club and axe comes with 1500 charges when u buy it on trade And train rune with only one charge How to do it?
  11. fyalhed

    TFS 0.X Remove all items from depot

    I wanna make a server with stages lvl citys, but when u talk to oracle and go to the next city (city lvl 2,3) I want to remove all your items from depot and send to the new city Is it possible to do by scripts? For now i'm doing this bad short solution :( if getPlayerDepotItems(cid...
  12. fyalhed

    TFS 0.X Check CAP + free space slots in backpack

    I can check if player got cap to get the items by just check getPlayerFreeCap -- dont have cap if getPlayerFreeCap(cid) < TILE.needcap then doTeleportThing(cid, fromPosition, false) doSendMagicEffect(position, CONST_ME_MAGIC_BLUE)...
  13. fyalhed

    TFS 0.X spell remove atk mode to everybody who is attacking me

    remove target is working :) TY every single example of getSpectators i saw using this function was 1.0+ with that player: code did u know how to get that player variable i'm trying to use here: local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_HEALING)...
  14. fyalhed

    TFS 0.X spell remove atk mode to everybody who is attacking me

    luascript.cpp:6922:24: error: ‘result’ was not declared in this scope lua_pushboolean(L, result); what is this result? lua_pushboolean(L, result); 1600637104 and did u have any example of script using getSpectators?
  15. fyalhed

    TFS 0.X spell remove atk mode to everybody who is attacking me

    @esigma94 ty you so much! i tried: luascript.cpp lua_register(m_luaState, "doCreatureSetTarget", LuaInterface::luaDoCreatureSetTarget); int32_t LuaInterface::luaDoCreatureSetTarget(lua_State* L) { //doCreatureSetTarget(cid, target) uint32_t targetId = popNumber(L)...
  16. fyalhed

    TFS 0.X spell remove atk mode to everybody who is attacking me

    Is it possible to create a spell, to when player cast remove atk mode to everyone who is targetting the caster 0.4 (https://github.com/Fir3element/3777/blob/master/src/luascript.cpp)
  17. fyalhed

    Linux [LINUX] Tibia 8.6 using too much CPU

    wrong msg
  18. fyalhed

    Linux [LINUX] Tibia 8.6 using too much CPU

    i'm still not manage to fix this problem :( i tried to update my wine to 5.0 but still new bugs: [04/14/20 00:31:08] - Running wine-5.0 Tibia.exe (Working directory : /home/flavio/.PlayOnLinux/wineprefix/otserver/drive_c/Tibia 8.60) 002f:fixme:ntdll:NtLockFile I/O completion on lock not...
  19. fyalhed

    TFS 0.X escape remove all targets

    bump
Back
Top