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

    Account Deletion.

    Sorry if this is in the wrong thread but I'd like to permanently delete this account. Could a mod or admin assist me? Thanks.
  2. Albanon

    Lua Increase mana cost with each cast

    I'd like to take a simple spell like energy strike local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_ENERGYDAMAGE) setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_ENERGYAREA) setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_ENERGY)...
  3. Albanon

    Solved Triple attack

    This spell doesn't work for some reason I want it to do an attack, and then another after that, and then another after that, with several seconds in between local combat1 = createCombatObject() setCombatParam(combat1, COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE) setCombatParam(combat1...
  4. Albanon

    Windows Test my server

    I need someone to test my server and make sure my xammp is secure - someone who knows it's loopholes. I'd really like my server to be secure. IF anyone is willing to do this for me, you are welcome to have full donator access to my server for however long I am able to keep it up in the future...
  5. Albanon

    Windows Xammp

    Is it possible for people to access your computer hard drives and files on your computer through xammp and mysql? or is it just the data base that's vulnerable
  6. Albanon

    Lua Storing variables permanently and time

    Here's my goal. When you walk on a certain square, it somehow tracks, either in SQL or some other way that would work, that you have stepped on that square, and change it to 1. as long as it is 1, lets say, every so many hours, you will be given an item or gold for "owning" it. Your ownership...
  7. Albanon

    [USA] 8.6| Cindera | Custom| UPDATED!

    Cindera USA Cindera is a customized server with new classes and a very large completely custom map! New classes: Summoner: Summoners utilize a smaller range of spells than the sorcerer, but make up for it...
  8. Albanon

    Lua Flags and summoning

    Is it possible to impose limitations on the summoning system for certain classes, or add custom flags to creatures so that only certain spells summon them? Is it possible to add a flag to a creature like <flag conjurable="1"/> right next to <flag summonable="0"/> to make sure only a certain...
  9. Albanon

    Lua Talk Action takes two parameters

    I have a spell called utevoresmort it's a talk action that summons a creature to your target so it's utevoresmort Bob and bob gets a creature spawned beside him what I'd like to do is make it so the talk action can take two parameters, one being the creature summoned so utevoresmort bob...
  10. Albanon

    Get player position spell script

    local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE) function onCastSpell(cid, var) if isPlayer(cid) == TRUE then if exhaustion.check(cid, 30030) then doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "your...
  11. Albanon

    Team RPG Cindera 2015

    Hello everyone. I require a team to help me assemble my old RPG server. So far we have a very large working custom map, which I have done myself (70 percent, with contributions from kessykins), as well as some custom spells and classes, which I have also done myself. I ran this server a few...
  12. Albanon

    Spell for target player pos

    local pos = getCreaturePos(cid,target) function onCastSpell(cid, var) doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "your target is: " .. pos(var)) return doCombat(cid, combat, var) end I'm just trying to make a simple spell that will return the target players position so...
  13. Albanon

    summon to target

    I'm using an 8.60 distrobution of crying damson What I'm attempting to do is this You say utevo res sio "creature "player thats online If the player is online, not dead, and not in a protection zone then the spell will summon 4 of those creatures at the target player, regardless of distance...
  14. Albanon

    Team RPG Cindera Reborn

    Hello everyone. I require a team to help me assemble a new RPG server I have been working on over the last couple months. So far we have a fairly large working custom map, which I have done myself (98 percent), as well as some custom spells and classes, which I have also done myself. I ran this...
  15. Albanon

    Uniserver - accessable from the internet?

    If it isn't accessible from the internet, will people be able to join my OT? How do I change it so it isn't accessible from the internet
  16. Albanon

    MysticSpirit 2.11pl2 String.explode doesn't work?

    I'm trying to learn how to script but it isn't going so well. Here's my code so far. All it's supposed to do is help me to test whether or not I have succeeded in using string.explode correctly...it works in other releases but not in mystic spirit for some reason. Here's what I want to know...
  17. Albanon

    First items prevents players from logging in

    Below is the code I used to replace first items in my server (Mystic spirit 2.11pl2) Whenever I replace first items in the creature scripts with this code, it prevents anyone from logging onto the server - the players just sit there "loading" the character. Can any one help? Why doesn't this...
  18. Albanon

    A few questions about each server release.

    It's been awhile and my premium ran out - I have a few questions I'd like to ask. Firstly - How has the development been on the latest private versions? Are there any stable releases as of yet? Secondly - What's the difference between crying damson and mystic spirit? and lastly, I'm...
  19. Albanon

    Gamemaster Advisor needed

    What I'm looking for I'm looking for someone who has a broad range of experience in many areas, such as scripting, mapping, creating npcs and running an OT server. The position I'm offering is that of an advisor as well as a gamemaster. If you intend to apply, know that I need someone who...
  20. Albanon

    [Lua] How does param work?

    I'm trying to make a talk action script that recognizes perameters, for instance /test one should send the player a message that says one /test two should send the player a message that says two Here's what I have so far function onSay(cid, words, param) if param == "" then...
Back
Top