Network Level

Helpers
  • Helper
  • Player
  • Level

# Network Level

# Introduction

The getNetworkLevel() helper calculates the network level from either a Player object or a network exp value.

# Example

import { Client as Hypixel, getNetworkLevel } from "@zikeji/hypixel";
const client = new Hypixel("API_KEY");
(async () => {
  const player = await client.player.uuid("ec1811e6822b4843bcd4fef82f75deb7");
  const info = getNetworkLevel(player);
  console.log(info);
  // output:
  {
    level: 127,
    preciseLevel: 127.02427692307693,
    currentExp: 20955390,
    expToLevel: 20947500,
    expToNextLevel: 325000,
    remainingExpToNextLevel: 317110
  }
})();
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Last update: March 30, 2021 05:37