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

    Graphic Designer Senacia Sprite Job Thread [PAID]

    Intro: Senacia is a project I've been working on for almost 3 years now. You can find it over at www.senacia.com. The idea is to take Tibia, and re-create it in a new engine, Unity3D. The project is doing very well, and I'm happy to take questions (please PM me). Subject: Since I'm not using...
  2. Arn

    onCast Not Working

    Hi. My onCast creature event is not working. Here is my code. (Rev 5960 Version 0.3.7) login.lua registerCreatureEvent(cid, "onCast") creaturescripts.xml <event type="cast" name="onCast" event="script" value="custom/onCast.lua"/> onCast.lua function onCast(cid, target) print ("working")...
  3. Arn

    [CreatureEvent] onCast Not Working

    Hi. My onCast creature event is not working. Here is my code. login.lua registerCreatureEvent(cid, "onCast") creaturescripts.xml <event type="cast" name="onCast" event="script" value="custom/onCast.lua"/> onCast.lua function onCast(cid, target) print ("working") return true end spells.xml...
  4. Arn

    [DISCUSSION] setStorage vs Global Variables - Speed Test

    Hi all, I'm working on a new OT, and I wanted to figure out which way of storing player information was faster. You can either do something like this: setStorage(100, 1337) or you can store the same value in a global variable: GLOBAL_X = 1337 Now, I wrote two scripts in talkactions that...
  5. Arn

    [Mod] Advanced Hotkeys

    Hi all! My dream the last few weeks has been to play Tibia with the same kind of controls that we see in other MMORPGS. That means being able to use WASD (or any other movement keys) to move, while using other hotkeys (ex: QERFCXZT) to use spells or items. Finally, with the help of the...
  6. Arn

    [Mod] Mega Hotkeys Development

    Project Goal Mega Hotkeys is an (open source) OTClient module that will hopefully allow for more flexible control over tibia. It aims to give control over movement and actions (spells and item usage) in the exact same way as the current real tibia flash client. Below is a sample UI that I have...
  7. Arn

    Hotkey Question

    Hi. I'm looking into maybe using this new client and writing some code for it. However, I want to know if its possible to create a hotkey system that is similar to what we have in the real tibia flash client? This would mean modifying how the chat works, developing the UI, and adding...
  8. Arn

    Arn's Mapping Thread

    Hello and welcome to my mapping thread. About a month ago I launched the server Arnia, and since release, I've been working hard to constantly expand on the server and add new hunting areas, recipes, items, spells, quests, and the like. I'll be using this thread as a way to get feedback on...
  9. Arn

    Lua Invite House Guest Script

    Using TFS 0.2.13 pl1 I'm trying to write a simple script that will add a guest to the house. So far, it seems impossible. Please take a look at the script, and I will +rep anybody that can help. function onSay(cid, words, param) local house = getHouseByPlayerGUID(getPlayerGUID(cid))...
  10. Arn

    Solved Simple Item Question

    I have item (small sapphire). Item id: 2146. Currently, when you right click on it, you only get the option to use with. I want to just use it. What I have tried. 1. actions.xml: added allowfaruse="0" which did nothing 2. edited items.otb with otitemeditor. Changed usable from...
  11. Arn

    Lua Get Magic Level / Get Skill

    Hello, On my server, there are some abilities and some items that give magic level percent. For example, your magic level 100, drink mastermind potion, and now your at 120. The problem I have is that getPlayerMagLevel will still return 100, and not 120. Now, I could just check to see if the...
  12. Arn

    [FRANCE] ARNIA 9.54 100% Custom Server

    Hello and welcome to the Arnia launch announcement thread! Server Information: Client: 9.54 IP: arnia.org OR 5.39.52.208 Port: 7171 Server hosted in France, while being developed in the USA for an English speaking demographic. Website | Forum About the Server: Arnia is a brand new Open...
  13. Arn

    Lua Simple LUA Item Question

    I'd like to be able to call an items attack or defense from inside a script. How can I do this? Example: local item = 3964 doCreatureSay(cid, item.attack .. " " .. item.defense, TALKTYPE_SAY) Very simple although the above obviously doesn't work. So, how can I do it? Thank you...
  14. Arn

    Lua Simple string.gsub question

    Hello! I'd like to replace this string: !craft "tutorial axe" to this string: !craft tutorial axe As you can see, I just want to replace the " with a blank space or just remove it entirely. Thank you for reading, and please help. Will +rep! -Arn
  15. Arn

    Lua Simple Global Variable Problem

    Hi, I'm trying to get a global variable in a strange way. Please take a look and see if you can tell what I need to do. (will +rep) This is the recipe for the weapon. --8000 RECIPE_CLERICAL_MACE = { itemid = 2423, mats = {5880}, count = {10}, cost = 300...
  16. Arn

    Weapons not working / Counts as fist weapon

    Hello and thank you for reading, I have a strange bug on my server that at some point, weapons stop working. Ranged weapons don't fire, all melee weapons count as fist skill. It used to be caused by some errors (which I have fixed), but it still continues and no errors are generated. Is...
  17. Arn

    Windows VPS Question

    I'm looking to get a VPS for a server soon. I need something that has an incredibly high upload/download speed. I don't mind paying good money, but I need a reliable server. Does anybody know of a Virtual Private Server with a high upload/download speed? Thank you! -Arn
  18. Arn

    Lua Tile not Found - Error

    Hi, I'm doing a spell where I sometimes call getThingFromPos(pos). The problem is that if a tile is above ground and with nothing there, then the spell loops, generates errors, and crashes the server. Is there any way I can check a position to see if its been set? -TFS 0.2.12 -Arn - -...
  19. Arn

    [USA] 9.54 100% Custom Server - Beta Testing begins Jul 25th, 2012!

    Hello and welcome to the Arnia BETA TESTING thread. We are currently looking for people who are interested in testing the server, looking for bugs, trying to find balance problems and exploitations. Before we get into all of that, let me tell you a bit about the server. BETA IS CURRENTLY OVER...
  20. Arn

    In-Game Market not working

    Hi, I'm using TFS 0.2.12 and the in-game market system isn't working. I haven't a clue why either. Yes its enabled. Premium required is turned off even though my character has premium. Won't let me post anything. Any help? -Arn
Back
Top