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

    id of vocation to storage

    So they are storage values of storage 1111
  2. GhostWD

    id of vocation to storage

    @luciano01 1 key storage solution local storage = 1111 local table = { [1] = 3058, [2] = 2820, [3] = 2945, [4] = 2960, [5] = 3058, [6] = 3058, [7] = 3058, [8] = 3058, [9] = 14050, [10] = 14052, [11] = 2945, [12] = 2945, [13] = 14060, [14] = 2960, [15] = 3058, [16] = 2960, [17] = 3058, [18] =...
  3. GhostWD

    Question about vocation system(dmg) TFS 1.2

    Hi! what I saw migrating to TFS 1.2 new vocation system doesn't have spell multiplier i mean in TFS 0.4 for example we had <formula meleeDamage="1.0" distDamage="1.0" →wandDamage="1.0"← →magDamage="0.0"← magHealingDamage="1.0" defense="15.0" →magDefense="1.0"← armor="1.0"/> but now in TFS 1.2...
  4. GhostWD

    [POLAND][8.6] DBO FireFun [PLAY2WIN] [NEW PROJECT]

    bump map click teleport+centered graphics
  5. GhostWD

    Lua Segmentation Fault onEquip

    yep migration is in process but owing to the lack of time it's really slow
  6. GhostWD

    Lua Segmentation Fault onEquip

    @Thexamx i tryed on fir3element source and one of premium board and was same.
  7. GhostWD

    Lua Segmentation Fault onEquip

    @Xikini nah still it drops segfault my only solution for that is getting that helmet in bag
  8. GhostWD

    Lua Segmentation Fault onEquip

    so i'm back it really wont work properly i still get segfault even without line onDeEquip that happens only when using quest chest without helmet on or using command /i without helmet function onEquip(cid, item, slot, boolean) if boolean ~= nil then if not boolean and slot ==...
  9. GhostWD

    Rebirthlook instead of level look

    go to protocolgame.cpp and find if(speaker && type != SPEAK_RVR_ANSWER && !speaker->isAccountManager() && !speaker->hasCustomFlag(PlayerCustomFlag_HideLevel) && (pg == NULL || pg != NULL && !pg->getIsCast())) msg->put<uint16_t>(speaker->getPlayerInfo(PLAYERINFO_LEVEL)); else...
  10. GhostWD

    [Lua] Mouse pos minimap tile color return

    uint8 Minimap::getTileColor(const Position& pos) { MinimapBlock& block = getBlock(pos); MinimapTile& tile = block.getTile(pos.x, pos.y); return tile.color; } function to get tile color from pos self:getTileColor(self:getTilePosition(pos))
  11. GhostWD

    [Lua] Mouse pos minimap tile color return

    Bump? I can get tile pos but not it color on minimap... anyone?
  12. GhostWD

    [Lua] Mouse pos minimap tile color return

    Hi, I'm fighting with getting color of minimap tile which is clicked by mouse could someone help me with that? I'm completely lost and i dont know how to use getColor on that ;/ or idk return bool if its in Fog Of War or not Thanks!!
  13. GhostWD

    [Mod] Auto Loot

    if you recive this item does not exist. use this function ExistItemByName(name) -- by vodka local item = getItemIdByName(name, false) if not item then return false else return true end end and btw stacking isn't working correctly when you have 5 same...
  14. GhostWD

    New exhaust types

    Hello i have started playing with exhausts in spells i have added to tfs04/spells.cpp at master · Fir3element/tfs04 · GitHub something like if(agresive) player->addExhaust(exhaustion, EXHAUST_COMBAT); if(!agresive) player->addExhaust(exhaustion, EXHAUST_HEALING); if(isCombo1)...
  15. GhostWD

    How to compile ObjectBuilder?

    does any body know how to compile OB with 0.4.3 sources? when i use flash builder i keep getting those errors: Description Resource Path Location Type 1061: Call to a possibly undefined method removeAt through a reference with static type __AS3__.vec:Vector.<otlib.otml:OTMLNode>...
  16. GhostWD

    offset of spells

    Maybe our friend @Sarah Wesker intention was to highlight what to "test one per one" not to make logics
  17. GhostWD

    Lua doItemSetAttribute(uid, key, value)

    @Xikini he's using only stats change not regen but good point to make it by lua which i wanted to avoid :c maybe i will change to fires source and test it for stability one more time. Thank you! @Random Number point of your post is to show me getter? I know about it but its not setter which i...
  18. GhostWD

    Combat Formula Dmg Problem [AGAIN, LUL]

    So when you changed return to return -10 it worked?
  19. GhostWD

    Combat Formula Dmg Problem [AGAIN, LUL]

    try changing local skillTotal to local skillTotal = 2 for example and check if it's working
Back
Top