• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. Elime

    A Big Fuck You Otland and its nitwit community of leechers

    He got angry because no staff member wanted to reply in his thread.
  2. Elime

    A Big Fuck You Otland and its nitwit community of leechers

    npc.cpp: player->openShopWindow(npc, items) player.cpp: sendSaleItemList() protocolgame.cpp: player->getMoney() player.cpp: item->getWorth()
  3. Elime

    A Big Fuck You Otland and its nitwit community of leechers

    I believe the client is figuring this out. If you look here, the amount of money the player has is sent to the client. I think all you have to change is this function: int32_t Item::getWorth() const { switch (id) { case ITEM_GOLD_COIN: return count; case...
  4. Elime

    Editing Source

    You definitely don't have to be a master at c++ to edit the source code. =P Start off by following this guide explaining how to compile the forgotten server.
  5. Elime

    Solved how to put new NPC in game

    You can actually choose to browse the 1.0 branch on github as well. The master branch is the most recent TFS and is currently known as TFS 1.1 (but it's not done yet)
  6. Elime

    Solved how to put new NPC in game

    You are using the files from TFS 1.1. But should be using the ones from TFS 1.0. I guess you somehow didn't manage to change to the library files Ninja suggested you to download.
  7. Elime

    Can't load custom spells

    Add: end at the end of the file.
  8. Elime

    Solved how to put new NPC in game

    You said that your default.lua is the same as the one Breed posted. So where does the following code come from?
  9. Elime

    Lua Will this make my server laggy?

    Please leave the original question as it was so others who might have the same question can find it and read it.
  10. Elime

    Solved TFS 1.1 house commands

    They are spells. You can find them listed in data/spells/spells.xml
  11. Elime

    Why is this keep on getting ignored? TFS 0.4 Rev.3884 64bit gui /w war system

    Yes, Ubuntu is also a destribution of Linux and it is actually based on Debian. =P Yep, you just move the souce over to debian and compile it there.
  12. Elime

    Lua Casino percent win

    Right now you got 10% chanse to win 3x gold, 35% chanse to win 2x gold and 55% risk of losing. You can increase the first interval to make it less likely to win. For example: local t = { [{1, 70}] = 0, [{71, 90}] = 2, [{91, 100}] = 3 } This gives 10% chanse to win 3x gold, 20%...
  13. Elime

    Why is this keep on getting ignored? TFS 0.4 Rev.3884 64bit gui /w war system

    Debian is a distribution of Linux. To move the server from windows to Debian all you have to do is to recompile the source code under Debian instead.
  14. Elime

    Elime's NPC Editor

    Update 1.1_1 Small update to fix the problem with keywords when using capital letters. The problem was descussed here and here. MediaFire download: Windows Linux OSX
  15. Elime

    WASD walker

    Thank you for all the great suggestions! =)
  16. Elime

    Elime's NPC Editor

    I'm still hoping TGYoshi who developed SpellCreator is coming back. Maybe he will update it or at least release the source code. ^^ But yeah, I might start working on a spell creator in the future if he never shows up.
  17. Elime

    NPC issues - Mainly with Keywords

    Hi, it's Elime not Emire! =P The problem is that the NPC system only accepts keywords with all letters in lower case. If you change: "Job;Quest" to: "job;quest" it will work as expected. Sorry for the inconvenience, I will fix it in the next update of the NPC editor.
  18. Elime

    Solved Bug with super pally rune

    You have too many parentheses at these lines: doCreatureAddHealth(cid, 1483, 1505)) doCreatureAddMana(cid, 922, 1023)) Change it to: doCreatureAddHealth(cid, 1483, 1505) doCreatureAddMana(cid, 922, 1023)
  19. Elime

    Windows The /i command doesnt work ?????

    Well, you are the one who knows what changes you made. =P
Back
Top