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

    Solved Player Broadcast system 0.3.6 TFS

    Oh? That's weird... I don't know how to fix it. You really need to put it in the beginning. ---------------------- Oh wait. I did it :p local exhaust = createConditionObject(CONDITION_EXHAUST) setConditionParam(exhaust, CONDITION_PARAM_TICKS, 300000) function onSay(cid, words, param, channel)...
  2. Redseb

    Solved Player Broadcast system 0.3.6 TFS

    Try this. function onSay(cid, words, param, channel) local exhaust = createConditionObject(CONDITION_EXHAUST) setConditionParam(exhaust, CONDITION_PARAM_TICKS, 300000) -- time in seconds x1000 if(param == '') then return true end doPlayerBroadcastMessage(cid, param) return true end
  3. Redseb

    Lua Trainers Auto Warp

    The effect's number. : ) It will be sent to the player.
  4. Redseb

    Lever error

    Can you post your 050-funtion.lua in libs (lines 23, 62 (all about the functions doPlayerGiveItemContainer and doPlayerBuyItemContainer)?
  5. Redseb

    Lua Need help with these luas

    1º. When the player kills the monster named "pythius the rotten", the function will be executed (it will teleport the player who killed it to the x, y, z listed in the function). 2º. When the player kills an monster (in the list), his storage (101001 or 101002 or... 101015) will go up by 1. I'm...
  6. Redseb

    Fast Attack 0.3.6 TFS

    Not fast attack.. But the crature think. Open creature.h and search for: #define EVENT_CREATURE_THINK_INTERVAL Then change the value. like: #define EVENT_CREATURE_THINK_INTERVAL 100
  7. Redseb

    What game engine edoes tibia use?

    If you remember tibia's map, it is saved with no details. Which means you can't distinguish tiles/items.
  8. Redseb

    Lua Weird notrash error

    Man... This script removes those items (Ids: 1387 5023 5024) when you move then to ANY item/tile with ANY aid or uid... That doesn't make any sense to me, but what ever. function onAddItem(moveitem, tileitem, position) if tileitem.actionid > 0 or tileitem.uid > 0 then if tileitem.itemid ==...
  9. Redseb

    Lua Weird notrash error

    I changed tileitem.uniqueid to tileitem.uid
  10. Redseb

    Server window closes automatically

    Try to take a screen shot. You can also remove all edits you've made.
  11. Redseb

    Lua Weird notrash error

    No, I didn't.
  12. Redseb

    Fast Attack 0.3.6 TFS

    Just like Xagul said.. Try clicking very fast in the battle. You will attack fast. You can change it via sources, as Xagul said, but the creature think will affect other scripts too and a lot of other things.. it's a good solution for your problem, but bad for anothers.
  13. Redseb

    Lua Trainers Auto Warp

    Yes. If a player is using a room, playerteleported will be = 1, if not, it will be 0. Then it checks if there is no room avaiable and send a cancel. Did you edit the locations?
  14. Redseb

    Lua Weird notrash error

    Does it happens where it should work? That's a weird script o.O Anyway.. I'm not familiar with 1.0 But I think you should use tileitem.uid I'm not sure if it is causing the error.. but try it. function onAddItem(moveitem, tileitem, position) if (tileitem.actionid > 0 or tileitem.uid > 0) then...
  15. Redseb

    NPC problems

    Any error reports?
  16. Redseb

    Lua Weird notrash error

    We'll need the notrash.lua to help you. Probably, it was something like local config{ ID = 9999 }...... onAddItemblabla ... if id == 9999 then (...) -- it should be "if config.ID == 9999" I mean, it must be an incorrect local.
  17. Redseb

    war of emperium error

    You need to create the monster "guard". If you already have it, make sure you edited the Castle.desde position (or another positions).
  18. Redseb

    XML- Item attribute fist

    That's what I said.. If there is the "weapon type" "fist", then it might be possible to create something just by editing a little.
  19. Redseb

    New Slot

    Extrodus, you didn't undestood him. Yes, you can do it. Sorry, my code::blocks isn't working, so, I cant help you. Try searching for the slots in your sources and in otc sources. You'll need to edit the inventory images, also.
  20. Redseb

    Lua Fishing Scripter needed :P

    You'll need a new function to edit monster's name description... It's not so easy :p I don't have time right now... I'm sorry.
Back
Top