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

    host server

    i want to buy vps for my real map server. i want cheap and good company or trusted person what are the specifications for real map server my server 8.60 real map
  2. Elgenady

    website layout

    ?
  3. Elgenady

    Lua No vocation attack others players

    what source do u use ?
  4. Elgenady

    website layout

    i want someone to create new website for my project real map with new layout
  5. Elgenady

    nothing to do :D

    ok why not
  6. Elgenady

    TFS 0.X utana vid invisible adjusts

    function onSay(cid, words, param, channel) local condition = createConditionObject(CONDITION_INVISIBLE) setCombatCondition(combat, condition) setConditionParam(condition, CONDITION_PARAM_TICKS, -1) if getCreatureStorage(cid, "ghostmod")<= 0 then doAddCondition(cid, condition)...
  7. Elgenady

    [TFS 0.4] Slot system by Mock [modified]

    local allowed_items = {vvvv,ccccc,xxxxx} if(not isInArray(allowed_items, itemEx.itemid)) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Sorry, but you can't use this GEM on this item.") return true end
  8. Elgenady

    TFS 0.X utana vid invisible adjusts

    change /ghost to invis condition
  9. Elgenady

    TFS 0.X utana vid invisible adjusts

    local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE) local area = createCombatArea({ {1, 1, 1, 1, 1, 1, 1}, {1, 1, 1, 1, 1, 1, 1}, {1, 1, 1, 1, 1, 1, 1}, {1, 1, 1, 3, 1, 1, 1}, {1, 1, 1, 1, 1, 1, 1}, {1, 1, 1, 1, 1, 1, 1}...
  10. Elgenady

    Lua Function to get current weapon's skill

    local combat = createCombatObject() combat:setParameter(COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE) combat:setParameter(COMBAT_PARAM_EFFECT, CONST_ME_HITAREA) combat:setParameter(COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_WEAPONTYPE) combat:setParameter(COMBAT_PARAM_BLOCKARMOR, true)...
  11. Elgenady

    Lua Function to get current weapon's skill

    local combat = createCombatObject() combat:setParameter(COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE) combat:setParameter(COMBAT_PARAM_EFFECT, CONST_ME_HITAREA) combat:setParameter(COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_WEAPONTYPE) combat:setParameter(COMBAT_PARAM_BLOCKARMOR, true)...
  12. Elgenady

    Lua Function to get current weapon's skill

    function onGetFormulaValues(cid, weaponSkill, weaponAttack) local lvl = getPlayerLevel(cid) local min = weaponSkill* 2.75 + lvl + 5 --change this formula to change the min amount of healing local max = weaponSkill* 3.5 + lvl + 8 --change this formula to change the max amount of...
  13. Elgenady

    TFS 0.X Find item on ground

    hahaha change doPlayerSendTextMessage(cid,19, "Don't find item") to doSendMagicEffect(getCreaturePosition(cid), 2) now script will check items position only and send msg if items >= 1 if not will send effect
  14. Elgenady

    TFS 0.X Find item on ground

    function onSay(cid, words, param, channel) local from = {x=994,y=1003,z=7} local to = {x=1007,y=1008,z=7} for x = from.x, to.x do for y = from.y, to.y do for z = from.z, to.z do pos = {x = x, y = y, z = z, stackpos = 253} if(getTileItemById(pos...
  15. Elgenady

    Spawn monsters globalevents

    maybe this script will help u i found in my pc just change name of monster and area posyion local BOSSaa = "Abyssador" -- boss name local BOSS_POSaa = {x = 33087, y = 31908, z = 12} -- boss spawn local roomaa = {fromx = 33076, tox = 33100, fromy = 31898, toy = 31924, z = 12} -- boss room...
  16. Elgenady

    Spawn monsters globalevents

    function onThink(interval, lastExecution) local boss_name = "Demon" -- boss name local position= {x = 1000, y = 1000, z = 7} Game.createMonster(boss_name , position) return TRUE end
  17. Elgenady

    TFS 0.X Find item on ground

    do u want player search position ?
  18. Elgenady

    Lua Bosses drop loot on the ground.

    local function isNormalPosition(pos) local tile = getTileThingByPos(pos) if(tile.uid > 0 and (not hasProperty(tile.uid, CONST_PROP_BLOCKINGANDNOTMOVEABLE) and not hasProperty(tile.uid, CONST_PROP_BLOCKPATHFIND)) and (not getTileInfo(pos).protection)) then return true end...
  19. Elgenady

    TFS 0.X utana vid invisible adjusts

    to make player cancel in vis when attack or when get damage add if(isInvisible()) removeCondition(CONDITION_INVISIBLE); in doAttacking and drainHealth and drainMana in player.cpp but how i can make ghost player taken damage i will see it if u want invis player don't trap other...
  20. Elgenady

    TFS 0.X luaDoCreatureSetTarget not creating red square

    remove old square from BlockType_t Player::blockHit
Back
Top