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

    Console Error TFS 0.3.4

    It seems like you are running a .exe under Linux. Why don't you just pick up the sources and compile them and run it instead of using Wine.
  2. narko

    Windows Starting from the beggining Tibia serwer 8.60

    The Forgotten Server 1.2 The best imo as It's still on development, that means that you can request fixes (not special features) and they will be solved within hours. Also It has the most clean and optimized code, with lots of new features included in the source code such as: onChangeOutfit...
  3. narko

    GlobalEvent Automatic Znote AAC Shop [TFS 1.0]

    Maybe what you are looking for is getPlayersOnline() since you are using OTHire and it's not based in TFS 1.x
  4. narko

    Web Shop Problem

    You have to add a script to your server in order to make contact between your website -> database -> server Chose your server version here, the folder you are looking for its name is talkaction shopsystem. https://github.com/Znote/ZnoteAAC/tree/master/LUA If you are using TFS 1.x, you can also...
  5. narko

    [C++] (PVP) No damage if same storage value

    I've been struggling with some changes I want to make to my server, tbh i'm kinda tired of trying this, that's why I decided to post it here, if someone could help that'd be cool. It takes place in Game::combatChangeHealth function in game.cpp, I want to return false to this function in PvP if...
  6. narko

    Solved MYSQL Problem.

    Run this query: ALTER TABLE `players` ADD `cast` TINYINT NOT NULL DEFAULT '0', ADD `castViewers` INT( 11 ) NOT NULL DEFAULT '0', ADD `castDescription` VARCHAR( 255 ) NOT NULL
  7. narko

    Request onMoveItem for version tfs1.0 - 10.76

    What do you want to do?
  8. narko

    Request onMoveItem for version tfs1.0 - 10.76

    events/player.lua function Player:onMoveItem(item, count, fromPosition, toPosition) return true end
  9. narko

    [TFS 1.1] Players Broadcast

    broadcastMessage
  10. narko

    Anti Flooder

    XAMPP is outdated, use Uniform Server. https://otland.net/threads/from-nothing-to-a-fully-working-secured-ot-server-uniform-server-tfs-0-3-6.77593/
  11. narko

    NEED PRISON BOSSES

    If only you have contributed something for the community, I'd help you. You are just like asking for everything in the forum. I'm not even trying to be rude tho.
  12. narko

    [Gesior] Bootstrap, Metro Blue

    You can take look to the file pages/shop.lua and figure out how to make them work. Hint: $offer_array['mount'][$i_mount]['id'] = $data['id']; $offer_array['mount'][$i_mount]['mountid'] = $data['itemid1']; $offer_array['mount'][$i_mount]['points'] =...
  13. narko

    [Gesior] Bootstrap, Metro Blue

    Thanks for sharing man!
  14. narko

    [TFS 1.X] Prize Box (By % Chance)

    100% probability that does not make sense in a statement if you have other options the one that will always be picked is going to be gold coin.
  15. narko

    tfs 10.90 - can't add new outfits..

    As Tibia Client only supports 50 outfits, sources have like a limit too so the client doesn't bugs (if outfits.size > 50 { break). Here you have 51 outfits so It will only show 50.
  16. narko

    Roxor Elite 10.77

    Ip?
  17. narko

    Lua Party damaging pets in party! Script help!

    Source edit required I think.
  18. narko

    Compiling [TFS 1.2] Outifts and Mounts limit

    Is there any way to use Tibia 10.9 client as 10.53? I know I can just import the sprites but I want to use Tibia 10.9 engine so It will allow more outfits and mounts when sendOutfitWindow. I've been trying to allocate Game and Login adreesses with ollydg and XVI32 but I got stuck.
  19. narko

    Compiling [TFS 1.2] Outifts and Mounts limit

    The client is limited to certain amount of outfits and mounts in that client. I tried to set outfits.size to 51 in sources but it just doesn't work as inteed.
  20. narko

    Compiling [TFS 1.2] Outifts and Mounts limit

    What I know so far is that the limit in outfits and mounts is client sided. But I just wonder if there's any way to modify or break this limit? Tibia Client: 10.53 Thanks in advance.
Back
Top