Ir para conteúdo

matheusrenam

Membro
  • Registro em

  • Última visita

  1. EU PENSEI NISSO , porem eu desativei o firewall e externamente eu entro no site o problema é no ot mesmo so logo em ip interno
  2. olá galera recentemente estou brincando com um servidor otx 8.60 até ai tudo bem criei um virtual host tudo bonitim configurei inclusive tenho acesso ao site de ip externo entretando dentro do servidor eu so logo com ip interno o externo ele nao loga mais aparece a character list alguem tem uma ideia ?
  3. Meu gesior simplesmente fica em looping e nao cria conta nao importa oque eu faço acessando externamente , ele so nao cria conta externamente porem acessa e até cria personagem , porem internamente ele cria tudo ok tem alguma forma de corrigir ? GESIOR 2012
  4. bom como o proprio nome diz queria saber onde mexo pra usar runas shovel etc de longe pois meu otrserv so usa de perto exemplo se tiver um player atras e por fogo a destroy nao apaga diz qe ta mt longe
  5. gostaria que alguem postasse o player spoof code para 8.6 e acho que muitos outros membros gostariam tambem nao sei se isso é proibido ou nao sou novo no forum se eu postei em area errada peço que me mova por favor
  6. matheusrenam postou uma resposta no tópico em Suporte Tibia OTServer
    se alguem tiver
  7. matheusrenam reagiu a uma resposta no tópico: Ajuda zombie event
  8. matheusrenam postou uma resposta no tópico em Suporte Tibia OTServer
    queria saber qual desses lugar eu configuro onde aparece o teleport do zombie event e mais uma coisa eu adicionei dota event mais qeria saber se ele começa sozinho ou e a mesma coisa do teleport -- CONFIG ZE_DEFAULT_NUMBER_OF_PLAYERS = 100 ZE_ACCESS_TO_IGNORE_ARENA = 3 -- POSITIONS ZE_blockEnterItemPosition = {x= 349, y=255, z=7} ZE_enterPosition = {x = 1075, y =1052, z = 7} ZE_kickPosition = {x=1068, y=1055, z=7} ZE_spawnFromPosition = {x = 319, y = 293, z = 7} ZE_spawnToPosition = {x = 322, y = 249, z = 7} -- ITEM IDS ZE_blockEnterItemID = 2700 -- STORAGES -- - player ZE_isOnZombieArea = 34370 -- - global ZE_STATUS = 34370 -- =< 0 - off, 1 - waiting for players, 2 - is running ZE_PLAYERS_NUMBER = 34371 ZE_ZOMBIES_TO_SPAWN = 34372 ZE_ZOMBIES_SPAWNED = 34373 -- FUNCTION function setZombiesEventPlayersLimit(value) doSetStorage(ZE_PLAYERS_NUMBER, value) end function getZombiesEventPlayersLimit() return getStorage(ZE_PLAYERS_NUMBER) end function addPlayerToZombiesArea(cid) doSendMagicEffect(getThingPosition(cid), CONST_ME_TELEPORT) doTeleportThing(cid, ZE_enterPosition, true) doSendMagicEffect(getThingPosition(cid), CONST_ME_TELEPORT) if(getPlayerAccess(cid) < ZE_ACCESS_TO_IGNORE_ARENA) then setPlayerZombiesEventStatus(cid, os.time()) end end function kickPlayerFromZombiesArea(cid) doSendMagicEffect(getThingPosition(cid), CONST_ME_TELEPORT) doTeleportThing(cid, ZE_kickPosition, true) doSendMagicEffect(getThingPosition(cid), CONST_ME_TELEPORT) setPlayerZombiesEventStatus(cid, 0) end function getPlayerZombiesEventStatus(cid) return getCreatureStorage(cid, ZE_isOnZombieArea) end function setPlayerZombiesEventStatus(cid, value) doCreatureSetStorage(cid, ZE_isOnZombieArea, value) end function getZombiesEventPlayers() local players = {} for i, cid in pairs(getPlayersOnline()) do if(getPlayerZombiesEventStatus(cid) > 0) then table.insert(players, cid) end end return players end function getZombiesCount() return getStorage(ZE_ZOMBIES_SPAWNED) end function addZombiesCount() doSetStorage(ZE_ZOMBIES_SPAWNED, getStorage(ZE_ZOMBIES_SPAWNED)+1) end function resetZombiesCount() doSetStorage(ZE_ZOMBIES_SPAWNED, 0) end function getZombiesToSpawnCount() return getStorage(ZE_ZOMBIES_TO_SPAWN) end function setZombiesToSpawnCount(count) doSetStorage(ZE_ZOMBIES_TO_SPAWN, count) end function addZombiesEventBlockEnterPosition() if(getTileItemById(ZE_blockEnterItemPosition, ZE_blockEnterItemID).uid == 0) then doCreateItem(ZE_blockEnterItemID, 1, ZE_blockEnterItemPosition) end end function removeZombiesEventBlockEnterPosition() local item = getTileItemById(ZE_blockEnterItemPosition, ZE_blockEnterItemID) if(item.uid ~= 0) then doRemoveItem(item.uid) end end function spawnNewZombie() local posx = {} local posy = {} local posz = {} local pir = {} for i=1, 5 do local posx_tmp = math.random(ZE_spawnFromPosition.x ,ZE_spawnToPosition.x) local posy_tmp = math.random(ZE_spawnFromPosition.y ,ZE_spawnToPosition.y) local posz_tmp = math.random(ZE_spawnFromPosition.z ,ZE_spawnToPosition.z) local pir_tmp = 0 local spec = getSpectators({x=posx_tmp, y=posy_tmp, z=posz_tmp}, 3, 3, false) if(spec and #spec > 0) then for z, pid in pairs(spec) do if(isPlayer(pid)) then pir_tmp = pir_tmp + 1 end end end posx = posx_tmp posy = posy_tmp posz = posz_tmp pir = pir_tmp end local lowest_i = 1 for i=2, 5 do if(pir < pir[lowest_i]) then lowest_i = i end end local ret = (type(doCreateMonster("Zombie Event", {x=posx[lowest_i], y=posy[lowest_i], z=posz[lowest_i]}, false)) == 'number') if(ret) then addZombiesCount() end return ret end e esse e o dota function onUse(cid, item, fromPosition, itemEx, toPosition) gatepos = {x=685, y=42, z=7, stackpos=1} -- Posição da Parede 1 getgate = getThingfromPos(gatepos) gatepos2 = {x=601, y=42, z=7, stackpos=1} -- Posição da Parede 2 getgate2 = getThingfromPos(gatepos2) if item.uid == 5533 and item.itemid == 1945 and getgate.itemid == 1304 and getgate2.itemid == 1304 then doRemoveItem(getgate.uid,1) doRemoveItem(getgate2.uid,1) doTransformItem(item.uid,1946) elseif item.uid == 5533 and item.itemid == 1946 and getgate.itemid == 1304 and getgate2.itemid == 1304 then doRemoveItem(getgate.uid,1) doRemoveItem(getgate2.uid,1) doTransformItem(item.uid,1945) end return 1 end
  9. [21/04/2012 08:15:17] [Warning - BaseEvents::loadFromXml] Cannot open globalevents.xml file. [21/04/2012 08:15:17] Line: 20, Info: Premature end of data in tag globalevents line 2 [21/04/2012 08:15:17] > ERROR: Unable to load GlobalEvents! APARECE ISSO QUANDO ABRO O OT COMO RESOLVO?
  10. matheusrenam postou uma resposta no tópico em Suporte Tibia OTServer
    é sabe me dizer se existe algum macro que nao atrapalhe mexer no windows que solte a magia sozinho só para treinar?
  11. matheusrenam postou uma resposta no tópico em Suporte Tibia OTServer
    se conhecer algum macro só pra treinar pelo menos um auto say e talls q funfe eu agradeço
  12. matheusrenam postou uma resposta no tópico em Suporte Tibia OTServer
    entao ja testei todos os tipos de mcv e o elf 8.54 e ng 8.54 mais ate agora nao obtive nenhum resultado ainda estou tentando
  13. matheusrenam postou uma resposta no tópico em Suporte Tibia OTServer
    entao eu tbm penso assim mais o arquivo esta como exe e nao cheio de arquivos e talls
  14. matheusrenam postou uma resposta no tópico em Suporte Tibia OTServer
    Bom eu estou jogando um narutibia versao 8.54 segundo o client http://www.dbobrasil.com.br/naruto mais eu nao consigo abrir bot 8.54 ja tentei mcv de outras versoes e tall

Informação Importante

Confirmação de Termo