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

    Problem with a new laptop

    Thx for the help, but I don't think a 2 months old laptop needs CCleaner and Tuneup I think that the problem with the hardware like fucked up GPU or HDD something like what u said. I had to download CCleaner on my older computer 4 years after I bought it not 2 months I have like 6 things only...
  2. Cyro

    Best lua tutorial?

    After reading the lua.org tutorial this tutorial may help u to get in Tibia lua Scripting guide
  3. Cyro

    Cannot make the owner account

    it differs from a server to server try changing numbers and btw it is a wrong section
  4. Cyro

    Action Magic level scroll

    you have a problem with this. read the word u declared you said local add_skill,amount = SKILL_MAGIC,1 this means: When I say add_skill you should write SKILL_MAGIC and when I say amount you should write 1 in the script u wrote doPlayerAddSkill(cid, add_magicl, 1) you never said when I write...
  5. Cyro

    Problem with a new laptop

    So.. I bought a new laptop HP M6-1091 2 months ago Specs CPU: Intel core i5 - 3210 2.5GHz GPU: Amd 7670M 2 GB dedicated + Intel HD Graphics 4000 Ram: 6 GB After 2 months " This week " my laptop started freezing suddenly. This happened 3x up till now 2x without opening any game or anything...
  6. Cyro

    Happy Bday to me

    Happy birthday :))
  7. Cyro

    make a new potion

    local MIN_HEALTH = 1000 local MAX_HEALTH = 2000 local MIN_MANA = 1000 local MAX_MANA = 2000 local EMPTY_POTION = 7636 local exhaust = createConditionObject(CONDITION_EXHAUST) setConditionParam(exhaust, CONDITION_PARAM_TICKS, (getConfigInfo('timeBetweenExActions') - 100)) function...
  8. Cyro

    help with mod plz

    add this to ur login.lua function onLogin(cid) registerCreatureEvent(cid, "Inquisition") return true end and change the mod to <?xml version="1.0" encoding="UTF-8"?> <mod name="Inquisition" version="2.0" author="Tommy" contact="[email protected]" enabled="yes"> <config...
  9. Cyro

    Paypal limited

    Nop, I am sure you can't. Maho law kan mal 7alal.. mknsh hydee3
  10. Cyro

    Help with a Script

    1. Nothing, I forgot that sorry. Here it is: local level = getPlayerLevel(cid) local mana_min, mana_max = (level * 4), (level * 6) function onUse (cid, item, fromPosition, itemEx, toPosition) if isPlayer(itemEx.uid) and level >= 300 then doCreatureSay(itemEx.uid, "Aaaah.."...
  11. Cyro

    Help with a Script

    local level = getPlayerLevel(cid) local mana_min, mana_max = (level * 4), (level * 6) function onUse (cid, item, fromPosition, itemEx, toPosition) if isPlayer(itemEx.uid) and level >= 300 then doCreatureSay(itemEx.uid, "Aaaah..", TALKTYPE_ORANGE_1) doSendMagicEffect(getCreaturePosition(cid)...
  12. Cyro

    Broadcast players NEW RECORD

    function onRecord(current, old, cid) db.executeQuery("INSERT INTO `server_record` (`record`, `world_id`, `timestamp`) VALUES (" .. current .. ", " .. getConfigValue('worldId') .. ", " .. os.time() .. ");") addEvent(doBroadcastMessage, 150, "New record: " .. current .. " players are logged in."...
  13. Cyro

    help with mod plz

    <?xml version="1.0" encoding="UTF-8"?> <mod name="Inquisition" version="2.0" author="Tommy" contact="[email protected]" enabled="yes"> <config name="inqusitionFunctions"><=!=[=C=D=A=T=A=[ local config = { timeToRemove = 180, -- seconds message = "Go into the teleporter...
  14. Cyro

    help with mod plz

    <?xml version="1.0" encoding="UTF-8"?> <mod name="Inquisition" version="2.0" author="Tommy" contact="[email protected]" enabled="yes"> <config name="inqusitionFunctions"><=!=[=C=D=A=T=A=[ local config = { timeToRemove = 180, -- seconds message = "Go into the teleporter...
  15. Cyro

    New hosting service soon!

    Didn't know that, sorry. I didn't want to be offensive tho, I just stated my opinion :) I am actually thinking of buying the service if it is with a good price
  16. Cyro

    New hosting service soon!

    I still don't think being popular here or doing something great like an AAC makes u trustworthy. There was a global mod here "old one" who was a scammer "not to mention names" :o and elf is nearly a one w/e don't lets talk about it I can actually recommend this service as Gesior.pl once hosted...
  17. Cyro

    New hosting service soon!

    Got the same question as this noob ghost Wondering why they are recommending a service that they never used :O Edit; ah I hope it will be :)
  18. Cyro

    Need help with mana rune for pally

    problem was with the comma @up this one will work btw, local level, mlevel = getPlayerLevel(cid), getPlayerMagLevel(cid) works too
  19. Cyro

    Need help with mana rune for pally

    this is because i missed a bracket.. sorry :) local mana_min = (level * 5) + (mlevel * 3) - 55 local mana_max = (level * 6) + (mlevel * 8) local health_min = (level * 5) + (mlevel * 3) - 55 local health_max = (level * 6) + (mlevel * 8) local level, mlevel = getPlayerLevel(cid)...
  20. Cyro

    Need help with mana rune for pally

    local mana_min = (level * 5) + (mlevel * 3) - 55 local mana_max = (level * 6) + (mlevel * 8) local health_min = (level * 5) + (mlevel * 3) - 55 local health_max = level * 6) + (mlevel * 8) local level, mlevel = getPlayerLevel(cid), getPlayerMagLevel(cid) function onUse (cid, item...
Back
Top