• 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. Zuma Master

    MineCraft

    dat necro
  2. Zuma Master

    Some Rquests

    That is also possible, but it's a workaround not a fix. I strictly meant how to fix the debugging.
  3. Zuma Master

    Some Rquests

    You can't change the debugging without editing the client's "experience" and "level" fields respectively. I think Summ can tell you more about this.
  4. Zuma Master

    Solved NPC problem

    I remember someone else had a very similar problem to this one a couple of days ago. Maybe search through the last ~5 pages in the Support board?
  5. Zuma Master

    Wellington, New Zealand Earthquake's 2013

    So how did it end up?
  6. Zuma Master

    Lua Spell Error

    local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE) setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_HITBYPHYSICAL) setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_THROWINGSTAR) local condition =...
  7. Zuma Master

    How do i update TFS?

    By donating a few for OtLand premium status. Note: Yours is fine!
  8. Zuma Master

    I want to know the opinions of some of Otland's people about this.

    @Lava Titan, You will get to see that for yourself :) (Note: The server is 100% customized, the map is made from scratch, it is not based on any datapack, and all the scripts have been typed letter by letter by me)
  9. Zuma Master

    [9.6+] Storms Sprite & Dat Editor

    Based on the UI, Add sprite > Edit to import and change .dat stuff. Extract all to export.
  10. Zuma Master

    Teleport from position

    I know nothing about that language he typed in (Polish?), so I can't understand what he wants to do with it... I thought he was actually using the function inside an event script...
  11. Zuma Master

    Teleport from position

    Na 5tyk, what do you want to do with this script?
  12. Zuma Master

    Teleport from position

    Then try this, function wyrzucl() local cid = getTopCreature({x=996,y=995,z=5}) local pos = {x=1002,y=1001,z=7} if(getTileItemById({x=996, y=997, z=5}, 2696).itemid == 2696) then doBroadcastMessage("Ser!", MESSAGE_EVENT_ADVANCE) if((getThingPos(cid).x == pos.x) and (getThingPos(cid).y...
  13. Zuma Master

    Teleport from position

    function wyrzuc() local cid = getTopCreature({x=996,y=995,z=5}) local pos = {x=,y=,z=} if(getTileItemById({x=996, y=997, z=5}, 2696).itemid == 2696) then if(doTeleportThing(cid, pos)) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Niestety, przegrales :(") end...
  14. Zuma Master

    Teleport from position

    doTeleportThing(cid, pos)
  15. Zuma Master

    boss kill creaturescript

    Okay I will try to explain: The creaturescript is attempting to get the value of a storage in order to broadcast (you changed it to 70200). This means that you must also do the edits to the movement scripts.
  16. Zuma Master

    getPlayerPosition

    Welcome :)
  17. Zuma Master

    Spell to rebirth

    I will give you an example of a spell that will not work unless the player who uses it has xx amount of rebirths: local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_HEALING) setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE)...
  18. Zuma Master

    getPlayerPosition

    1: getTopCreature(pos) 2: if(getTileItemById({x=996, y=997, z=5}, 2696).itemid == 2696) then
  19. Zuma Master

    boss kill creaturescript

    I assume this is the script from Masiyah.se? I think it needs a movement script too, (a teleport, onStepIn() function) that adds a storage to a player. Here try this: Step 1: Make a teleport on your map editor and rightclick it, then click properties, then set in the positions the position of...
  20. Zuma Master

    Polymorph rune/spell

    What distribution are you using at the moment? TFS_02 or TFS_03?
Back
Top