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

    Quick looting work?

    I can't get quick looting to work on the real tibia br ot. nvm, outdated.. new files work.
  2. Nightimarez

    missing looktype 10.98 tfs

    most of the new looktype give me debug. what do i gotta update to get golden outfit and all that.
  3. Nightimarez

    Teleport spell

    I need a spell that looks something like this. local target = getPlayerByNameWildcard(param) function onCastSpell(cid, var) if(param == '') and (not getTileInfo(fromPosition).protection) then doTeleportThing(cid, target) else doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Cant...
  4. Nightimarez

    Dash spell, but for 9.60

    So I have this script and it works for the old TFS, but not for the new ones. Can anyone fix it? local t = { squares = 3, effects = {CONST_ME_POFF, CONST_ME_ENERGYAREA} } function onCastSpell(cid, var) local v, pos, dir = 0, getThingPos(cid), getPlayerLookDir(cid) for i = 1...
  5. Nightimarez

    [USA] Thais War 9.60

    Mortalwar.no-ip.org 7171 9.60 Hey, Sora here. So I made a War OT. Hope you guys like it :D Download our custom client from Home - War OT You receive levels and soul orbs by killing people. You can upgrade your items by clicking use on them. You start at level 200, if you die, your...
  6. Nightimarez

    Storage value highscores

    So every time a player kills another player, he gets +1 value of a storage. I'd like a highscores for the value of certain storage.
  7. Nightimarez

    Players cant auto attack if they have both addons

    When you take out an addon, it starts attacking again. You just can't have two addons on. Anyone familiar with this on Crying Damnson? <?xml version="1.0"?> <outfits> <outfit id="1"> <list gender="0" lookType="136" name="Citizen"/> <list gender="1" lookType="128" name="Citizen"/>...
  8. Nightimarez

    Frag reward depending on skull

    local loot = 5944 function onKill(cid, target, lastHit) if (getCreatureSkullType(target) == 5) then local item = getPlayerItemById(cid, true, loot) if item.uid == 0 or item.type == 100 then doPlayerAddItem(cid, loot, 1) else doTransformItem(item.uid, loot, item.type + 1)...
  9. Nightimarez

    Give skull depending on storage value

    Let me explain a little, this script is suppose to give you a skull depending on the value of a storage. In this case, the storage is 3696. Values will represent the skull. So the values will be 1, 2, 3, 4, and 5. 1 is yellow skull, 2 is green skull, 3 is white skull, 4 is red skull, and 5 is...
  10. Nightimarez

    Set storage, and add +1 value

    So I want to make a script that gives you a storage, and keeps adding + 1 to its' value, but I don't know the formula. I imagine it would be something like this, but I'm messing up on the +1 part. function onKill(cid, target, lastHit) if isPlayer(target) then setPlayerStorageValue(cid, 3694, +1)...
  11. Nightimarez

    Add soul orb on monster kill, not summons.

    local loot = 5944 function onKill(cid, target, lastHit) if isMonster(target) then local item = getPlayerItemById(cid, true, loot) if item.uid == 0 or item.type == 100 then doPlayerAddItem(cid, loot, 1) else doTransformItem(item.uid, loot, item.type + 1) end end return...
  12. Nightimarez

    Paralyze with exhaustion.check

    Paralyze rune local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TARGETCASTERORTOPMOST, true) setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_RED) local condition = createConditionObject(CONDITION_PARALYZE) setConditionParam(condition, CONDITION_PARAM_TICKS...
  13. Nightimarez

    Teleporting spells

    A spell that teleports your target to certain location. A spell that teleports your target to you.
  14. Nightimarez

    Teleports stacking players

    When you go into a teleport, it places the player on top of another, any way to make so you appear next to them or something?
  15. Nightimarez

    Shorter toPosition x, y, z.

    Rope formula for example, but can't be used for my method. if toPosition.x == CONTAINER_POSITION or toPosition.x == 0 and toPosition.y == 0 and toPosition.z == 0 then return FALSE Does anyone know the formula to get the coordinates from the player's house? I'm trying to make something...
  16. Nightimarez

    Shorter toPosition x, y, z.

    Rope formula for example, but can't be used for my method. if toPosition.x == CONTAINER_POSITION or toPosition.x == 0 and toPosition.y == 0 and toPosition.z == 0 then return FALSE Does anyone know the formula to get the coordinates from the player's house? I'm trying to make something like...
  17. Nightimarez

    Create house teleport

    Close.
  18. Nightimarez

    Create house teleport

    Close.
  19. Nightimarez

    Create item, then decay it.

    So I made a script that makes an item. It works, but the item doesn't decay. When I make the item with /i 21950, it does decay. function onUse(cid, item, fromPosition, itemEx, toPosition) doSendMagicEffect(getPlayerPosition(cid), CONST_ME_FIREAREA) doCreateItem(12950, toPosition) end...
  20. Nightimarez

    Query command to delete inactive guilds

    Can anyone make a xampp query command that deletes guilds of leader's that haven't logged on for like a month? DELETE FROM guilds WHERE ownerid < lastlogin < UNIX_TIMESTAMP() - 30*24*60*60 I tried this, but I failed. I know it has to direct it back to the player's last login, but it complicates...
Back
Top