Guia de Farming
<style> /* =========================
TimeRO Wiki Safe UI Block ========================= */
.timero-ui {
--bg-1: rgba(6, 14, 28, 0.92); --bg-2: rgba(9, 20, 38, 0.88); --bg-3: rgba(13, 26, 48, 0.78); --line: rgba(255,255,255,0.07); --text: #eaf2ff; --muted: rgba(180, 204, 235, 0.68); --cyan: #00d4ff; --cyan-soft: rgba(0,212,255,0.10); --gold: #f9c500; --gold-soft: rgba(249,197,0,0.10); --green: #00ff88; --green-soft: rgba(0,255,136,0.10); --orange: #ff8a2a; --orange-soft: rgba(255,138,42,0.10); --purple: #b06cff; --purple-soft: rgba(176,108,255,0.10); --red: #ff5b7a; --shadow: 0 10px 30px rgba(0,0,0,0.20); color: var(--text); font-family: "Segoe UI", system-ui, sans-serif;
}
.timero-ui * {
box-sizing: border-box;
}
.timero-block {
background: linear-gradient(180deg, var(--bg-2), var(--bg-1)); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow);
}
.timero-muted {
color: var(--muted);
}
.timero-section-title {
margin: 0 0 14px; font-size: 1.15rem; font-weight: 900; color: #ffffff; letter-spacing: 0.02em;
}
/* =========================
Method Tabs ========================= */
.timero-tabs {
width: 100%; margin-bottom: 26px;
}
.timero-tab-input {
display: none;
}
.timero-tab-nav {
display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-bottom: 18px;
}
.timero-tab-label {
display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 54px; padding: 14px 16px; border-radius: 14px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); color: rgba(180,204,235,0.72); font-size: 0.88rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; cursor: pointer; user-select: none; transition: 0.18s ease; text-align: center;
}
.timero-tab-label:hover {
transform: translateY(-1px); border-color: rgba(255,255,255,0.14); color: #ffffff;
}
- method-tab-grind:checked ~ .timero-tab-nav label[for="method-tab-grind"] {
background: linear-gradient(135deg, rgba(249,197,0,0.18), rgba(249,197,0,0.06)); border-color: rgba(249,197,0,0.30); color: var(--gold); box-shadow: 0 0 0 1px rgba(249,197,0,0.10) inset;
}
- method-tab-market:checked ~ .timero-tab-nav label[for="method-tab-market"] {
background: linear-gradient(135deg, rgba(0,212,255,0.16), rgba(0,212,255,0.05)); border-color: rgba(0,212,255,0.28); color: var(--cyan); box-shadow: 0 0 0 1px rgba(0,212,255,0.10) inset;
}
- method-tab-passive:checked ~ .timero-tab-nav label[for="method-tab-passive"] {
background: linear-gradient(135deg, rgba(176,108,255,0.18), rgba(176,108,255,0.05)); border-color: rgba(176,108,255,0.28); color: var(--purple); box-shadow: 0 0 0 1px rgba(176,108,255,0.10) inset;
}
.timero-tab-panels {
position: relative;
}
.timero-tab-panel {
display: none; padding: 22px; border-radius: 18px; background: linear-gradient(180deg, rgba(9,20,38,0.78), rgba(6,14,28,0.92)); border: 1px solid rgba(255,255,255,0.06);
}
- method-tab-grind:checked ~ .timero-tab-panels .panel-grind,
- method-tab-market:checked ~ .timero-tab-panels .panel-market,
- method-tab-passive:checked ~ .timero-tab-panels .panel-passive {
display: block;
}
.timero-method-grid {
display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 18px;
}
.timero-card {
padding: 20px; border-radius: 16px; background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.06);
}
.timero-card h3 {
margin: 0 0 8px; font-size: 1.05rem; font-weight: 900; color: #fff;
}
.timero-card p {
margin: 0 0 12px; line-height: 1.7; color: var(--muted); font-size: 0.90rem;
}
.timero-list {
margin: 0; padding-left: 18px; color: var(--muted); line-height: 1.7; font-size: 0.85rem;
}
.timero-metric {
margin-bottom: 14px;
}
.timero-metric:last-child {
margin-bottom: 0;
}
.timero-metric-head {
display: flex; justify-content: space-between; gap: 12px; margin-bottom: 6px; font-size: 0.84rem; font-weight: 700;
}
.timero-meter {
height: 8px; border-radius: 999px; background: rgba(255,255,255,0.06); overflow: hidden;
}
.timero-meter-fill {
height: 100%; border-radius: 999px;
}
.timero-tags {
display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px;
}
.timero-tag {
padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: #dff5ff; font-size: 0.76rem; font-weight: 700;
}
/* =========================
Routes Accordion ========================= */
.timero-routes {
display: grid; gap: 12px;
}
.timero-route {
border-radius: 16px; overflow: hidden; background: linear-gradient(180deg, rgba(8,18,34,0.84), rgba(5,12,22,0.92)); border: 1px solid rgba(255,255,255,0.07);
}
.timero-route summary {
list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 14px; width: 100%; padding: 14px 18px; cursor: pointer; user-select: none;
}
.timero-route summary::-webkit-details-marker {
display: none;
}
.timero-route-left {
display: flex; align-items: center; gap: 10px; min-width: 0;
}
.timero-route-pill {
display: inline-flex; align-items: center; gap: 9px; padding: 11px 16px; border-radius: 12px; font-size: 0.88rem; font-weight: 800; letter-spacing: 0.02em; border: 1px solid transparent; transition: 0.18s ease; white-space: nowrap;
}
.timero-route-chevron {
font-size: 0.90rem; color: rgba(180,204,235,0.62); transition: transform 0.18s ease; flex-shrink: 0;
}
.timero-route[open] .timero-route-chevron {
transform: rotate(90deg);
}
.timero-route-content {
padding: 0 18px 18px 18px; border-top: 1px solid rgba(255,255,255,0.05);
}
.timero-route-grid {
display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding-top: 16px;
}
.route-a .timero-route-pill {
border-color: rgba(249,197,0,0.22); background: rgba(249,197,0,0.08); color: rgba(249,197,0,0.92);
} .route-b .timero-route-pill {
border-color: rgba(0,212,255,0.22); background: rgba(0,212,255,0.08); color: rgba(0,212,255,0.90);
} .route-c .timero-route-pill {
border-color: rgba(0,255,136,0.22); background: rgba(0,255,136,0.08); color: rgba(0,255,136,0.90);
} .route-d .timero-route-pill {
border-color: rgba(255,138,42,0.24); background: rgba(255,138,42,0.08); color: rgba(255,138,42,0.94);
} .route-e .timero-route-pill {
border-color: rgba(176,108,255,0.24); background: rgba(176,108,255,0.08); color: rgba(176,108,255,0.92);
}
.timero-route[open].route-a {
border-color: rgba(249,197,0,0.25);
} .timero-route[open].route-b {
border-color: rgba(0,212,255,0.25);
} .timero-route[open].route-c {
border-color: rgba(0,255,136,0.25);
} .timero-route[open].route-d {
border-color: rgba(255,138,42,0.25);
} .timero-route[open].route-e {
border-color: rgba(176,108,255,0.25);
}
/* =========================
Responsive ========================= */
@media (max-width: 980px) {
.timero-method-grid,
.timero-route-grid {
grid-template-columns: 1fr;
}
}
@media (max-width: 720px) {
.timero-tab-nav {
grid-template-columns: 1fr;
}
.timero-tab-label {
min-height: 50px;
font-size: 0.82rem;
}
.timero-route summary {
padding: 12px 14px;
}
.timero-route-pill {
width: 100%;
justify-content: flex-start;
white-space: normal;
}
} </style>
<input class="timero-tab-input" type="radio" name="timero-method-tabs" id="method-tab-grind" checked> <input class="timero-tab-input" type="radio" name="timero-method-tabs" id="method-tab-market"> <input class="timero-tab-input" type="radio" name="timero-method-tabs" id="method-tab-passive">
<label for="method-tab-grind" class="timero-tab-label">⚔️ Grind Ativo</label>
<label for="method-tab-market" class="timero-tab-label">🏪 Mercado</label>
<label for="method-tab-passive" class="timero-tab-label">💤 Renda Passiva</label>
⚔️ Grind Ativo
O método mais direto para gerar Zeny: matar monstros, coletar drops e vender com eficiência. Ideal para jogadores que querem lucro contínuo enquanto upam.
- Bom para iniciantes e classes com bom clear speed
- Combina lucro com ganho de EXP
- Escala muito bem com mapas certos e rota otimizada
Zeny/hora ???M–???M
Dificuldade Moderada
Consistência Alta
🏪 Mercado
Compra e revenda de itens, leitura de preço e arbitragem entre oferta e demanda. Excelente para jogadores com capital e bom conhecimento do servidor.
- Não exige grind constante
- Escala com capital inicial
- Excelente margem em itens de alta rotação
Potencial Muito Alto
Conhecimento Alto
Risco Moderado
💤 Renda Passiva
Formas de gerar valor com menos presença ativa, como produção, revenda lenta, estoque estratégico ou ciclos sazonais do servidor.
- Menor intensidade de jogo
- Boa para complementar outras fontes de renda
- Excelente para planejamento de longo prazo
Esforço ativo Baixo
Retorno Estável
Tempo Flexível
<details class="timero-route route-a" open>
<summary>
</summary>
Visão geral
Rota indicada para início de progressão. Foque em monstros com drops fáceis de vender e baixa exigência de equipamento.
Pontos fortes
- Baixo risco
- Entrada barata
- Boa consistência
</details>
<details class="timero-route route-b">
<summary>
</summary>
Visão geral
Rota intermediária com melhor margem por hora. Ideal para classes com clear speed consistente e alguma mobilidade.
Pontos fortes
- Lucro melhor que early game
- Boa densidade de mobs
- Escala bem com consumíveis
</details>
<details class="timero-route route-c">
<summary>
</summary>
Visão geral
Rota focada em drops verdes e materiais com rotação alta no mercado. Excelente equilíbrio entre volume e liquidez.
Pontos fortes
- Liquidez alta
- Boa para estoque
- Menor dependência de drop raro
</details>
<details class="timero-route route-d">
<summary>
</summary>
Visão geral
Rota avançada com maior exigência de build, mas com forte potencial de lucro quando executada com eficiência.
Pontos fortes
- Bom pico de Zeny/h
- Mapas mais lucrativos
- Recompensa boa para jogadores experientes
</details>
<details class="timero-route route-e">
<summary>
</summary>
Visão geral
Rota endgame para personagens preparados. Melhor quando focada em metas específicas, drops premium e eficiência máxima.
Pontos fortes
- Maior teto de lucro
- Melhores drops premium
- Excelente para veteranos
</details>