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

    C++ TFS 1.2 Remove learned spells when rooked.

    I'll try. But they won't have to buy the spells again, right? I want them to lose their player_spells storage.
  2. cryptomeepo

    C++ TFS 1.2 Remove learned spells when rooked.

    TFS 1.2 Nostalrius Datapack. My players aren't losing spells they learned before getting rooked, so they can use exura vita as a knight if they go to main again for example. // Teleport newbies to newbie island if (g_config.getBoolean(ConfigManager::TELEPORT_NEWBIES)) {...
  3. cryptomeepo

    Traps Stacking

    Fixed. function onStepIn(creature, item, position, fromPosition) local tile = Tile(position) if tile:hasFlag(TILESTATE_PROTECTIONZONE) then return end if item:getId() == 2145 then item:transform(2146, 1) item:decay() doTargetCombatHealth(0...
  4. cryptomeepo

    Traps Stacking

    Players are able to stack traps and hit kill monsters. Scripts: open_trap: function onRemoveItem(item, tileitem, position) if item:getPosition():getDistance(position) > 0 then item:transform(3481, 1) item:decay() item:getPosition():sendMagicEffect(3) end...
  5. cryptomeepo

    C++ TFS 1.2 - Server Crash: Item::getTopParent()

    Server is crashing for some reason and I can't reproduce it. Can you guys help me figure it out? Nostalrius Datapack Thread 2 (Thread 0x7ffff6c26700 (LWP 700706)): #0 0x00005555557b346d in Item::getTopParent() const () #1 0x00005555558a5561 in Player::hasCapacity(Item const*, unsigned...
  6. cryptomeepo

    Lua programmer

    Omg. Ok man. Sorry to all programmers. I didn't want to offend anyone. I'm sure everyone who wants to make some extra money programming would like to have people here looking for professionals more often.
  7. cryptomeepo

    Lua programmer

    Because I want to pay someone to go through all the houses of a global map to do it instead of myself, for example. I never mentioned that a simple task is = to a low price, did I?
  8. cryptomeepo

    OTCV8 auto updater doesnt detect changed files

    Everything does for me as well, but things folder. And when user download it for the first time, or delete data.zip from appdata it downloads things folder just normal. So weird o_O Realized my updater url has some php errors: Lines 30 to 35:
  9. cryptomeepo

    OTCV8 auto updater doesnt detect changed files

    Already did, same problem. Does your things folder update automatically every time you change something?
  10. cryptomeepo

    OTCV8 auto updater doesnt detect changed files

    On their tutorial there is this part: But I still don't know how to make it automatically since there is no $things_dir on my updater_advanced, but this:
  11. cryptomeepo

    TFS 1.X+ Player_item INSERT INTO VALUES ERROR

    Thanks! Lets see if INT itself is enough to fix it.
  12. cryptomeepo

    TFS 1.X+ Player_item INSERT INTO VALUES ERROR

    I'll try. Bad thing is I cant reproduce it. I'll keep tracking console. I edit it to INT (10) is that ok or it should be 5?
  13. cryptomeepo

    TFS 1.X+ Player_item INSERT INTO VALUES ERROR

    Some players are suffering a rollback and I can't manage to reproduce the bug. I did notice it is happening when they get too much items, from parcel or trades. Does anyone knows how to fix it? Datapack: Nostalrius. player_items player_depotitems
  14. cryptomeepo

    PHP MYsql error Player_depot

    Message: Out of range value for column 'count' at row 86 Does anyone knows what might be causing it? I can't reproduce the error... Every server save error show up. Asked player 1161 if something different was in his depot, but he couldn't tell me. I don't want to access his account...
  15. cryptomeepo

    Lua programmer

    We are looking for a Lua programmer who can do daily tasks for us. Daily payments upon job done. Tasks available now: Elevation walk through; Silver amulet poison block; Retrieve your account if you did not create a character yet; Client backpack move close to character; Share experience will...
  16. cryptomeepo

    tfs.service: Main proccess exited, code=killed, status=11/SEGV

    Solved guys. Town::getID() The Gatekeeper, a npc from Rookgaard was sending people to Port Hope with a nonexistent town id. TFS 1.2 Nostalrius. What a headache.
  17. cryptomeepo

    tfs.service: Main proccess exited, code=killed, status=11/SEGV

    Well turned out it wasn't lack of RAM. Spigu gave me the 32 GB we added and still crashing. Crashing faster and in less than 100 players now. Crashed without server saving as well. We really need some help here and we are willing to pay. If you would please pm me. I'm trying to run GDB...
  18. cryptomeepo

    tfs.service: Main proccess exited, code=killed, status=11/SEGV

    I did, it is compiled on the same machine. I'll check the post you mentioned.
Back
Top