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

    Real-Map | Features

    As 'gamersdont' said but thatsnot easy. You have to make the players comeback and play even if you are playing alone. There are alreadu servers like that but their owner are only POLISH people. I really dislike polish servers with full of players (1000+) the first day and thr next day, like...
  2. WarOfTheTitans

    [Lithuania] Camual | Custom Client | OPEN-BETA

    Great server :) Just need more players :)
  3. WarOfTheTitans

    [Request] Summoning Spell For Totoms

    I have this script, just sellin' it
  4. WarOfTheTitans

    Login.lua EOF Error

    local config = { loginMessage = getConfigValue('loginMessage'), useFragHandler = getBooleanFromString(getConfigValue('useFragHandler')) } function onLogin(cid) local loss = getConfigValue('deathLostPercent') if(loss ~= nil) then doPlayerSetLossPercent(cid, PLAYERLOSS_EXPERIENCE, loss *...
  5. WarOfTheTitans

    Good idea's for Smiley's?

    No they suck! Only old forums uses those smileys.
  6. WarOfTheTitans

    Otlanders!

    Here you go: Tutorials - Tibia OTS Lua Shop Very useful beginner boost for ot understanding and lua scripting :)
  7. WarOfTheTitans

    How am I failing with this script i want the rake to transform grass to dirt

    No... You cannot tranform ground because when you tranform, you remove item and place another one. You cannot remove a tile because it will be void. So you have to create a ground above the existing ground: doCreateItem(103, 1, pos) I think.
  8. WarOfTheTitans

    Introduction to OTClient.

    Really nice! So you mean that the OTclient allows me to change the sprites, the equipmentbar from right to left and so on, without having to let people downloading my client with all these features as it's now. If it's like that, I really look forward to this!
  9. WarOfTheTitans

    item On use to have a constent Healing affect for period of time

    function onUse(cid, item, fromPosition, itemEx, toPosition) local exh = { storage = 1000, time = 1200 } local timePerHeal = 1000 local healExpires = 1200 local amountP = 30 local function exHeal (cid, amount, i) while i > 0 then doCreatureAddHealth(cid, amount)...
  10. WarOfTheTitans

    [Request] Summoning Spell

    local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE) setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, false) function onCastSpell(cid, var) local summon = "Skeleton" local maxSummon = 6 if(table.maxn(getCreatureSummons(cid)) < 1) then for i =...
  11. WarOfTheTitans

    1 Task Npc (rare)

    It's because you have to change the storages.
  12. WarOfTheTitans

    [NPC]: Task

    Because, a player has the storage 100 for firstitems.xml. Change all the storages.
  13. WarOfTheTitans

    Un-named custom project.

    I really like that you are giving the money to charity! Btw, you have thinked through the server features very good. Keep it up!
  14. WarOfTheTitans

    Full hp/mana on lvl up

    Creaturescripts/scripts/... .lua http://otland.net/f481/i-need-scrypt-162241/ How to register it in login.lua? Like this: Go to creaturescripts/scripts/login.lua: Find: return true end At the bottom of the file. And put this above it: registerCreatureEvent(cid, "XXXXEVENT NAMEXXX") DONE!
  15. WarOfTheTitans

    whats wrong with this script, if u use it twice it debugg client.

    local storage = 35000 local aid = 5681 function onUse(cid, item, fromPosition, itemEx, toPosition) if getPlayerStorageValue(cid,storage) == 19873 then setPlayerStorageValue(cid,storage,19874) doPlayerSendTextMessage(cid,MESSAGE_INFO_DESCR,"Yo u have found a silver key")...
  16. WarOfTheTitans

    Summon monster with your name

    This has been posted before: http://otland.net/f132/summon-summon-change-name-yours-121538/ But it has a problem with the "'S"...
  17. WarOfTheTitans

    [NPC]: Task

    check if you have installed it good.
  18. WarOfTheTitans

    Set storage, and add +1 value

    http://otland.net/f16/command-doplayerstoragevalue-need-help-161511/#post1555741 function onSay(cid, words, param, channel) local g = 100 local k = 3694 doPlayerSendTextMessage(cid, 19, "You have killed ".. getPlayerStorageValue(cid, k) .." / ".. g .." rotworms.") return...
  19. WarOfTheTitans

    Lua Array tables to Dictionary tables

    t = { [1] = "1", [2] = "2", [3] = "3", [4] = "3", [5] = "5" } Edit: Nvm... [didn't read your thread properly], sry
Back
Top