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

    Linux NPC Addon

    Why not deliver the addon? local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid)...
  2. curruwilliam

    Linux Behemoths - obsidian knife

    ok, https://github.com/PrinterLUA/FORGOTTENSERVER-ORTS/issues/1387
  3. curruwilliam

    Linux Behemoths - obsidian knife

    Hello, Use obsidian knife and error Look: https://i.imgur.com/6K2bSQr.png https://github.com/PrinterLUA/FORGOTTENSERVER-ORTS/blob/master/data/actions/scripts/tools/skinning.lua
  4. curruwilliam

    Linux killing in the name of - boss.lua

    up? Boss: Gorgo (Medusa)
  5. curruwilliam

    Linux killing in the name of - boss.lua

    Which boss are you trying to kill? I went in Kerberos (250 Hellhounds) Which position is the teleport at? Position: [X: 32044] [Y: 32547] [Z: 14].
  6. curruwilliam

    Linux killing in the name of - boss.lua

    With the update that had, this working, but it seems that is not summoning the boss look:
  7. curruwilliam

    Linux killing in the name of - boss.lua

    I can not really get into the teleport boses
  8. curruwilliam

    Linux killing in the name of - boss.lua

    Hello How do I fix this bug: Boss.lua: https://github.com/PrinterLUA/FORGOTTENSERVER-ORTS/blob/master/data/movements/scripts/killing%20in%20the%20name%20of/boss.lua
  9. curruwilliam

    Lua VIP System TFS 1.0

    up plix ?
  10. curruwilliam

    Lua VIP System TFS 1.0

    Thank you guys worked everything right Now to finish: function onLogin(cid) local temple = { x =32369, y = 32246, z = 6} if vip.hasVip(cid) == true then if getPlayerStorageValue(cid,55555) ~= 1 then setPlayerStorageValue(cid,55555,1) end else if getPlayerStorageValue(cid,55555) == 1 then...
  11. curruwilliam

    Lua VIP System TFS 1.0

    yes, the error also
  12. curruwilliam

    Lua VIP System TFS 1.0

    not working
  13. curruwilliam

    Lua VIP System TFS 1.0

    I add this into actions or events/player??
  14. curruwilliam

    Lua VIP System TFS 1.0

    This give extra exp is not working. local rate = 50 --- porcentagem que irá ganhar a mais. function onKill(cid, target, lastHit) if hasVip(cid) == true then local monster = Monster(target) if not monster then return true end for id, damage in pairs(monster:getDamageMap()) do local player =...
  15. curruwilliam

    Lua VIP System TFS 1.0

    Just got this: actions: function onUse(cid, item) local player = Player(cid) if hasVip(cid) == false then player:sendTextMessage(MESSAGE_INFO_DESCR,"Agora voce e um player VIP.") doPlayerAddVip(cid, 2592000) -- 30 dias tempo em segudos. doRemoveItem(item.uid, 1) else...
  16. curruwilliam

    Lua VIP System TFS 1.0

    I'll try
  17. curruwilliam

    Lua VIP System TFS 1.0

    Sorry, but I have not the slightest notion in .lua
  18. curruwilliam

    Lua VIP System TFS 1.0

    Hello, I have a code here, but not updated with the latest update of forgottenserver. Someone could upgrade to min? I do not know Mecher with .lua = '[ It is a system of vip global.lua -- Vip system lib function getPlayerAccount(cid) return getAccountNumberByPlayerName(getPlayerName(cid)) end...
Back
Top