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

    OTclientV8 ItemTooltip + rarity frames + custom color on item name

    Would you be so kind as to tell me how? :D
  2. Z

    Action [TFS 1.x] Item 'loot seller'

    I must be doing something wrong... When I right-click on the created "Item seller" and on the item from the list, I get the information "you cannot use this object" TFS 1.4.2 -- rest of config (item prices) is under function, paste there your items list from npc local config = {...
  3. Z

    OTclientV8 ItemTooltip + rarity frames + custom color on item name

    Would it be possible to change this system of frames and tags so that they do not depend on "legendary/epic/rate" but on the attribute that would be added to the item? I would like to make such a rarity with a frame, but not change the name of the item
  4. Z

    TFS 1.X+ Shared Exp taking into account distance and professions

    Hi, I thought I would start a new topic considering what has already been done. By the way, someone may directly benefit from the results :) original thread: C++ - Party shared experience issue (https://otland.net/threads/party-shared-experience-issue.286392/page-3#posts) (3 page) Thanks to...
  5. Z

    C++ Party shared experience issue

    and shouldn't this last script go to party.cpp instead of player.cpp? :D I don't have a shared function for replacement in player.cpp from what I can see. Should I add it somewhere specific? I need to get things in order with the functions, because yesterday I tried to do it in different ways...
  6. Z

    C++ Party shared experience issue

    I've done a lot with my own (little) knowledge and with the help of gpt chat, but I totally don't know how to deal with this party :/
  7. Z

    C++ Party shared experience issue

    After updating party.lua and removing +1 from exp =math.ceil and a few tests, everyone still gets +700 exp. Don't worry, no problem :D Don't worry, if you have time, I'll be grateful if you check it out, Boss :)
  8. Z

    C++ Party shared experience issue

    I think the reason was it's already an hour :D I'm entering, I'll run some quick tests and come back with the results ;) Thanks Boss 1732313876 Fast test: Pal + Sorc (both deals ~50% dmg) = both +700 exp Pal + Sorc (sorc deals 0 dmg, Pal 100% dmg) = both +700 exp 2 fast test: Pal + Sorc +...
  9. Z

    C++ Party shared experience issue

    Yes, I have it updated function Party:onJoin(player) if hasEventCallback(EVENT_CALLBACK_ONJOIN) then return EventCallback(EVENT_CALLBACK_ONJOIN, self, player) else return true end end function Party:onLeave(player) if hasEventCallback(EVENT_CALLBACK_ONLEAVE)...
  10. Z

    C++ Party shared experience issue

    Yes, I know, I have it there and I edited it there. Now I just came across this partyUpdate.lua somewhere else. I don't really know what it is
  11. Z

    C++ Party shared experience issue

    Oh Sorry! I added an abbreviation from Polish :D "In general shared does not work" data\creaturescripts\scripts i have partyUpdate.lua (I don't know if it will do anything) local OPCODE_PARTY = 160 function onThink(creature, interval) local _data = {name = creature:getName(), pos =...
  12. Z

    C++ Party shared experience issue

    Okay, I did some tests (I don't have the stamina bonus turned off in party.lua. I saw it somewhere but I can't find it now) 🤔 all are free acc :D Dragon: 700 XP no-stamina bonus Test 1: Sorc +(L) Pal (~50% dmg both) = both they both got 700 exp Sorc + Pal (Sorc ~2-5% dmg, (L) Pal 95-98% dmg) =...
  13. Z

    C++ Party shared experience issue

    That's okay. If there are 5 players, e.g. Sorc, Druid, Knight, Paladin (and second sorc), then the bonus for 4 professions is activated, but the mob exp is divided by 5 (number of players) + gives a bonus for 4 professions 1732245055 Ahh right! Stamina for a premium player! :D My brain isn't...
  14. Z

    C++ Party shared experience issue

    Something is wrong. rateExp = 1 <monster name="Dragon" nameDescription="a dragon" race="blood" experience="700" speed="185" manacost="0"> i killed solo dragon - 03:58 You gained 1050 experience points. 1732244631 +50% all mobs give when you kill them solo
  15. Z

    C++ Party shared experience issue

    Dragon gives 700 hp. Shared (Knight + Druid) Everyone got: 498 1732243312 Knight deal ~14 dmg (less than 1%) Paladin deal ~99% dmg both: 03:39 You gained 1048 experience points I don't know why exp increased so much. I try different combinations and still +1048 exp for both of them in a...
  16. Z

    C++ Party shared experience issue

    Before: Orc: 25 exp Shared - both 27 exp After updating Shared - both 36 exp +44% I need to give them XP and make a stronger mob xD moment
  17. Z

    C++ Party shared experience issue

    Yes, you're right. In party.lua there is the following information: Shared exp (20%) and what the vocations function looks like. The only thing I don't like about it is that shared is 1.2 (120%). Orc gives 25 exp. 120% = 30. Since they received 27 exp each, it looks like the "bonus" is...
  18. Z

    C++ Party shared experience issue

    Okay, thanks, Boss. Your solution got rid of other errors. The only error is with the tasks I have built-in. I need to think a bit about how to solve this problem and I'll let you know after I start it :D I'll spend another hour on it, so I'll let you know when I manage to do it. :D Ok, I fixed...
  19. Z

    C++ Party shared experience issue

    Actually, no, I replaced the previous functions. I'll go back to the initial settings and make the changes in a moment
  20. Z

    C++ Party shared experience issue

    I'm just learning how to create OTS codes :D Shared is, unfortunately, completely beyond me, so I don't want to mess with anything you give me. Once I compile the whole thing, I will test it on a separate server with the basis. I don't know why, but for me there are errors after compilation...
Back
Top