• 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!

Recent content by mijnoma

  1. M

    [FIX] You need to buy spells to be able to use them.

    in spells.xml turn needlearn to "1". This means you need to learn the spell before using it. Then you gotta config an npc, item or whatever you want to learn the spells. example of the npc in case you didn't have one yet local keywordHandler = KeywordHandler:new() local npcHandler =...
  2. M

    Solved 1 spell with a different effect for each vocation

    Wow thanks. It works now.
  3. M

    Solved 1 spell with a different effect for each vocation

    hmmzzz i thought i understanded it now but still error local combat = createCombatObject() combatSorc = setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_DEATHDAMAGE) setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MORTAREA) setAttackFormula(combat...
  4. M

    Solved 1 spell with a different effect for each vocation

    Okay, Since I'm getting more familiar with the scripts I was trying to get more advanced and create 1 spell but with a different effect for each vocation. So I tried this: local combat = createCombatObject() local playerVoc = getPlayerVocation(cid) if playerVoc == 1 then...
  5. M

    Spell Boomerang Step

    Cool one. gonna use it in my ot. works till a maximum of 4 squares away from target. then it says creature not reachable.
  6. M

    What about donation items?

    I gotta agree on this and will probably make some changes on them. I've been playing spider ot before. That ultimate donation set including the rune and eventually death stick (it's the most powerfull weapon in there for those who haven't played) made people too overpowered. Impossible to...
  7. M

    What about donation items?

    True I downloaded a server, but it had only the basic options. I had to find out and do everything by myself and help on the forum here. There's still a long way to go until it will be online. Right because I don't want it to be like one of the thousands other servers. We're paying much...
  8. M

    Solved Logout while in battle

    I got this little problem in my server. Players can still logout while in battle or on no logout tiles. Can't find what's wrong lol. login.lua local config = { loginMessage = getConfigValue('loginMessage') } function onLogin(cid) local loss =...
  9. M

    What about donation items?

    Please vote guys. I'm pretty serious about this. I might change them into quest items instead of donation items if you guys come with well based arguments.
  10. M

    What about donation items?

    I was reading around the forum. I was actually trying to find out what a normal level was to kill orshabaal cuz i think my manarunes are a lil weak, so if someone can tell that it wou be great :P But now why I started this topic: I was reading a topic and I saw that you guys are pretty...
  11. M

    Solved Fire spell does death looks and damage

    Ah i see. thanks :P Think I didn't notice cuz i've been working on scripts for several hours allready XD I just copied the spell and eddit it to death spell (making 1 for each vocation as a quest reward spell) All those scripts looked hard in the beginning but they're actually kinda self...
  12. M

    Solved Fire spell does death looks and damage

    Well, As the title says: my spell isn't working properly. In the server I downloaded were some custom spells allready. Because I like to be different I made changes into it. The spell as it was: local combat = createCombatObject() arr = { {0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0}, {0, 0...
  13. M

    Solved Problem with my login.lua file

    hmm.. kinda weird then. Mine gave the error without changing the login.lua Well the server doesn't give an error with the new script. It only doesn't say it loaded login.lua while it does with other .lua files so i'm not sure if it's ok. I can try to download it again and import my new map...
  14. M

    Solved Problem with my login.lua file

    Allready changed it in config.lua and map editor. Didn't setup Uniserver yet since I'm working from my home computer atm and it will be on another ip and directory later. But did you find any troubles in the code? Except from that weird part of code that doesn't really have a function. - - -...
Back
Top