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

    [TFS 1.4] CLEAN HOUSE BY TALKACTION

    clean houses with a single command, I hope it works for you. Credits: -CaduGTX -Adriczao -Kutz local function doCheckHouses() local registros = db.storeQuery( "SELECT `houses`.`owner`, `houses`.`id` FROM `houses`,`players` WHERE `houses`.`owner` != 0 AND...
  2. adric21

    TFS 0.X , 4 & OTX DOOR BUG

    SIMPLE SOLUTION: Go to data / movements / scripts, search for: "closingdoor.lua" and REPLACE for: function onStepOut(cid, item, position, fromPosition) local newPosition = {x = position.x, y = position.y, z = position.z} if isInArray(verticalOpenDoors, item.itemid) == TRUE then...
  3. adric21

    DailyTask ~100%

    Go to / data / npc and create the daily.xml file, open it and put it all in there: <?xml version="1.0" encoding="UTF-8"?> <npc name="Tian" walkinterval="2000" floorchange="0" script="dailyTask.lua"> <health now="100" max="100"/> <look type="128" head="0" body="112" legs="107" feet="113"...
  4. adric21

    Paid job C++ programattor

    I'm looking for someone who can perform a bot with certain functions in an independent game
  5. adric21

    CreatureEvent DEATH SYSTEM CAST TFS 0.4,OTX 2X ALL VERSIONS

    GO TO DATA/CREATURESCRIPTS/SCRIPTS AND CREATE A FILE "DeathSystem.LUA" ADD THIS CODE : function onDeath(cid, corpse, killer) local pos = getCreaturePosition(cid) local monster = 'a morte' local timer = 3 -- tIME function removeMonster() for _, pid in...
  6. adric21

    C++ Problem with cant move death corpses tfs 0.4 3777

    Any can help me with this problem , I had edited xml files and dont work :(. the solution is Solved - Can't move corpses but idk how to pass to tfs 0.4
  7. adric21

    C++ Bug no monster lvl tfs 0.4 3777

    I got this bug in this line bug Anyone Can help me :///
  8. adric21

    TFS 0.4 SPYITEM

    talkactions finditem.lua: function onSay(cid, words, param) if param == '' or tonumber(param) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "/find item name") return true end local item_id = getItemIdByName(tostring(param), false) if not item_id...
  9. adric21

    Feature Conjure Runes Backpkac

    Item* Player::getEquippedItem(slots_t slot) const { Item* item = getInventoryItem(slot); if(!item) return NULL; switch(slot) { case SLOT_LEFT: case SLOT_RIGHT: return item->getWieldPosition() == SLOT_HAND ? item : NULL; default: break; } return item->getWieldPosition() == slot ? item : NULL...
  10. adric21

    Feature 100% Heal & Mana Tfs 0.4

    We need to search our sources: protocolgame.cpp void ProtocolGame::AddPlayerStats(NetworkMessage_ptr msg) After change all for it: void ProtocolGame::AddPlayerStats(NetworkMessage_ptr msg) { msg->put<char>(0xA0); if (player->getPlayerInfo(PLAYERINFO_MAXHEALTH) > 0) { float...
  11. adric21

    TFS 0.4 Command Spy by Gods

    Talkactionxml: <talkaction log="yes" access="3" words="!equipment" event="script" value="------.lua"/> and later add this in your data/talkactions/scripts: -- Equipment spy by Adric/underwar -- function getItemsInContainer(cont, sep) local text = "" local tsep = "" local count = "" for i=1...
  12. adric21

    Tfs 0.4 0.4.6 & Otx Fast Attack by 2 Steps (Actualizado)

    Find inPlayer.cpp: uint32_t Player::getAttackSpeed() const Later change this fuction by: uint32_t Player::getAttackSpeed() const { int32_t SpeedAttack; SpeedAttack = vocation->getAttackSpeed() - (getSkill(SKILL_FIST, SKILL_LEVEL) * 10); if (SpeedAttack < 500) { return 500...
  13. adric21

    Anyone can help me with this script for Manarune

    Its a simple script, Im using tfs 0.4 12345
  14. adric21

    Programmer Want a Own engine with unic systems

    Interest pm me
  15. adric21

    TFS 1.2 Bless icon

    I would like to know how I could do to make this icon appear when using the! Bless command, I do not know if it is necessary to modify the sources or a simple script. I am currently using tfs 1.2 Anyone can give me the code for edit the source? 12345
  16. adric21

    Bug in tfs 0.4

    I would like to know if anyone can help me to correct this problem, since it is too tired to be hunt and not able to complete the money. Its for version 8.6 i would apreciate your help.
  17. adric21

    Problem with tfs 0.4 !bless icon

    I would like to know how I could do to make this icon appear when using the! Bless command, I do not know if it is necessary to modify the sources or a simple script. I am currently using tfs 0.4
  18. adric21

    Lua [TFS 1.2 - 8.60] Problem with swimming.lua & a teleport

    I have a problem with these scripts for version tfs 1.2 8.6 The first one does not work swimming.lua since the player when entering the sea does not change. local condition = Condition(CONDITION_OUTFIT) condition:setOutfit({lookType = 267}) condition:setTicks(-1) function onStepIn(creature...
  19. adric21

    Tfs 0.4 3484 of simon here, with guild war system

    If anyone can give me the sources i would apreciate.
  20. adric21

    Aiko City, My last Work by Adric

    I hope and someone appreciates the work and achieves remapiar, happy new year and I hope and the community always maintain their contributions. - I hope and someone appreciates the work and achieves remapiar, happy new year and I hope and the community always maintain their contributions. I've...
Back
Top