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

    Remere map editor deleting teleport settings.

    On my server stairs, door and stuff like this is supposed to work as teleports. Sometimes it works, sometimes when I set destination for one teleporting item, random other teleport gets its settings cleared. Anyone else experiencing this issue?
  2. Slime

    Drawing a sprite that is always on top.

    I want to draw a cursor on the monster that player is currently attacking, instead of default red square. If a sprite is bigger than 32x32 it covers the cursor. Wat do? if(m_showStaticSquare && animate) { auto datType = g_things.rawGetThingType(159, ThingCategoryItem)...
  3. Slime

    Drawing a looktype on a creature based on currently equipped headgear.

    I need some tips on how to draw an additional overlay based on the item a character is wearing in the head slot. I've been looking for solution inside mapview.cpp and creature.cpp, but nothing comes to my mind. My guess would be that I should send additional data from server about ids of helmets...
  4. Slime

    [RME] Autoborder doesn't work on water.

    grounds.xml <brush name="grass" type="ground" server_lookid="104" z-order="8000"> <item id="104"/> <border align="outer" to="none" id="1"/> </brush> <brush name="sand" type="ground" server_lookid="105" z-order="8000"> <item id="105"/> <border...
  5. Slime

    TFS 0.X Reading game locations from separate map files?

    Would it be possible to chunk my map into smaller .otbm files, like Diablo has spearate maps for each floor dungeon for example? It would be cool if players could use a command that shows current map and their x,y position, that would make finding npcs and other stuff way easier. My server is...
  6. Slime

    Diminishing sprite size to 16x16px.

    How hard would it be and where should I look for the code? I know most people want to resize to 64x64 or more to have HD Tibia, but I want to recreate the 8bit console feel as well as possible. My goal is to display 16x14sqms that are 16x16px each. I don't care about tools for now, I could...
  7. Slime

    Need help with enabling extended opcodes TFS 0.3.6pl1

    I tried to patch the files with TortoiseSVN, but it didn't work. I decided to copypaste the blocks of code myself, it still didn't compile, so I started editing all the stuff a non-programmer can edit like changing _type to m_type or LuaInterface to LuaScriptInterface to fit 0.3.6, hope you...
  8. Slime

    Camera position (revealing tiles that are on a higher level)

    When there's a room that has a roof and you are standing like 2 squares away from it, the roof disappears and you can see what's inside the room. I wanted to change in a way that you'd have to stand directly under the roof to make it disappear. I guess this part of the code is responsible for...
  9. Slime

    Why open source modules are a bad idea.

    I didn't really like an idea of money being a "physical" item in game. Because of the kind of server I'm developing, I decided to change 'soul' into 'gold' and make it as a main currency in game. Now I'm adjusting things to work and I've stumbled across this: at the moment I did no source edits...
  10. Slime

    How to remove item stack limit (more than 100 items in stack)

    I'm using 0.3.6pl1 + OTClient and I'd like to change the amount of items that you can stack, for example 5k items in one stack instead of 100.
  11. Slime

    Nickname, health bar position and other stuff

    I'd like to change some things but I have almost no knowledge of C++, maybe someone will help me, maybe not. 1)Nicknames of NPCs are hidden. 2)Nicknames of monsters and players are displayed when you point mouse cursor on them. 3)You can only see your own health bar and health bars of your...
  12. Slime

    Problems with creaturescripts on 0.3.6

    For some reason there's kind of "limit" for creaturescripts or something, so when I add a new creaturescripts, one of the previous scripts just stops working. I didn't use that much creaturescripts until now. Tibiando just stopped sending music and level points system stopped adding points on...
  13. Slime

    Tibiando nie gra w creaturescriptach

    Może ktoś mi pomoże z tym fantem. Tibiando działczy, jeśli chodzi o odtwarzanie muzyki według kordów, ale nie wysyła jakichkolwiek innych dźwięków. 0 errorów w konsoli, ale dźwięk nie zostaje wysłany do gracza. TFS 0.3.6pl1 attacksound.lua function onCombat(cid, target) if isPlayer(cid) and...
  14. Slime

    Disabling the need to consume food to regen and slant walking

    I want players to just regen naturally without consuming food and also to disable slant(I don't know if this is the right word) walking - you know, the one on numeric keyboard. Only walking north, south, east, west allowed.
  15. Slime

    Lua Spell casting like in Ragnarok Online

    I'm posting this since it may be useful for someone and also it needs some improvement (which I can't really do, because I'm a beginner at scripting). The code itself is a bit chaotic: local combat1 = createCombatObject() setCombatParam(combat1, COMBAT_PARAM_TYPE, COMBAT_ICEDAMAGE)...
  16. Slime

    [SOLVED]Terrible graphical bugs

    When I log on my gm it lags and goes apeshit. As you can see on other characters it doesn't show their outfit sprite (well in one case it does, I don't really know why) and sometimes it uses pink as transparent color and sometimes not. I'm running precompiled 32 bit OTC on my 64bit Win7 so maybe...
  17. Slime

    npcHandler:releaseFocus(cid) problem

    For some reason it doesn't work, you can spam yes and npc will spam his answers. local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid)...
  18. Slime

    Tibiando doesn't play anything besides music.

    I have the lua socket and GetSocket function installed, but Tibiando doesn't play any sound effects besides logout sound and music by coordinates. For example I tried to implement this...
  19. Slime

    Client modification like Tibianic

    I was just wondering how these guys did it. It isn't a modified otclient, but modified cipsoft client. It has some additional functions like automatic patcher, built in movie recorder and a couple of other cool stuff. Is this modified by injecting a custom .dll or what? Would it be possible to...
  20. Slime

    NPC Looking direction

    Is there any way to change the direction NPC is looking at right after it respawns? Most npcs on my server don't even move and when they respawn they are always turned north.
Back
Top