Ir para conteúdo

Smart Maxx

Membro
  • Registro em

  • Última visita

  1. Gui Lima reagiu a uma resposta no tópico: (Resolvido)Como editar account manager?
  2. Hugoo222222 reagiu a uma resposta no tópico: [TFS 1.0] VIP System
  3. Gabrielk reagiu a uma resposta no tópico: [Original] Azeroth RPG
  4. Zaruss reagiu a uma resposta no tópico: [Original] Azeroth RPG
  5. Isso indica que sua máquina não tem memória RAM o suficiente pra executar o servidor por inteiro. Pode ser que o seu distro deva estar compilado em uma versão diferente da suportada pelo seu sistema operacional (por exemplo: tentar executar um distro de 64bits em uma máquina de 32bits = não vai rolar). Uma comparação do OS mais comum (Windows): Windows 32 bits: é capaz de suportar até 4 GB de memória. Windows 64 bits: suporta até 128 GB de RAM. Sugiro que procure por usar um distro compatível com o seu sistema operacional, caso tenha memória o suficiente para tal feito. Escrito por suicide
  6. Não da pra advinhar o erro sem postar ele néh ?
  7. sqlHost = "localhost" troca por : sqlHost = "127.0.0.1" Abrçs
  8. A volta dos que não foram parte FINAL
  9. O seu problema é RAM, você quer ter 1.000 players sem lagar com essa ram ? é como eu disse tem sorte de rodar, tem mapa aew que só pra ligar o serve precisa de 4gb de ram no mínimo
  10. Falou o "Programmer" HEUEHUEHEUHEUHEUH que não coda 2 linha de .lua sozinho ahsuahs
  11. Fique feliz por estar rodando com essa RAM, não era nem pra ligar o server
  12. Smart Maxx reagiu a uma resposta no tópico: harley
  13. TFS 1.0 : potions.lua : local ultimateHealthPot = 8473 local greatHealthPot = 7591 local greatManaPot = 7590 local greatSpiritPot = 8472 local strongHealthPot = 7588 local strongManaPot = 7589 local healthPot = 7618 local manaPot = 7620 local smallHealthPot = 8704 local antidotePot = 8474 local greatEmptyPot = 7635 local strongEmptyPot = 7634 local emptyPot = 7636 local antidote = Combat() antidote:setParameter(COMBAT_PARAM_TYPE, COMBAT_HEALING) antidote:setParameter(COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE) antidote:setParameter(COMBAT_PARAM_TARGETCASTERORTOPMOST, true) antidote:setParameter(COMBAT_PARAM_AGGRESSIVE, false) antidote:setParameter(COMBAT_PARAM_DISPEL, CONDITION_POISON) local exhaust = Condition(CONDITION_EXHAUST_HEAL) exhaust:setParameter(CONDITION_PARAM_TICKS, (configManager.getNumber(configKeys.EX_ACTIONS_DELAY_INTERVAL) - 100)) function onUse(cid, item, fromPosition, itemEx, toPosition, isHotkey) if itemEx.itemid ~= 1 or itemEx.type ~= THING_TYPE_PLAYER then return true end local player = Player(cid) if player:getCondition(CONDITION_EXHAUST_HEAL) then player:sendTextMessage(MESSAGE_STATUS_SMALL, Game.getReturnMessage(RETURNVALUE_YOUAREEXHAUSTED)) return true end if item.itemid == antidotePot then if not doCombat(cid, antidote, numberToVariant(cid)) then return false end player:addCondition(exhaust) player:say("Aaaah...", TALKTYPE_MONSTER_SAY) Item(item.uid):remove(1) player:addItem(emptyPot, 1) elseif item.itemid == smallHealthPot then if not doTargetCombatHealth(0, cid, COMBAT_HEALING, 60, 90, CONST_ME_MAGIC_BLUE) then return false end player:addCondition(exhaust) player:say("Aaaah...", TALKTYPE_MONSTER_SAY) Item(item.uid):remove(1) player:addItem(emptyPot, 1) elseif item.itemid == healthPot then if not doTargetCombatHealth(0, cid, COMBAT_HEALING, 125, 175, CONST_ME_MAGIC_BLUE) then return false end player:addCondition(exhaust) player:say("Aaaah...", TALKTYPE_MONSTER_SAY) Item(item.uid):remove(1) player:addItem(emptyPot, 1) elseif item.itemid == manaPot then if not doTargetCombatMana(0, cid, 75, 125, CONST_ME_MAGIC_BLUE) then return false end player:addCondition(exhaust) player:say("Aaaah...", TALKTYPE_MONSTER_SAY) Item(item.uid):remove(1) player:addItem(emptyPot, 1) elseif item.itemid == strongHealthPot then if(not isInArray({3,4,7,8}, player:getVocation():getId()) or player:getLevel() < 50) and not(player:getGroup():getId() >= 2) then player:say("This potion can only be consumed by paladins and knights of level 50 or higher.", TALKTYPE_MONSTER_SAY) return true end if not doTargetCombatHealth(0, cid, COMBAT_HEALING, 250, 350, CONST_ME_MAGIC_BLUE) then return false end player:addCondition(exhaust) player:say("Aaaah...", TALKTYPE_MONSTER_SAY) Item(item.uid):remove(1) player:addItem(strongEmptyPot, 1) elseif item.itemid == strongManaPot then if(not isInArray({1,2,3,5,6,7}, player:getVocation():getId()) or player:getLevel() < 50) and not(player:getGroup():getId() >= 2) then player:say("This potion can only be consumed by sorcerers, druids and paladins of level 50 or higher.", TALKTYPE_MONSTER_SAY) return true end if not doTargetCombatMana(0, cid, 115, 185, CONST_ME_MAGIC_BLUE) then return false end player:addCondition(exhaust) player:say("Aaaah...", TALKTYPE_MONSTER_SAY) Item(item.uid):remove(1) player:addItem(strongEmptyPot, 1) elseif item.itemid == greatSpiritPot then if(not isInArray({3, 7}, player:getVocation():getId()) or (player:getLevel() < 80)) and not(player:getGroup():getId() >= 2) then player:say("This potion can only be consumed by paladins of level 80 or higher.", TALKTYPE_MONSTER_SAY) return true end if not doTargetCombatHealth(0, cid, COMBAT_HEALING, 250, 350, CONST_ME_MAGIC_BLUE) or not doTargetCombatMana(0, cid, 100, 200, CONST_ME_MAGIC_BLUE) then return false end player:addCondition(exhaust) player:say("Aaaah...", TALKTYPE_MONSTER_SAY) Item(item.uid):remove(1) player:addItem(greatEmptyPot, 1) elseif item.itemid == greatHealthPot then if(not isInArray({4, 8}, player:getVocation():getId()) or player:getLevel() < 80) and not(player:getGroup():getId() >= 2) then player:say("This potion can only be consumed by knights of level 80 or higher.", TALKTYPE_MONSTER_SAY) return true end if not doTargetCombatHealth(0, cid, COMBAT_HEALING, 425, 575, CONST_ME_MAGIC_BLUE) then return false end player:addCondition(exhaust) player:say("Aaaah...", TALKTYPE_MONSTER_SAY) Item(item.uid):remove(1) player:addItem(greatEmptyPot, 1) elseif item.itemid == greatManaPot then if(not isInArray({1,2,5,6}, player:getVocation():getId()) or player:getLevel() < 80) and not(player:getGroup():getId() >= 2) then player:say("This potion can only be consumed by sorcerers and druids of level 80 or higher.", TALKTYPE_MONSTER_SAY) return true end if not doTargetCombatMana(0, cid, 150, 250, CONST_ME_MAGIC_BLUE) then return false end player:addCondition(exhaust) player:say("Aaaah...", TALKTYPE_MONSTER_SAY) Item(item.uid):remove(1) player:addItem(greatEmptyPot, 1) elseif item.itemid == ultimateHealthPot then if(not isInArray({4, 8}, player:getVocation():getId()) or player:getLevel() < 130) and not(player:getGroup():getId() >= 2) then player:say("This potion can only be consumed by knights of level 130 or higher.", TALKTYPE_MONSTER_SAY) return true end if not doTargetCombatHealth(0, cid, COMBAT_HEALING, 650, 850, CONST_ME_MAGIC_BLUE) then return false end player:addCondition(exhaust) player:say("Aaaah...", TALKTYPE_MONSTER_SAY) Item(item.uid):remove(1) player:addItem(greatEmptyPot, 1) end return true end actions.xml : <action itemid="7588" script="other/potions.lua"/> <action itemid="7589" script="other/potions.lua"/> <action itemid="7590" script="other/potions.lua"/> <action itemid="7591" script="other/potions.lua"/> <action itemid="7618" script="other/potions.lua"/> <action itemid="7620" script="other/potions.lua"/> <action itemid="8472" script="other/potions.lua"/> <action itemid="8473" script="other/potions.lua"/> <action itemid="8474" script="other/potions.lua"/> <action itemid="8704" script="other/potions.lua"/> @Orochi e partir do 1.1 só tende a piorar rsrsrs
  14. Smart Maxx respondeu ao post em um tópico de s2dieginho em Suporte Tibia OTServer
    Seu server é versão 10.55 tem que usar TFS 1.0 ou até a nova TFS 1.1... Aqui está o link para baixar a TFS 1.0 Compilada pra 64 bits, 32, bits e as sources caso queira compilar no Linux tb ;
  15. Smart Maxx respondeu ao post em um tópico de gpedro em Ferramentas OpenTibia
    Boa com certeza vou usar
  16. Smart Maxx reagiu a uma resposta no tópico: (Resolvido)Base Website
  17. Dps te reputo to sem no momento, obrigado; Partiu codar linhas do 0 *-*
  18. Alguém saberia me dizer qual é base mais perto pra deixar o site dessa forma >http://ntosync.no-ip.biz/register&action=createaccount<
  19. Servidor Global Full 10.41 roda em 32 bits ? eu já sei que tem que compilar e tals mas se eu tentar abrir ele com um tfs 1.0 compilada pra 32 bits iria abrir ?
  20. Procuro Mapper para detalhar algumas cidades de um mapa que tenho aqui na versão 8.6... Interessados peço que envie PRIVATE pra mim no fórum ou me adicionem no skype que está no meu perfil para maiores informações e acerto de preços;

Informação Importante

Confirmação de Termo