Guia de Farming: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 2: | Line 2: | ||
__NOEDITSECTION__ | __NOEDITSECTION__ | ||
<div id="timero-guide"> | |||
< | |||
< | <style> | ||
/* ===== FIXED TIMERO UI ===== */ | |||
#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> | |||
<h2 style="font-size:26px;font-weight:900;">Guia de Farming</h2> | |||
<p style="color:rgba(180,200,240,.7);">Métodos, rotas e estratégias para farmar Zeny no TimeRO.</p> | |||
<!-- ========================= | |||
METHODS | |||
========================= --> | |||
<h3 style="margin-top:30px;">Métodos de Farming</h3> | |||
<div class="tab-buttons"> | |||
<div class="tab-btn active" data-tab="grind">⚔️ Grind</div> | |||
<div class="tab-btn" data-tab="market">🏪 Mercado</div> | |||
<div class="tab-btn" data-tab="passive">💤 Passivo</div> | |||
</div> | |||
<div class="tab-panel active" id="tab-grind"> | |||
<div class="card"> | |||
<b>Grind Ativo</b><br><br> | |||
Mate monstros, colete drops e venda.<br><br> | |||
<b>✔ Vantagens</b> | |||
<ul> | |||
<li>Lucro imediato</li> | |||
<li>EXP junto</li> | |||
</ul> | |||
<b>✖ Desvantagens</b> | |||
<ul> | |||
<li>Requer atenção</li> | |||
</ul> | |||
</div> | |||
</div> | |||
<br> | <div class="tab-panel" id="tab-market"> | ||
<div class="card"> | |||
<b>Mercado</b><br><br> | |||
Compra barato, vende caro. | |||
</div> | |||
</div> | |||
== | <div class="tab-panel" id="tab-passive"> | ||
<div class="card"> | |||
<b>Renda Passiva</b><br><br> | |||
Lucro com menor esforço ativo. | |||
</div> | |||
</div> | |||
<!-- ========================= | |||
ROUTES | |||
========================= --> | |||
<h3 style="margin-top:30px;">Rotas</h3> | |||
< | <div class="route-bar"> | ||
<div class="route-pill active" data-route="a">Rota A</div> | |||
<div class="route-pill" data-route="b">Rota B</div> | |||
<div class="route-pill" data-route="c">Rota C</div> | |||
</div> | |||
<div id="route-a" class="route-content active"> | |||
<div class="card">Conteúdo da Rota A</div> | |||
</div> | |||
<div id="route-b" class="route-content"> | |||
<div class="card">Conteúdo da Rota B</div> | |||
</div> | |||
<div id="route-c" class="route-content"> | |||
<div class="card">Conteúdo da Rota C</div> | |||
</div> | |||
<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> | |||
</div> | |||
Revision as of 11:53, 13 April 2026
<style> /* ===== FIXED TIMERO UI ===== */
- 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 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
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>