• 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. Joe Rod

    Solved Linux debian 8.0 su - apt-get install help

    have you written root password correctly?
  2. Joe Rod

    Linux How to start compiled server

    here
  3. Joe Rod

    Solved Linux debian 8.0 su - apt-get install help

    first su write the root password and then apt-get install packagename
  4. Joe Rod

    fuction bring me to

    tfs?
  5. Joe Rod

    Solved Want to correctly loop addevent

    from here "That loop will execute something for each value of var from exp1 to exp2, using exp3 as the step to increment var. This third expression is optional; when absent, Lua assumes one as the step value. "
  6. Joe Rod

    Solved Want to correctly loop addevent

    you mean this? for i = 2, 8, 2 do addEvent(sendEffect, i * 1000, cid.uid, pid) end
  7. Joe Rod

    C++ [TFS 0.4] - Remove Backpack on death

    test void Player::dropLoot(Container* corpse) { if(corpse && lootDrop && vocationId != VOCATION_NONE) { if(inventory[SLOT_NECKLACE] && inventory[SLOT_NECKLACE]->getID() == ITEM_AMULETOFLOSS && getSkull() != SKULL_RED && getSkull() != SKULL_BLACK &&...
  8. Joe Rod

    C++ [TFS 1.2] Level and vocation in charlist

    that's called once, character list is called on a loop, check: ProtocolLogin::getCharacterList
  9. Joe Rod

    C++ [TFS 1.2] Level and vocation in charlist

    i think it can't be done because "ConfigManager::SERVER_NAME" is called once i would do on playerName because is easy to add player level and voc there but that would reduce the name scope
  10. Joe Rod

    old exhaust system.

    i think @Peonso could answer that
  11. Joe Rod

    How i can edit my sources?

    you have to learn C++
  12. Joe Rod

    Feature Auto recharge ammo

    You did it wrong
  13. Joe Rod

    Learning to sprite

    pro
  14. Joe Rod

    Lua Creature not found

    you are answering your question, that's the bug, if there is not a ball on pokeball slot where is the item to read that attribute? I bet you only did "/s Ditto" and tried to use "!revert" xD, it won't work at that way
  15. Joe Rod

    Lua Creature not found

    pm me
  16. Joe Rod

    Lua Creature not found

    you don't have ball on your ball slot i don't see "luaGetCreatureStorage" or "luaGetThingPosition" is that the full script?
  17. Joe Rod

    Monster loot

    tfs?
  18. Joe Rod

    Feature Auto recharge ammo

    Hi, with this modification your ammo slot will be refilled if you have enough ammo on your equipment. go to weapon.cpp and find: case WEAPONACTION_REMOVECOUNT: before "Weapon::decrementItemCount(item);" paste this uint32_t count = item->getItemCount(); if (count - 1 == 0) { uint32_t...
Back
Top