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

    Spell other effect

    in talkactions.xml: find this: (original script, maybe it was this u needed, in that case, don't read the rest) <talkaction access="4" words="/z" event="script" value="magiceffect.lua"/> <talkaction access="4" words="/x" event="script" value="animationeffect.lua"/> and change to...
  2. Swiff

    Monster Unhurried Acarid - untypical defiler boss.

    What is this? Any screenshot or video perhaps, curious about that creaturescript, seems it has some cool dance moves? also "encoding="ISO-8859-1"" what is this?
  3. Swiff

    Key open Magic door

    Here's the script, I tested it and works: actions/scripts/other magicdoorkey.lua function onUse(cid, item, frompos, item2, topos) otherside = {x=241, y=143, z=7} if item2.actionid == 3400 and item2.itemid == 1257 then doTeleportThing(cid, otherside)...
  4. Swiff

    Key open Magic door

    Just a question, are you not suposed to leave? Since the key is destroyed, u can't open the door again if you want to leave O.o
  5. Swiff

    Lua Quests Storageid

    Which quest are you looking for specificly? I've done all my quests reward storages in actions/scripts/other. For example: I put unique id on a chest in my mapeditor: 1017 and then in actions.xml: <action uniqueid="1017" script="other/questchest17.lua" /> and then I make a .lua named...
  6. Swiff

    [LUA] Create Boss from fishbowl, summon error

    In the first script u posted you have doSUmmonCreature and doSummonMonster, is that the original?
  7. Swiff

    Blessing Help

    check if your deathLostPercent = is also default value
  8. Swiff

    Action Scripts

    Maybe your potionscript is listening to another script, check so that the potions only call for the script you have posted, since there is no "getPlayerByID" in this one. to be clear, the potions are fine? They work as intented? Except that you get this console error?
  9. Swiff

    Starting Server problem

    Try to change your ip in the ip changer to your static IP, your global IP or 127.0.0.1 Server runs fine right? The problem is that you can't connect to it?
  10. Swiff

    Compiling I'm having trouble compiling TFS

    I would suggest different source or different compiler. Unless you can tell me what source you downloaded, This compiler is recomended: http://otland.net/threads/compiling-windows-how-to-set-up-a-compiler-noob-friendly-tutorial.193878/#post-1871450
  11. Swiff

    Linux Problem help fast please frezzing

    so website and client is freezing, not the server? Then it's a connection issue. Like if you're using apache maybe that is what is crashing. you should start whatever programs you need to run your ot, and then see which ones stop working, this way you can find where the fault is
  12. Swiff

    [LUA] Create Boss from fishbowl, summon error

    local storage = 56487 function onUse(cid, item, fromPosition, itemEx, toPosition) local desc = getItemAttribute(item.uid, 'description') == nil and getItemInfo(item.itemid).description or getItemAttribute(item.uid, 'description') if not isCreature(itemEx.uid) then if getCreatureStorage(cid...
  13. Swiff

    Linux Problem help fast please frezzing

    Freeze and application says it stoped working/answering? It could be anything. Most likely from bad script that doesen't want to cooperate with the server functions as dom said
  14. Swiff

    Compiling damage owner?

    Thanks again! Not sure if I did it correctly, because it doesen't do any added damage: in mveoemnts.xml: <movevent type="DeEquip" itemid="7708" slot="ring" event="function" value="onDeEquipItem"/> <movevent type="Equip" itemid="7708" slot="ring" event="function" value="onEquipItem"/>...
  15. Swiff

    Monster summons do not die....??

    Maybe, but can you tell us what distro you are using, give us a copy of your orshabaal and demon script. While you're at it, check if player summons will die.. Not sure if they are related but could be good for someone that knows:)
  16. Swiff

    Compiling damage owner?

    I appreciate all your help tetra! However, I might've missunderstood this script, but the feature I am trying to implement is to be able to give the player bonus damage depending on what storage he has, or what item he has equipped. for example: function onLogin(cid) if...
  17. Swiff

    Monster "absorb" player spell

    Anyone know how to do this? Or can tell me if it's in TFS alredy (03.6pl1)?
  18. Swiff

    Compiling damage owner?

    I don't really have the knowledge to make a script like that. Most scripts I've been doing is just editing, copying some lines from another script that I think I need, sometimes it works... onStatsChange would be a creaturescript I suppose. But that's about all I could figure. With that script...
Back
Top