Ir para conteúdo

leister

Membro
  • Registro em

  • Última visita

Tudo que leister postou

  1. vc nao consegue editar um pedaço das sources pra eu colcoar la ??
  2. leister respondeu ao post em um tópico de leister em Suporte Tibia OTServer
    Nao funcionou, nao tinha nada disos no meu config e quando eu coloco quando eu coloco o extraPartyExperienceLimit = 20 <<<Deixa 100, ele buga o config :x
  3. leister postou uma resposta no tópico em Suporte Tibia OTServer
    Eai galera, preciso de uma script para bugar a xp da party, tipo, quando os players estiverem em shared XP todos os membros da party ganhem a xp full do monstro. Ajuda rapido. Obrigado xD
  4. e como muda isso sem alterar a versao nem nada do servidor ?
  5. É assim, quando chega num numero de items em um unico SQM, o server comeca a travar, e isso acontece em todos os grandes servidores, porem quase ninguem sabe disso, ou seja, quando descobrirem já era.
  6. Não tem uma maneira mais facil ? Eu descubri um bug que funciona em varios servidores e esta relacionado a isso. preciso resolver no meu xD
  7. Olá, eu preciso colocar um número máximo de itens que um jogador pode colocar em uma telha, não há nada no meu config.lua relacionado com isso, e eu estou processando o TFS 1.0
  8. leister respondeu ao post em um tópico de Erimyth em Websites
    Warning: parse_ini_file(D:\Desktop\Malblofor 10.50config.lua): failed to open stream: No such file or directory in C:\xampp\htdocs\config-and-functions.php on line 13 Database error. Unknown database type in D:\Desktop\Malblofor 10.50config.lua . Must be equal to: "mysql" or "sqlite". Now is: "" quando coloco meu ip pra entrar no site aparece isto
  9. leister postou uma resposta no tópico em Suporte Tibia OTServer
    Quando tento dar use na potion e usar em algum player a potion é usada em mim alguem sabe como arrumar isso? pf helpp 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)) -- 1000 - 100 due to exact condition timing. -100 doesn't hurt us, and players don't have reminding ~50ms exhaustion. function onUse(cid, item, fromPosition, itemEx, toPosition) 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, 85, 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 Eae galera, estou abrindo um servidor global full e encontrei um erro pois quando eu tento potar meu amigo a potion me heala e nao heala ele :x tem como alguem me ajudar rapido ? Obrigado desde já
  10. Oi gente, estou abrindo um server global full e baixei um mapa de outro cara, so que ele colocou protection zone em umas areas que não tem protection zone, existe alguma maneira de remover isso pelo RME ?
  11. leister respondeu ao post em um tópico de Qwizer em Websites
    Olha voltei a mecher com otserver e tals e não tenho ideia nenhuma de como instalar o site junto com o ot tem como disponibilizar ou tutorial ou coisa do tipo?
  12. Aee cara valeeeuu.. deu certo.. REP +
  13. Quando eu clico na pagina characters do meu site de otserver aparece a mensagem: Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42S22]: Column not found: 1054 Unknown column 'reason' in 'field list'' in C:\Users\Renata\Desktop\xampp\htdocs\pot\OTS_AccountBan.php:55 Stack trace: #0 C:\Users\Renata\Desktop\xampp\htdocs\pot\OTS_AccountBan.php(55): PDO->query('SELECT `id`, `t...') #1 C:\Users\Renata\Desktop\xampp\htdocs\pot\OTS_Account.php(955): OTS_AccountBan->find('8069458') #2 C:\Users\Renata\Desktop\xampp\htdocs\characters.php(274): OTS_Account->isBanned() #3 C:\Users\Renata\Desktop\xampp\htdocs\index.php(103): include('C:\Users\Renata...') #4 {main} thrown inC:\Users\Renata\Desktop\xampp\htdocs\pot\OTS_AccountBan.php on line 55 Ajuda PLLLLLXXXXXX 0 Quote MultiQuote Editar

Informação Importante

Confirmação de Termo