A Pen by Steven Roberts on CodePen.
This file contains hidden or 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
| add_action( 'bp_settings_setup_nav', 'bbm_add_change_passcode_nav_items' ); | |
| function bbm_add_change_passcode_nav_items() { | |
| bp_core_new_subnav_item( array( | |
| 'name' => __( 'Billing', 'buddyboss' ), | |
| 'slug' => 'billing', | |
| 'parent_url' => trailingslashit( get_site_url() ), | |
| 'parent_slug' => 'settings', | |
| 'screen_function' => 'bp_settings_screen_billing', | |
| 'position' => 25, |
This file contains hidden or 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.yomnetwork.battleroyale2.player | |
| import com.scarabcoder.commons.* | |
| import com.scarabcoder.commons.config.configFriendlyName | |
| import net.yomnetwork.battleroyale2.setup.DataFolders | |
| import org.bukkit.configuration.file.FileConfiguration | |
| import org.bukkit.configuration.file.YamlConfiguration | |
| import java.io.File | |
| enum class PlayerMessages(val default: String, vararg val placeholders: String) { |
This file contains hidden or 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 ca.yomnetwork.skills.API; | |
| import ca.yomnetwork.skills.Enums.Level; | |
| import ca.yomnetwork.skills.Managers.*; | |
| import ca.yomnetwork.skills.Objects.Bonus; | |
| import ca.yomnetwork.skills.Objects.Boosts.Boost; | |
| import ca.yomnetwork.skills.Objects.Class; | |
| import ca.yomnetwork.skills.Objects.Exceptions.*; | |
| import ca.yomnetwork.skills.Objects.Exceptions.ClassNotFoundException; | |
| import ca.yomnetwork.skills.Objects.Skill; |
This file contains hidden or 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 com.vex.random; | |
| import java.util.HashMap; | |
| import java.util.Map; | |
| import java.util.TreeMap; | |
| import org.bukkit.ChatColor; | |
| public class ColorUtil { |