Skip to main content
Natro Macro can automatically complete quests from all 6 quest givers in Bee Swarm Simulator. The macro detects quest objectives, gathers required pollen, kills needed mobs, and claims rewards.

Quest givers

The macro supports quests from these NPCs:

Polar Bear

High-tier quests requiring specific mob kills and field gathering across multiple fields.

Black Bear

Simple pollen collection quests focusing on specific fields or pollen colors.

Brown Bear

Mid-tier quests with mixed objectives including pollen and mob kills.

Bucko Bee

Blue-focused quests requiring blue pollen, blue field gathering, and blue booster usage.

Riley Bee

Red-focused quests requiring red pollen, red field gathering, and red booster usage.

Honey Bee

Beginner quests teaching basic game mechanics.

Quest configuration

Basic settings

QuestGatherMins = 5                      // Minutes to gather per quest field
QuestGatherReturnBy = "Walk"             // Return method (Walk/Reset)
QuestBoostCheck = 0                      // Use field boosters for quests

Quest giver toggles

PolarQuestCheck = 0                    // Enable Polar Bear quests
PolarQuestGatherInterruptCheck = 1     // Interrupt gathering for quests
PolarQuestProgress = "Unknown"         // Current quest progress
Polar Bear quests are the most complex, often requiring multiple mob kills and field visits.

Quest detection

The macro automatically detects quest objectives using image recognition:

Quest types

Requires gathering specific amounts of pollen from fields:
// Example: Black Bear "Fun In The Sunflowers"
[1, "Collect", "Sunflower"]

// Example: Polar Bear "Exotic Salad"
[1, "Collect", "Cactus"]
[2, "Collect", "Rose"]
[3, "Collect", "Blue Flower"]
[4, "Collect", "Clover"]
The macro will visit each required field and gather until the objective is complete.
Requires killing specific enemies:
// Example: Polar Bear "High Protein"
[4, "Kill", "Spider"]
[3, "Kill", "Scorpions"]
[2, "Kill", "Mantis"]
[1, "Collect", "Sunflower"]
The macro tracks kill counts and returns to spawn locations as needed.
Requires using specific abilities or boosters:
// Example: Bucko Bee "Booster"
[2, "Get", "BlueBoost"]
[1, "Collect", "Any"]
Enable QuestBoostCheck to automatically use required boosters.
Combines multiple objective types:
// Example: Polar Bear "Extreme Stir-Fry"
[6, "Kill", "Werewolf"]
[5, "Kill", "Scorpions"]
[4, "Kill", "Spider"]
[1, "Collect", "Cactus"]
[2, "Collect", "Bamboo"]
[3, "Collect", "Dandelion"]

Quest completion flow

Standard quest cycle

  1. Detection - Macro checks if a quest is available
  2. Acceptance - Walks to quest giver and accepts quest
  3. Objective completion:
    • Visits required fields for pollen collection
    • Hunts required mobs at spawn locations
    • Uses abilities/boosters as needed
  4. Turn-in - Returns to quest giver and claims reward
  5. Repeat - Checks for next quest

Gather interrupt system

When QuestGatherInterruptCheck is enabled, the macro will pause normal gathering to complete quest objectives.
PolarQuestGatherInterruptCheck = 1
BuckoQuestGatherInterruptCheck = 1  
RileyQuestGatherInterruptCheck = 1
How it works:
  • During normal field gathering, macro checks for quest fields
  • If current field matches a quest objective, continues gathering
  • Tracks quest progress and completes objectives efficiently
  • Returns to normal gathering rotation after quest turn-in

Quest data reference

Polar Bear quests

High Protein
  • Kill 4 Spiders
  • Kill 3 Scorpions
  • Kill 2 Mantis
  • Collect Sunflower pollen
Extreme Stir-Fry
  • Kill 6 Werewolves
  • Kill 5 Scorpions
  • Kill 4 Spiders
  • Collect Cactus pollen
  • Collect Bamboo pollen
  • Collect Dandelion pollen

Black Bear quests

Blue Flower Bliss - Collect Blue Flower pollenDelve Into Dandelions - Collect Dandelion pollenFun In The Sunflowers - Collect Sunflower pollenMission For Mushrooms - Collect Mushroom pollenPepper Patrol - Collect Pepper pollen

Bucko/Riley Bee quests

Abilities - Collect any pollen
Bamboo - Collect Bamboo pollen
Flowers - Collect Blue Flower pollen
Pine Trees - Collect Pine Tree pollen
Goo - Collect blue pollen
Pollen - Collect blue pollen
Booster - Get blue field booster, collect any pollen
Skirmish - Kill Rhino Beetles, collect Blue Flower pollen
Tango - Kill Mantis, collect blue pollen

Quest settings

Optimal configuration

For maximum quest efficiency, use these recommended settings:
QuestGatherMins = 5                // Enough time to complete most objectives
QuestGatherReturnBy = "Walk"       // Safer than reset for quest fields
QuestBoostCheck = 1                // Use boosters for booster quests

// Enable interrupt for quest-focused NPCs
PolarQuestGatherInterruptCheck = 1
BuckoQuestGatherInterruptCheck = 1
RileyQuestGatherInterruptCheck = 1

Priority in action list

Quest completion is handled by the “QuestRotate” action in the priority list. Adjust its position relative to “Gather” to control when quests are completed.

Troubleshooting

Common quest issues and solutions:
Macro doesn’t accept quests:
  • Ensure quest giver toggle is enabled (PolarQuestCheck = 1)
  • Check that you don’t already have an active quest
  • Verify the macro can detect the quest giver NPC
Quest progress not tracking:
  • Quest objectives are image-recognized from the quest UI
  • Ensure Roblox graphics quality is set to lowest
  • Check that your display scale is 100%
Gets stuck on mob kill objectives:
  • Some mobs require specific conditions (time of day, buffs)
  • Werewolf only spawns at night
  • Enable bugrun features if struggling with kills
Skips available quests:
  • Check LastBlackQuest/LastBrownQuest timers
  • These prevent spam-accepting the same quest
  • Timers reset when quest is completed

Build docs developers (and LLMs) love