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

    Custom Heal Friend

    Hello, I made a script of a new heal spell like exura sio where the caster is healed at the same time the target is (blocker for example). The problem is: doesn't matter where the target is located, behind a wall or far away from caster, the spell is ignoring the distance or walls. I'm not...
  2. B

    AutoOpen the previously opened backpacks on login

    Good afternoon. I'd like to know how to make a script where the tibia client opens the previously opened backpacks on login, depending on character name, the same way hotkeys preset works now a days (by vocation, by name, etc). Must I make it on source (C++) or there is a way to do it on...
  3. B

    [please move to Support] AddItem do a corpse after kill it

    @About the title: I created on a wrong session by mistake, sorry. Hello everyone, I'm trying to do a script where an item is added to a monster corpse after kill it, and the item depends on player vocation. But I don't know the exactly command to do it. I'm using function onKill: function...
  4. B

    Error downloading http://...login.php - server replied: Forbidden

    Hello for everyone. I was absent from OTserv for 5 years and now I decided to open a new server just to 4fun with some friends. But as usual I got some problems on it. What I did until now: I've downloaded this server: Qwizer/realmap11 (https://github.com/Qwizer/realmap11) I'm hosting a...
  5. B

    Interval on array help

    Hello guys :D Well, how can i do a interval on array? Example: Current script: local results = { [1] = { [1] = 2000, [2] = 2000, [3] = 2000, [4] = 2000, [5] = 2001, }, } SetPlayerStorageValue(cid, results[1][math.random(5)], 1) I want something like this...
  6. B

    Solved Creature Event onKill

    How to make an event where all players who attack certain monsters will win a storage? My scripts isn't working: function onKill(cid, target, lastHit) if getCreatureName(target) == "Jaul" and isMonster(target) and isPlayer(cid) then setPlayerStorageValue(target, 33000, 1) end...
  7. B

    Mount absorbpercent / skillgain / healthgain

    Its possible to do mounts with attributes like items as life ring (healthgain), axe ring (skillgain), magma legs (absordpercentfire) and others like suppressdrunk (dwarven ring). Is a good idea but i dont know where start to do it in sources...
  8. B

    A script reading var of other script

    Well, someone knows tell me why the script reads a var from another script? Example: This script, called Obujos.lua: local BOSS_GLOBAL_STORAGE = 80510 local BOSS = "Obujos" function onKill(cid, target) if getCreatureName(target) == BOSS then if(getGlobalStorageValue(BOSS_GLOBAL_STORAGE) <...
  9. B

    BOSS Room Check (Solved)

    I need a script that check if Obujos is in his room, If yes, nothing happens. If not, another is summoned This is possible? I've tried tried tried and nothing ;s EDIT: Holy shit, maybe i solved, i'll test and back here EDIT 2: yes i solved :D I made a globalevent: function onThink(interval...
  10. B

    doSummonCreature problem

    Hi guys, well, my problem is with function doSummonCreature. If i use it for a rat, e.g., he cant be summoned on fire fields or with players around. How can i 'force' this summon?
  11. B

    Grizzly Adams

    Hi... Someone have the Grizzly Adams working with boss system? I dont find it in anywhere...
  12. B

    Please help me ;'(

    SOLVED, CAN CLOSE
  13. B

    Windows QUESTLOG FIX!!!

    Someone know fix the quest.cpp and quest.h to show |STORAGE:| in questlog? I use TFS 1.0 Is so difficult to fix it
  14. B

    Formula Annihilation Spell

    Hello guys, i would like know the real formula for the spell annihilation (exori gran ico), cuz in my otserv is so much strong, i didn't find in any website this formula >< Thanks
  15. B

    Problem with sex in sample char

    I have defined pre outfits set for samples knight, druid, pally, and sorc, but both are male sex. I would like to do pre outfits set for females, so that the person who creates the char on the website will automatically female. Thanks.
Back
Top