This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy, math, random | |
class ILeveling(): | |
def __init__(self): | |
self.EXP_FIELD = "networkExp" | |
self.LVL_FIELD = "networkLevel" | |
self.BASE = 10_000 | |
self.GROWTH = 2_500 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package net.hypixel.api.util; | |
public interface ILeveling { | |
String EXP_FIELD = "networkExp"; | |
String LVL_FIELD = "networkLevel"; | |
double BASE = 10_000; | |
double GROWTH = 2_500; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import time | |
# Mario Animation in Python | |
# Source (Written in C): https://www.youtube.com/watch?v=AwpWm6VIGl4 | |
if os.name == 'nt': | |
clear = 'cls' | |
else: | |
clear = 'clear' |