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

    NPC adding achievement

    would you share your achievements lib modifications and the npc you trying to do? with this information we barely can do something
  2. StreamSide

    TFS 1.X+ changing emote spells color to purple

    0x09 or just 9 https://github.com/SaiyansKing/optimized_forgottenserver/blob/b16a41ff299416432fa5433ebbc4abc9c4eab454/src/protocolgame.cpp#L5645
  3. StreamSide

    TFS 1.X+ changing emote spells color to purple

    its an spell, new talkaction type
  4. StreamSide

    How can I benchmark scripts?

    https://otland.net/threads/benchmarking-your-code-in-lua.265961/
  5. StreamSide

    [TFS 1.3] - Extra/Better loot based on source:getLevel

    lol I already told you the solution
  6. StreamSide

    [TFS 1.3] - Extra/Better loot based on source:getLevel

    you talking about monster droploot which is completely different
  7. StreamSide

    [TFS 1.3] - Extra/Better loot based on source:getLevel

    so you are not using the latest rev I cant help much
  8. StreamSide

    [TFS 1.3] - Extra/Better loot based on source:getLevel

    if you using tfs 1.3+ you can easily add some lines into the loot item creation open container.lua file inside libs and this function with function Container.createLootItem(self, item, multiplier) if self:getEmptySlots() == 0 then return true end multiplier = multiplier or 1...
  9. StreamSide

    Solved Google Clound.

    it seems to be a problem with otservlist itself (maybe im wrong) but I can guess he is trying to add his server with the correct ip but that ip is proxied by cloudflare, isnt it?
  10. StreamSide

    Don't make anything for this guy without pre-payments.

    I dont really have to prove anything to you, its not a matter of money you little b*stard because -not as you- I have no problems with it.
  11. StreamSide

    Don't make anything for this guy without pre-payments.

    not even pre payments, he just scammed a friend with this paypal payback shit
  12. StreamSide

    Disable raids TFS 1.3

    function onTime(interval) if Game.getStorageValue(1234) > os.time() then return true end -- Message broadcast addEvent(Game.broadcastMessage, 1000, "Rats are attacking near Trekolt Temple!", MESSAGE_STATUS_WARNING) addEvent(Game.broadcastMessage, 25000, "Rats...
  13. StreamSide

    Disable raids TFS 1.3

    use the globalevent as raid, I can show you an example.
  14. StreamSide

    Disable raids TFS 1.3

    is possible to disable some raids? I dont think so, but as my homie ranigod told me, why not use globalevents instead of some shitty xml files to declare this monsters and execute it as you want.
  15. StreamSide

    TibiaAPI: Record, Redact, Extract, and Watch

    Yes you can, the king said it.
  16. StreamSide

    [Lua] Custom Conditions or Another Way

    adding a few lines to luascript doesnt mean you added them but instead you tried to register them. You need to create a new one here: otland/forgottenserver (https://github.com/otland/forgottenserver/blob/master/src/condition.cpp) I'm a little busy but take a look at a simple one and try to...
  17. StreamSide

    [Lua] Custom Conditions or Another Way

    seems like the condition doesnt exist at all
  18. StreamSide

    TFS 1.X+ playeradditem, removal of auto stacking

    if items are meant to be used once or to be different from normal items like example. tibia uses one potion but with 2 different functions. I did this by adding an special action id to every item that was added to the player, this way its not going to stack neither tradeable at market.
Back
Top