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

  1. avastsz2856

    Lua Need Help

    Hello, I need help to convert this script to version 1.2, could anyone help me? function onKill(cid, target) if isPlayer(cid) and isPlayer(target) then if getPlayerIp(cid) ~= getPlayerIp(target) then local config = { Kname = getPlayerName(cid), Tname = getPlayerName(target), Tlevel...
  2. avastsz2856

    Lua Help convert to tfs 1.2? :(

    function onKill(cid, target) if isPlayer(cid) == TRUE and isPlayer(target) == TRUE then doSendAnimatedText(getCreaturePosition(target), "OwNeD!", 35) end return TRUE end
  3. avastsz2856

    help convert to tfs 1.2?? :(

    Does anyone help me? Thanks :p terra = {351,352,353,354,355} levels = { [-1] = 2229, ---- skull [0] = 1294, --- small stone [1] = 3976, --- worm [10] = 2149, -- Small Emerald [12] = 2146, -- Small Sapphire [15] = 2145, -- Small Diamond [17] = 2150, -- Small Amethyst [20] = 2147, -- Small Ruby...
  4. avastsz2856

    doubt..

    Hello, could anyone create a script that would look like the elf bot running ??? For tfs 1.2, I do not know if it is possible .. But if it is someone can it happen ?? I wanted it as a talkaction that the player would speak! And began to roll. It is possible?
  5. avastsz2856

    Lua Helps me edit a script?

    Thanks
  6. avastsz2856

    Lua Helps me edit a script?

    function onStepIn(player, item, position, fromPosition) if not player then return true end local guild = player:getGuild() if not player:getGuild() then player:teleportTo(fromPosition, false) end if item.actionid == 16202 then if...
  7. avastsz2856

    Lua Helps me edit a script?

    So I wanted help for a script like this .. Let's suppose you have an actionID that only people who have guild can pass .. And the person who does not have guild can not pass in that actionID and receive a msg "you do not have guild" For tfs 1.2 Thank you.
  8. avastsz2856

    HELP PLEASE CONVERT TO TFS 1.2!!!

    movements/COH.lua dofile('data/lib/core/015-COH.lua') function onStepIn(player, item, position, fromPosition) if not player then return true end local guild = player:getGuild() if not player:getGuild() then return true end if item.actionid == 16203 then...
  9. avastsz2856

    HELP PLEASE CONVERT TO TFS 1.2!!!

    Thx! Guys, can anyone help me in my castle guild war ?, What's going on? It does not check if the player has guild or not, so he can enter the area that is dominated by a guild without guild.
  10. avastsz2856

    HELP PLEASE CONVERT TO TFS 1.2!!!

    Woow bro, It worked, a problem that is happening is. That when the player does not have guild he can but has the check so he can not .. what will it be? I have a problem, player that does not have guild can enter into the positions ie: Does not work checking if it has guild, could you help me...
  11. avastsz2856

    HELP PLEASE CONVERT TO TFS 1.2!!!

    The coh.lua is in movements It is for version 9.8, and I wanted to convert
  12. avastsz2856

    HELP PLEASE CONVERT TO TFS 1.2!!!

    Follow the files. COH.lua function onStepIn(player, item, position, fromPosition) if not player then return true end local guild = player:getGuild() if not player:getGuild() then return true end if item.actionid == 16203 then if...
  13. avastsz2856

    HELP PLEASE CONVERT TO TFS 1.2!!!

    Error: Lua Script Error: [MoveEvents Interface] data/movements/scripts/COH.lua:onStepIn data/lib/core/game.lua:109: table index is nil stack traceback: [C]: in function '__newindex' data/lib/core/game.lua:109: in function 'setStorageValue'...
  14. avastsz2856

    HELP PLEASE CONVERT TO TFS 1.2!!!

    Now it's right?
  15. avastsz2856

    HELP PLEASE CONVERT TO TFS 1.2!!!

    please help me, can anybody of good heart convert me? function onStepIn(cid, item, pos, fromPosition) local pos = getThingfromPos(cid) if item.actionid == 16203 then if not isPlayer(cid) then return true end if getGlobalStorageValue(COH_STATUS) == getPlayerGuildName(cid) then...
Back
Top