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

    Feature Auto Loot [TFS 1.3]

    If you wanna do something like this when in party: In monsters.cpp before: owner->getParty()->broadcastPartyLoot(ss.str()); Add: ss << " by " << owner->getName(); But remove the dot before in "was auto looted", you can add it later if you want.
  2. psychonaut

    Feature Auto Loot [TFS 1.3]

    The owner of the corpse, who did more dmg, party members can still open the corpse but the loot will be with who's the corpse owner(if he's auto looting), but the party members will get the msg too, like: Loot of a rat: 3 gold coins that was auto looted
  3. psychonaut

    Can i run OtClient for 8.6?

    Yea you can, just select 860 and put the things in data/things/860, we have the source code for it, so it's more easy to change what you want(and the ui differences).
  4. psychonaut

    Feature Auto Loot [TFS 1.3]

    I was bored so i did this code, thanks @Thexamx for the general help. In player.h, above std::unordered_set<uint32_t> attackedSet; Add: std::set<uint32_t> autoLootList; Below: bool hasLearnedInstantSpell(const std::string& spellName) const; Add: void addAutoLootItem(uint16_t itemId); void...
  5. psychonaut

    Psychonaut's Mapping thread

    Oh i see, right to the table too i guess thx
  6. psychonaut

    Scarab Coin @ Ankrahmun Tombs

    You set it to the coordinates back(when there's no coin). <movevent event="StepIn" fromaid="270" toaid = "271" script="yourScript.lua" />
  7. psychonaut

    source need to recomplied to work?

    These older ones are supposed to run with older clients, there's a lot of differences in the source, and lua functions are in some way different too
  8. psychonaut

    source need to recomplied to work?

    My choice is the latest one GitHub - otland/forgottenserver: A free and open-source MMORPG server emulator written in C++
  9. psychonaut

    Sprites & Morality

    I think that @Worr is right here, besides what everyone think, if cipsoft cares or not, for being part of this community we accept stealing from it but we still need to follow our rules, ethics and moral.
  10. psychonaut

    Sprites & Morality

    Plus there's something named common sense in the world, when you talk about open servers, generally they're not a big team and it takes a lot of time and work from the artist to create a good quality sprite and if it's encrypted/hide or anything like xamx said above, it's really wrong to try to...
  11. psychonaut

    How to take sprites from server where sprites are hided in client

    No ethics from you both, good luck, i'm not gonna argue on this, trying to use x or y to justify doing a bad thing, pathetic
  12. psychonaut

    How to take sprites from server where sprites are hided in client

    Wanna help to steal sprites lol, go home.
  13. psychonaut

    Lua Diablo 2 teleport

    function onUse(cid, item, frompos, item2, topos) local temple = getPlayerMasterPos(cid) if hasCondition(cid, CONDITION_INFIGHT) == false then if getPlayerStorageValue(cid, 80000) == 0 then setPlayerStorageValue(cid,80001,frompos.x)...
  14. psychonaut

    Psychonaut's Mapping thread

    Gonna post them here.
  15. psychonaut

    Psychonaut's Free Scripting Service [TFS 1.x]

    To just set the pos of the crates, you can use only the crates function so, but it's easy to get pos now as you can copy it from RME. if sokobanBuildSpots(spots, specialAid) then sokobanBuildCrates(player, crates, specialAid) end Would be just sokobanBuildCrates(player, crates...
  16. psychonaut

    Lua storage talkaciton

    function onSay(cid, words, param) storage = 45000 -- 45000 to 45039 used. -- 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13 damage_types = {0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 2014, 2048} damage_type_names = {"none", "physical", "energy", "earth"...
  17. psychonaut

    Scarab Coin @ Ankrahmun Tombs

    I just changed the functions, maybe missed something, i'm gonna take a look local tileActionID = 270 local tileActionIDBack = 271 local coin = 2159 local teleportTo = {x = 1040, y = 1026, z = 7} local teleportBack = {x = 1036, y = 1026, z = 7} local itemPosition = {x = 1037, y = 1025, z = 7...
  18. psychonaut

    Psychonaut's Free Scripting Service [TFS 1.x]

    I only wanna take quick scripts
  19. psychonaut

    Psychonaut's Free Scripting Service [TFS 1.x]

    I'm up for more requests now.
Back
Top