• 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!

Recent content by supermortaliz

  1. S

    OTClient OTCv8 Updater - Update bot config files

    i think default_configs not send updates - remember players save this information in appdata and him can change without problems
  2. S

    TFS 1.X+ [TFS 1.5] Attribute problems (onHealthChange & getMana)

    change line 1586 from: if Player(cid):getMana() > 0 then to if Player(creature:getId()) and creature:getMana() > 0 then
  3. S

    [TFS 1.3] Mini Shop with command or modalWindow

    u can use this local openShop_With_ActionID = nil local openShop_With_ItemID = nil local openShop_StorageID = nil local openShop_StorageValue = nil local openShop_MessageFailStorage = "nil" local mOdAlWiNdOw_iD = 99999 -- Try to keep this ID unique for this window local shop = {} local...
  4. S

    TFS 0.X [OTX2]Default Ring Equipped error

    have same problem with soft boots? or only with rings? 1701000898 i found this from old problems. fix this error with this Look in creaturescripts for scripts with type login, it can also be in mods. Then look for this doRemoveConditions(cid, false) Change it to this doRemoveConditions(cid) If...
  5. S

    TFS 0.X [OTX2]Default Ring Equipped error

    function onLogin(cid) local ringsfix = { [2214] = {change = 2216}, } local ring = ringsfix[getPlayerSlotItem(cid, 9).itemid] if ring then doTransformItem(getPlayerSlotItem(cid, 9).uid, ring.change) end return true end You changed ids?
  6. S

    TFS 0.X [OTX2]Default Ring Equipped error

    show me health ring from items.xml 1700963868 function onLogin(cid) local ringsfix = { [ITEMID] = {change = ITEMDTOID}, } local ring = ringsfix[getPlayerSlotItem(cid, 9).itemid] if ring then doTransformItem(getPlayerSlotItem(cid, 9).uid, ring.change) end return true end this is working i...
  7. S

    TFS 0.X [OTX2]Default Ring Equipped error

    not show errors in console?
  8. S

    Otcv8 graphic clitches

    maybe have some feature actived in otclient but not have this modifications in tfs?
  9. S

    Why TFS 1.2 removing conditions onDeath

    maybe if you use exura after login, return to normally stats?
  10. S

    OTClient Help ExtendOpCode String To Array

    i send array but ExtendOpcode Converting array to string how i convert again in array? Exm to call in otclient: playersT["Mihawk"] = {title = "[Admin]"} or playersT["Mihawk"].title = [Admin] or maybe send all normal string and after i separate all with string.sub? Server ExtendOpCode...
  11. S

    AAC Myaac error, Server Offline.

    Lol yep i, modified status.cpp of my server xDD i fixed it thanks, slawk!<3
  12. S

    Debug after Clean map

    search in items.xml and change time decay corpse. 900 = 15 min to 90 = 1.5 min
  13. S

    Debug after Clean map

    do you have a rapid respawns? you can decay corpses more fast.
  14. S

    AAC Myaac error, Server Offline.

    object(OTS_InfoRespond)#39 (35) { ["doctype"]=> NULL ["implementation"]=> string(22) "(object value omitted)" ["documentElement"]=> string(22) "(object value omitted)" ["actualEncoding"]=> NULL ["encoding"]=> NULL ["xmlEncoding"]=> NULL ["standalone"]=> bool(true) ["xmlStandalone"]=> bool(true)...
  15. S

    AAC Myaac error, Server Offline.

    i think error is this line: return (int) $this->documentElement->getElementsByTagName('players')->item(0)->getAttribute('online'); i commented this lines and now i can see status server!
Back
Top