▪️Mission Mode

In addition to distance tracking, GrabWay offers Mission Mode, a feature designed to engage users with challenges that test their skills and reward their dedication.

Challenge Types:

Mission Mode offers various challenges that include:

  • Covering specific distances

  • Reaching specific locations

  • Completing tasks within a set time frame

Reward Calculation in Python:

The rewards earned from missions can be calculated based on each successfully completed mission:

# Function to calculate total rewards from mission completions
def calculate_total_rewards(mission_rewards):
    total_rewards = sum(mission_rewards)
    return total_rewards

# Example rewards from completed missions (in tokens or points)
mission_rewards = [50, 100, 75, 120]  # Replace with actual mission reward data

# Calculate total rewards
total_rewards = calculate_total_rewards(mission_rewards)
print(f"Total Rewards: {total_rewards} tokens")

Total Rewards (R) = Σ (R_m)

  • ( R ) = Total rewards earned

  • ( R_m ) = Individual rewards from each completed mission

Reward Opportunities:

  • Successful mission completions grant various rewards, such as NFTs and Reward Tokens. These bonuses can significantly boost user progress, unlocking better NFT Cars, vehicle upgrades, and other valuable items within the GrabWay ecosystem.

Last updated