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

    A Request and a question

    Solved!
  2. Laweit

    Help with this functions...

    local fireWeapons = {7750 ,7754, 7747, 7745, 7746, 7756, 7752, 7784, 7758, 7751, 7744, 7757, 7749, 7755, 7753} function onCastSpell(cid, var) local combat1 = createCombatObject() setCombatParam(combat1, COMBAT_PARAM_TYPE,COMBAT_PHYSICALDAMAGE) setCombatCondition(combat1, CONDITION_NONE)...
  3. Laweit

    Help with this functions...

    Did you try this? local fireWeapons = {7750 ,7754, 7747, 7745, 7746, 7756, 7752, 7784, 7758, 7751, 7744, 7757, 7749, 7755, 7753} function onCastSpell(cid, var) local combat1 = createCombatObject() setCombatParam(combat1, COMBAT_PARAM_TYPE,COMBAT_PHYSICALDAMAGE) setCombatCondition(combat1...
  4. Laweit

    Hello i need a door script....

    Man, this function is in doors.lua: function onUse(cid, item, frompos, item2, topos) STORAGE_VALUE = 57084 if isInArray(questDoors, item.itemid) == TRUE then if getPlayerStorageValue(cid, STORAGE_VALUE) == 1 then doTransformItem(item.uid, item.itemid + 1) doTeleportThing(cid...
  5. Laweit

    Tenacious D: The pick of Destiny

    I love this band... The film is cool but the musics is amazing!!
  6. Laweit

    Help with this functions...

    Well, I guess it will work: local fireWeapons = 7750 or 7754 or 7747 or 7745 or 7746 or 7756 or 7752 or 7784 or 7758 or 7751 or 7744 or 7757 or 7749 or 7755 or 7753 function onCastSpell(cid, var) local combat1 = createCombatObject() setCombatParam(combat1...
  7. Laweit

    [8.40] i search function

    Just use the function onThink(): function onThink() if (os.clock() - talk_start) > 20 then if focus > 0 then selfSay('HERE YOU TEXT') end focus = 0 end if focus ~= 0 then if getDistanceToCreature(focus) > 5 then selfSay('HERE YOU TEXT') focus = 0...
  8. Laweit

    Help with this functions...

    I don't know much about spells, but you have to use thus: local combat1 = createCombatObject()--creating the object --parameters setCombatParam(combat9, COMBAT_PARAM_TYPE, COMBAT_FIREDAMAGE) setCombatParam(combat9, COMBAT_PARAM_EFFECT, 49) setCombatCondition(combat1, CONDITION_FIRE )...
  9. Laweit

    Knight script

    function onEquip(cid, item, slot) if item.uid == 5942 and getPlayerVocation(cid) == 4 or getPlayerVocation(cid) == 8 then doSendMagicEffect(frompos, 14) doTransformItem(cid, 2179) doDecayItem(item.uid) end function onDeEquip(cid, item, slot) if item.uid == 5942 and...
  10. Laweit

    Help with phpMyAdmin

    Solved!
  11. Laweit

    Help with phpMyAdmin

    Solved!
  12. Laweit

    Help with this NPC

    The problem is here: getDistanceToCreature(cid) This function not exist... So LUA take it as nill... You can use it: if (msgcontains(msg, 'hi') and (focus == 0)) then I think it gonna work. EDIT-- Ah, you must take all getDistanceToCreature...
  13. Laweit

    Help here!

    Solved
Back
Top