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

    Zombie event on startup error

    09/10/2016 15:31:02] [Error - GlobalEvent Interface] [09/10/2016 15:31:02] data/globalevents/scripts/zombie/onstartup.lua:onStartup [09/10/2016 15:31:02] Description: [09/10/2016 15:31:02] data/globalevents/scripts/zombie/onstartup.lua:2: attempt to call field 'executeQuery' (a nil value)...
  2. G

    Monster damage

    <?xml version="1.0" encoding="UTF-8"?> <monster name="The Imperor" nameDescription="the imperor" race="fire" experience="80" speed="330" manacost="0"> <health now="75000" max="75000"/> <look type="237" corpse="6364"/> <targetchange interval="5000" chance="5"/> <strategy...
  3. G

    Teleport vip only

    [20/08/2016 15:14:40] [Warning - Event::loadScript] Event onUse not found (data/actions/scripts/other/vip teleport.lua)
  4. G

    Teleport vip only

    -- Credits StreamSide, Empty and Kaorus function onUse(cid, item, fromPosition, itemEx, toPosition) local name = getCreatureName(cid) -- if getPlayerStorageValue(cid,11551) < 1 then if getPlayerLevel(cid) > 1 then getPlayerStorageValue(cid, 11551)...
  5. G

    Teleport vip only

    Hey ive got a teleport in temple and id like to make so that only vip members can pass trough. The vip medal is id 5785 and it works already with a vip door i have created but i just dont know how to make it with the vip teleport? should i change the action id of teleport to 5785? and...
  6. G

    Magic effect teleport

    haha yea thanks just checked it CONST_ME_WATERCREATURE = 33
  7. G

    Magic effect teleport

    is it 34 or 33
  8. G

    Magic effect teleport

    function onThink(interval, lastExecution) local teleportpos1 = {x=996, y=1004, z=7, stackpos=1} doSendAnimatedText(teleportpos1, "VIP HUNTS", math.random( 1, 65 ) ) doSendMagicEffect(teleportpos1, math.random( 1, 50 ) ) return TRUE end This is the script that i currently use and its...
  9. G

    Zombie event error

    [18/08/2016 20:10:17] [Error - GlobalEvent Interface] [18/08/2016 20:10:17] data/globalevents/scripts/zombie/onstartup.lua:onStartup [18/08/2016 20:10:17] Description: [18/08/2016 20:10:17] data/globalevents/scripts/zombie/onstartup.lua:2: attempt to call field 'executeQuery' (a nil value)...
  10. G

    Ring&Amulet add maxmana/hp %

    NVM solved it by adding <attribute key="maxHealthPercent" value="110"/> <attribute key="maxManaPercent" value="120"/> under the ring in items
  11. G

    Ring&Amulet add maxmana/hp %

    How do i edit a ring and amulet so that they give me for example 20% of my max hp and mana ?
  12. G

    Load weapons.xml

    how do i make this thread to solved
  13. G

    Load weapons.xml

    local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_HOLYDAMAGE) setCombatParam(combat, COMBAT_PARAM_EFFECT, 51) setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, 41) setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, -1.5, -30, -1.5, -50) function...
  14. G

    Load weapons.xml

    local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_HOLYDAMAGE) setCombatParam(combat, COMBAT_PARAM_EFFECT, 51) setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, 41) setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, -1.5, -30, -1.5, -50) function...
  15. G

    Load weapons.xml

    <item id="7735" article="the" name="Enforced Wand"> <attribute key="description" value="a melhor wand." /> <attribute key="weight" value="2300" /> <attribute key="weaponType" value="wand" /> <attribute key="shootType" value="holy" /> <attribute key="range"...
  16. G

    Load weapons.xml

    i really dont know i must have accidentaly clicked space somewhere but the last line </items> seems to be premature what does that mean
  17. G

    Load weapons.xml

    got the same error again premature line with the last item line <item id="20001" name="water" /> <item id="20002" name="blood" /> <item id="20003" name="beer" /> <item id="20004" name="slime" /> <item id="20005" name="lemonade" /> <item id="20006" name="milk" /> <item...
  18. G

    Load weapons.xml

    0.3.6 <item id="7735" article="the" name="Enforced Wand"> <attribute key="description" value="a melhor wand." /> <attribute key="weight" value="2300" /> <attribute key="weaponType" value="wand" /> <attribute key="shootType" value="holy" /> <attribute...
  19. G

    Load weapons.xml

    Thank you man ! if exchanged solar axe and made it to donation axe but i fucked it up because i tried to duplicate the lines and then change the other line to donation axe just to keep both of them ingame is that possible? to have 2 items with same id Donation axe and solar axe like both...
  20. G

    Load weapons.xml

    17/08/2016 13:23:10] [Warning - BaseEvents::loadFromXml] Cannot open weapons.xml file. [17/08/2016 13:23:10] Line: 423, Info: Premature end of data in tag weapons line 2 [17/08/2016 13:23:10] > ERROR: Unable to load Weapons! <?xml version="1.0" encoding="UTF-8"?> <weapons> <!-- Rods -->...
Back
Top