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

    In-game music and sound effects

    Hello! Just checking in. Im in the starting of a small company that will focus on gaming music and sound effects. As I know, its possible to implent sounds to the otclient. Are there any people here intrested in having their own original music to their servers? Just checking!
  2. calveron

    Client for 10.93

    Is there anyone willing to quickly compile a client for protocol 10.93? Im having some issues compiling atm and would be so happy for some help! Thanks!
  3. calveron

    Lua Players online are counted twice.

    Hey folks. I'm having an issue. Everytime a character logs in, it's added twice in the players_online table. One row with the actual player ID and some other row I really don't understand. Anyway, my website counts this as two. Is there any way to fix this?
  4. calveron

    Skillpoint system inside the client. Help.

    As I have it now, you control your skillpoints using an item in-game wich opens a modalwindow. How can I add a window in the client to control it instead?
  5. calveron

    How to show a storage value inside the skill window?

    Hey! I could use some help here. I want to show a specific storage value inside the skill window. I already figured out how to send the information from the server to the client, I just need help with how to show the value inside the client. Any help is appreciated!
  6. calveron

    Companion system.

    I would like to have some help with creating a companion system! My idea is that once you complete a certain quest you are able to hire a companion that will help you around. • You should be able to interact with him with a modal window system. (increase his skills, add items etc.). • He should...
  7. calveron

    Lua Need some help to merge unlockable locations script with my TP scroll!

    So basicly what I want is to merge my TP scroll (Scroll that currently sends you to temple of any town) into something like this: https://otland.net/threads/tfs-1-1-catacombs-teleporter-like-diablo-3-teleport-great-for-rpg-servers.230015/ This is how my TP scroll looks like now: What I want is...
  8. calveron

    Inlcuding unlockable places to my teleport scroll!

    Hi folks! I have a town teleport scroll on my server. When using a book it opens up a window: What I want is, when you click on Edron for example, it opens a new window that shows the locations that you've unlocked. Example: When walking close to cyclopolis you unlock that location. I've...
  9. calveron

    Windows Znote paypal error.

    When people are donating using paypal they wont get any points. the database shows this error: ERROR: Invalid data...
  10. calveron

    Lua Vocation based skillpoint system!

    Hey, so Im using zbizu's modal skillpoint system and Im trying to change it so that depending on your vocation, you can only increase certain skills. Here's the full script -- config --promoted vocations included in function local gainVoc = { [0] = {health = 0, mana = 0, magic = 0, skill =...
  11. calveron

    Solved Adding a storage on first login!

    So, basicly I need help! I have a skillpoint system on my server, each level gives you 1 point. However, I removed rook and now I want players who create their character to get 10 skill points on their first login! Anyone who wants to help me out? :) using TFS 1.1!
  12. calveron

    [Sweden] Bravemans World [10.41] RL map with great features!

    Welcome to Bravemans World! A RL map OT server with great features! IP: bravemansworld.no-ip.org Port: 7171 Client: 10.41 Uptime: 24/7 Host: 100mbit uplink located in Sweden Website: http://bravemansworld.no-ip.org/ Exprate: Stages, starting at 40x ending at 10x Map: Real map including most of...
  13. calveron

    Using item depending on vocation

    So basicly I want to use a book that opens a modalwindow. Depending on your vocation, it will open different windows! Using tfs 1.1 For a mage it should be this player:sendSkillPointsWindow() For a knight it should be player:sendSkillPointsWindow2() And for a paladin...
  14. calveron

    Lua Problems with a TP script.

    Problem solved :) action script: function onUse(cid, item, fromPosition, itemEx, toPosition) local player = Player(cid) if not getCreatureCondition(cid, CONDITION_INFIGHT) then local Destination = ModalWindow(2, "Destination", "Make your choice:") Destination:addChoice(1, "1. Thais")...
  15. calveron

    Haste spell with magic level formula.

    Basicly, the higher magic level you have, the more speed you get from the haste spell. Is it possible? If anyone has this or would be willing to make one for me I would be oh so happy!
  16. calveron

    Problems with a creature script

    Im having some troubles with having 2 npcs with similar quests.. Apperiently when I add the second quest, none of them works. creaturescripts.xml <?xml version="1.0" encoding="UTF-8"?> <creaturescripts> <event type="kill" name="monsterkillrats" script="monsterkillrats.lua"/> <event...
  17. calveron

    Show player town. +rep

    Hello! I need a script that shows the players town that you are looking at. Example: You see bajs (level 666) he is a druid. he is a citizen of venore. plx help :D
  18. calveron

    CreatureEvent Quest to kill monsters. NPC included!

    Well, since I couldn't find any working quest where a npc gives you a mission to kill x ammount of monsters, I decided to make one myself, with a little help and support. Since I got help, I decided to help others and share this :) This quest requires you to kill 200 dragons or dragon lords...
  19. calveron

    Help with this NPC rep+ rep+ rep+

    Im having trouble with my quest npcs. Only one of them responds, wich is the last one I added or the first one I speak to. So there must be something I missed. Can anyone help me? rep+ local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler)...
  20. calveron

    NPC Problem. rep+

    I had no problems with this npc, but then I changed map.. Now the npc wont respond to the words. Whats the problem? sorry if its messy. local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState =...
Back
Top