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

    Modules

    Random Server Owner using OT Client: Oh look, another server with an insane amount of customization in the modules of it's OTClient! -copies and pastes all the modules- Now I have an amazing customized OTClient too! Random Server Player: Oh, I don't like this, let me see if I can screw with the...
  2. D

    emoteSpells Talkactions

    That would require you to delve into the source more than likely; depending on which distro you're using.
  3. D

    A Chest that you can use once every 2 days

    Just so you know, mine is more configurable since your variables are "x, y, z" which are usually used for positions in OTs. First thing you learn in programming/scripting; you need to make your variables have meaningful names.
  4. D

    A Chest that you can use once every 2 days

    That's exactly what he requested.
  5. D

    A Chest that you can use once every 2 days

    local wait = 60 * 60 * 48 -- 48 hours local storage = 1452 -- The storage id of the chest local item = 100 -- The item in the chest function onUse(cid, item, fromPosition, itemEx, toPosition) if(exhaustion.check(cid, storage) == false) then exhaustion.set(cid, storage, wait)...
  6. D

    CreatureEvent Addon "Bonus System"

    http://otland.net/f82/outfit-addons-stats-system-150072/ <-- Basically the same system, just much more revised, "bug" free (Removed the ability for staff to use it), yet much more basic. If enough interest is shown I can implement more features.
  7. D

    Help me find looktypes please.

    http://otland.net/f83/monster-looktypes-31774/ ....? P.S. That's all the looktypes, monsters share looktypes... Regardless, if you read the latest edit on the post, 9.1 looktypes have been added, and the difference between 9.1 and 9.44 are: Updates/9.4 - TibiaWiki - Quests, Items, Spells, and...
  8. D

    TalkAction Exiva "NPC

    Are you just releasing already released scripts? http://otland.net/f81/exiva-npc-name-49396/
  9. D

    CreatureEvent Outfit/Addons Stats System

    Nope, it does not execute on Login. As I stated in my original post, it has been tested. It only executes when you change your outfit.
  10. D

    CreatureEvent Outfit/Addons Stats System

    The only works with full addons, whereas with mine it works dynamically based on your addons.
  11. D

    CreatureEvent Outfit/Addons Stats System

    This was created for and tested on 0.4. Add to creaturescripts.xml - <event type="outfit" name="OutfitStats" event="script" value="outfitstats.lua"/> Create outfitstats.lua - -- Scripted by Aziz, owner of Mystic Storm -- -- WORKS WITH CUSTOM OUTFITS, JUST DON'T CHANGE THE NAME...
  12. D

    Rumors about CipSoft hackeds servers in version 7.72.

    No, that person will be a spoonfeeder. >.>
  13. D

    Intel HD 3000

    Realistically, if you're willing to sacrifice the portability, you could just build a tower, or buy a pre-built tower instead of a laptop.
  14. D

    Rumors about CipSoft hackeds servers in version 7.72.

    He's probably trying to come up with a great excuse like "It's on my external drive, not my actual computer."
  15. D

    Rumors about CipSoft hackeds servers in version 7.72.

    Lol, just so everyone can stop acting tough, here's the NPC files. (Literally downloaded them like 2 seconds ago) Some NPCs: # GIMUD - Graphical Interface Multi User Dungeon # adrenius.npc: Datenbank für den Wüstenpriester Adrenius (Desert) Name = "Adrenius" Sex = male Race = 1 Outfit =...
  16. D

    Its been a long time since TFS is out and...

    He's asking why there isn't a fully customizable client. Basically asking the TFS developers to reverse engineer the Tibia client, kind of like NATC, but also change the Tibia.SPR and Tibia.DAT to .XML files so that they will be easier to edit. To sum up his request: He wants TFS developers to...
  17. D

    OnPush [ Help Please ]

    <movevent type="StepIn" itemid="(tileid)" event="script" value="walkback.lua"/> --One for every tile id in the training area local fromPosition = {x=1000, y=1000, z=7} local toPosition = {x=2000, y=2000, z=9} function onStepIn(cid, item, position, lastPosition, fromPosition, toPosition...
  18. D

    OnPush [ Help Please ]

    No, the actor is the person pushing, the cid is the person stepping in. Although you are right, the person pushed will teleport to their last position.
  19. D

    OnPush [ Help Please ]

    You just need to do some tweaks, but that will work.
  20. D

    OnPush [ Help Please ]

    Actor means the person that is doing the "Action" in this case the person pushing the character, and cid is the person being pushed. Thus if the person pushing is not the person being pushed it will put them back onto the spot. In simple terms, you can not be pushed onto a tile with whatever...
Back
Top