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

    Error on loading spawn/houses

    ...Try changing the names. Maybe the data is corrupted? Try opening the file. If you can't to read it, it is corrupted.
  2. Redseb

    Exp limit

    Sources. You need to know c++. You need to change this (and some other things) if(Player::getExpForLevel(level) > nextLevelExp)
  3. Redseb

    XML- Item attribute fist

    case WEAPON_FIST: return getSkill(SKILL_FIST, SKILL_LEVEL); Yes, there is the weapon type "fist".
  4. Redseb

    Spell that has a 50% to kill you and 50% to throw the spell

    Try using math.random: local time = 120 * 1000 -- 120 * 1000 = 2 min local addShield = 200 -- how much shielding should be added local addSword = 50 -- how much mana should be added local wolf = {lookType = 54, lookHead = 0, lookBody = 0, lookLegs = 0, lookFeet = 0, lookTypeEx = 0, lookAddons...
  5. Redseb

    Solved Potions good, console failed! "a nil value" requied. HELP!

    Search in this code for this: if v.uid == 0 then (line 88) And then change it for this: if not v or v.uid == 0 then There are mods that can do that, but there is no need.. if it don't work you'll have to get another script that don't have this function. But i'm 90% sure it will work.
  6. Redseb

    Solved Potions good, console failed! "a nil value" requied. HELP!

    Try this: If it don't work, please, answer this: 1. What is your sources version? 2. Do you have this function in your server? (getItemParent(uid)) 3. When did this problem start?
Back
Top