• 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. Albert José

    Best approach to make custom dat/spr compatible with cipsoft updates

    Isn't it common for them to fill in these gaps in future releases? I think they did this in the last update.
  2. Albert José

    Best approach to make custom dat/spr compatible with cipsoft updates

    Hello everyone, recently the amazing @Evil Puncker launched a new Downgraded 13.x assets to .dat/.spr format based on the last cipsoft update, as usual I want to update my .dat/.spr with the new outfits, items, etc. but I have already created some custom items and I have added them there, I know...
  3. Albert José

    Feature [0.4] All heal / damage in percentage

    I modified OTCv8 to do this, mine shows M for millions as well. Firstly add this function into: src/client/protocolgameparse.cpp std::string formatNumberText(uint value) { if (value > 1000000) { return stdext::format("%.1fM", value / 1000000.0); } else if (value > 1000) {...
  4. Albert José

    mistake with familiar

    The error that appear in your console error doesn't correspond to the line of the archive that you posted, are you sure that is your current familiar.lua?
  5. Albert José

    [10.98 ] Simple Castle

    Cool man, would you mind if I use it in my map? Thanks :x
  6. Albert José

    TFS 0.X Level next to the player's name.

    One possible solution would change those functions in the client side to remove the extra text ' [.*]' before execute the action, or a better approach would be write the level on screen, in the position that you want in the function (client source code): src/client/creature.cpp void...
  7. Albert José

    TFS 0.X Level next to the player's name.

    I have tried this in the past, but the functions "Copy name", "Add vip" and "Send private message" when you do a right click in other players are broken, I managed to solve this changing the client source code.
  8. Albert José

    Feature [0.4] All heal / damage in percentage

    I have done this on my TFS 1.4 server, was a lot of work, but I can share with you if you want (where I have modified)
  9. Albert José

    TFS 1.X+ How to remove items from purse/store inbox?

    I have resolved the problem by myself, I'm using the getItems() Lua:function to get the items inside the players's store inbox (it's container) and I remove them using the item:remove(count) function, I know that I could use a recursive function, but I'm too lazy to think about this, so if...
  10. Albert José

    TFS 1.X+ How to remove items from purse/store inbox?

    I want to remove the item inside the player's store inbox, I have tried in two ways: RESET_COIN = 38228 -- 1 player:removeStoreItem(RESET_COIN, 1) -- 2 player:removeItem(RESET_COIN, 1) There is the code from removeStoreItem: function Player:removeStoreItem(item, quantity) local...
  11. Albert José

    TFS 1.X+ How to remove items from purse/store inbox?

    I have created a system to give to the players a "coin" their store inbox (purse), the idea is that they can't remove the item from there, allowing them to buy some special items using a lever system, but for some reason the function player:removeItem(id, count) isn't working. There is the code...
  12. Albert José

    Monster Release complete monster pack v5.0

    Fast Update Oo Great job man!!! Thanks for it.
  13. Albert José

    Monster Release complete monster pack v5.0

    Very Thanks man!!! Love you *.* Good job for you...
  14. Albert José

    [8.4] The Forgotten Server v0.3.2 (Crying Damson)

    Tapestrys and trophys dont work for me!!! Please fix it...
  15. Albert José

    MoveEvent Fixed Super transformer ring

    Work for me in this version xD!!!
  16. Albert José

    [8.4] The Forgotten Server v0.3.2 (Crying Damson)

    Tapestrys and trophys dont work!!! Please fix it...
  17. Albert José

    Action [RELEASE] The Boomerang (like in the Zelda series)

    Bad work for me! He don't take items in no place! In all locations say this: I use [8.4] The Forgotten Server v0.3.2 (Crying Damson) No have errors in console...
  18. Albert José

    Advanced-Guild-War-System {Count in site the frags!} Now Edited with tables of DB!

    What name I need put in this script? It's work in [8.4] The Forgotten Server v0.3.2 (Crying Damson)? Log error: [14/03/2009 12:17:59] Lua Script Error: [GlobalEvent Interface] [14/03/2009 12:17:59] data/globalevents/scripts/wars.lua [14/03/2009 12:17:59] cannot open ./GuildWar.lua: No such...
  19. Albert José

    [8.4] The Forgotten Server v0.3.2 (Crying Damson)

    It's easy man! Example: Old Script: <movevent event="StepIn" actionid="7801" script="alterstp.lua" /> New Script: <movevent type="StepIn" actionid="7801" event="script" value="alterstp.lua" /> Change "event" for "type" and "script" for 'event="script" value'... Try this...
Back
Top