Auto-Rotation

Guide to using TPM's auto-rotation feature for scheduling account on/off times.

When to Use

  • Running accounts 24/7 concerns you

  • Want to rotate accounts through different time periods

  • Managing multiple accounts with different strategies

  • Trying to minimize detection risk

Configuration

Basic Syntax

In your config.js:

module.exports = {
    igns: ["Account1", "Account2"],

    autoRotate: {
        "Account1": "r2:3f1",
        "Account2": "r1:4f0"
    }

    // ... other settings
}

Rotation String Format

Format: "r[hours]:f[hours]f[hours]"

  • r[hours] = Rest time (offline)

  • f[hours] = Flip time (active)

  • Can chain multiple periods

Examples:

Components

Rest Period (r)

Format: r[hours]

Account is offline/idle during this time.

Examples:

  • r1 = Rest for 1 hour

  • r2 = Rest for 2 hours

  • r0 = No rest period

Flip Period (f)

Format: f[hours]

Account is actively flipping during this time.

Examples:

  • f3 = Flip for 3 hours

  • f4 = Flip for 4 hours

  • f6 = Flip for 6 hours

Friend Visit (optional)

The second f component can represent friend island visits (for special features).

Examples:

  • f1 = Visit friend for 1 hour

  • f2 = Visit friend for 2 hours

  • f0 = No friend visit

Examples

Example 1: Conservative Rotation

Schedule:

  • 4 hours offline

  • 4 hours flipping

  • Repeats

Total: 8-hour cycle, 50% uptime

Use Case: Very conservative, appears natural

Example 2: Aggressive Rotation

Schedule:

  • 1 hour offline

  • 6 hours flipping

  • 1 hour friend visit

  • Repeats

Total: 8-hour cycle, 75% flipping time

Use Case: Maximum flipping time while maintaining some rest

Example 3: Multiple Accounts Staggered

Result: Accounts have different schedules, ensuring coverage

Use Case: Multiple accounts with rotating coverage

Example 4: Night/Day Split

Result: One account active during day, another during night

Use Case: 24/7 coverage with two accounts

Discord Notifications

When auto-rotation occurs, TPM sends Discord notifications:

Startup Notification:

Shutdown Notification:

Countdown Updates:

  • Notifications sent at intervals

  • Warns before rotation events

  • Helps track schedule

Managing Rotation

Viewing Current Schedule

Check your config.js for the schedule, or monitor Discord notifications.

Adjusting Rotation

To change rotation:

  1. Stop TPM

  2. Edit config.js

  3. Update autoRotate values

  4. Restart TPM

Disabling Rotation

Option 1: Remove autoRotate section

Option 2: Set to continuous flipping

Best Practices

1. Start Conservative

Begin with more rest time:

Gradually increase flipping time as comfortable.

2. Vary Schedules

Don't use the same schedule for all accounts:

3. Consider Time Zones

Plan schedules around peak flipping times:

  • Peak Hypixel hours: 3-8 PM EST

  • Off-peak: Late night/early morning

Advanced Rotation Strategies

Strategy 1: Rolling Coverage

Three accounts, always one

Result: 24/7 coverage with three accounts

Strategy 2: Peak Hours Focus

Focus on profitable hours:

Schedule: Only flip during 3-9 PM EST (peak hours)

Strategy 3: Randomized (Manual)

Change schedule regularly to avoid patterns:

  • Week 1: "r2:4f2"

  • Week 2: "r1:5f1"

  • Week 3: "r3:3f3"

Strategy 4: Main + Backup

Result: Main account does heavy lifting, backup covers gaps

Troubleshooting

Rotation Not Working

Symptoms:

  • Bot doesn't go offline/online as scheduled

  • No rotation notifications

Solutions:

  1. Check config.js syntax

  2. Verify autoRotate format

  3. Restart TPM

  4. Check console for errors

Wrong Rotation Times

Symptoms:

  • Bot rotating at unexpected times

  • Schedule doesn't match config

Solutions:

  1. Double-check rotation string format

  2. Verify account name spelling

  3. Check system time on VPS

  4. Review Discord notifications

Discord notifications not sending

Symptoms:

  • No rotation notifications in Discord

Solutions:

  1. Verify webhook URL is correct

  2. Check webhook permissions

  3. Test webhook manually

  4. Review TPM console output

Example Complete Config with Rotation

Visual Schedule Examples

Example: "r2:4f2"

Total cycle: 8 hours

  • 25% rest

  • 50% flipping

  • 25% visiting

Example: "r1:6f1"

Total cycle: 8 hours

  • 12.5% rest

  • 75% flipping

  • 12.5% visiting

Next Steps

Last updated

Was this helpful?