Guia de Farming

From TimeRO Wiki
Revision as of 11:53, 13 April 2026 by 45.179.28.214 (talk)
Jump to navigation Jump to search


<style> /* ===== FIXED TIMERO UI ===== */

  1. timero-guide{
 font-family:'Segoe UI',system-ui,sans-serif;
 color:#e8eef8;

}

/* TABS */ .tab-buttons{

 display:flex;
 border-radius:14px;
 overflow:hidden;
 border:1px solid rgba(255,255,255,0.08);
 background:rgba(0,0,0,0.35);

}

.tab-btn{

 flex:1;
 padding:16px;
 text-align:center;
 cursor:pointer;
 font-weight:800;
 letter-spacing:.05em;
 text-transform:uppercase;
 transition:.2s;
 color:rgba(180,200,240,.6);
 border-right:1px solid rgba(255,255,255,0.06);

}

.tab-btn:last-child{border-right:none;}

.tab-btn.active{

 background:linear-gradient(135deg,rgba(249,197,0,0.2),rgba(249,197,0,0.05));
 color:#f9c500;

}

.tab-panel{display:none;margin-top:20px;} .tab-panel.active{display:block;}

/* CARDS */ .card{

 background:rgba(0,0,0,0.35);
 border:1px solid rgba(255,255,255,0.08);
 border-radius:16px;
 padding:22px;

}

/* ROUTES */ .route-bar{

 display:flex;
 gap:10px;
 flex-wrap:wrap;

}

.route-pill{

 padding:10px 16px;
 border-radius:10px;
 cursor:pointer;
 font-weight:700;
 border:1px solid rgba(255,255,255,0.1);
 transition:.2s;

}

.route-pill.active{

 outline:2px solid rgba(255,255,255,0.2);

}

.route-content{display:none;margin-top:15px;} .route-content.active{display:block;}

</style>


Guia de Farming

Métodos, rotas e estratégias para farmar Zeny no TimeRO.


Métodos de Farming

⚔️ Grind
🏪 Mercado
💤 Passivo
   Grind Ativo

Mate monstros, colete drops e venda.

✔ Vantagens
  • Lucro imediato
  • EXP junto
   ✖ Desvantagens
  • Requer atenção
   Mercado

Compra barato, vende caro.
   Renda Passiva

Lucro com menor esforço ativo.


Rotas

Rota A
Rota B
Rota C
Conteúdo da Rota A
Conteúdo da Rota B
Conteúdo da Rota C


<script> /* ===== FIXED JS (WORKS IN MEDIAWIKI) ===== */

/* TABS */ document.querySelectorAll('#timero-guide .tab-btn').forEach(btn=>{

 btn.onclick=function(){
   document.querySelectorAll('#timero-guide .tab-btn').forEach(b=>b.classList.remove('active'));
   document.querySelectorAll('#timero-guide .tab-panel').forEach(p=>p.classList.remove('active'));
   btn.classList.add('active');
   document.getElementById('tab-'+btn.dataset.tab).classList.add('active');
 };

});

/* ROUTES */ document.querySelectorAll('#timero-guide .route-pill').forEach(btn=>{

 btn.onclick=function(){
   document.querySelectorAll('#timero-guide .route-pill').forEach(b=>b.classList.remove('active'));
   document.querySelectorAll('#timero-guide .route-content').forEach(c=>c.classList.remove('active'));
   btn.classList.add('active');
   document.getElementById('route-'+btn.dataset.route).classList.add('active');
 };

}); </script>