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
// v. 1.03 (Last update: 15.05.2025 13:59 UTC) | |
function ppl(args) { | |
const Season_start_or_end_date = new Date("12.21.2024 14:18"); | |
const Off_season_start_or_end_date = new Date("10.12.2024 13:38"); | |
const Current_season = 9; | |
const Current_off_seasons = ["24", " 25", " 26", " 150", " 34", " 5"]; | |
const Waiting_new_season = false; | |
const Waiting_new_off_season = true; | |
const Current_cost_of_passage = 600; | |
const Current_cost_of_passage_for_experiment = 50; |
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
const UID_storage = "balbesing_UID"; | |
const Coins_storage = "balbesing_private_coins"; | |
const Inventory_storage = "balbesing_private_inventory"; | |
const drinks = ["balbevodka", "balbeglihwein", "balbeportwine", "balbepunch", "balbeliqueur", "balbemartinez", | |
"balbeshampagne", "balbeer"]; | |
const drinksCosts = [200, 150, 300, 180, 250, 350, 400, 120]; | |
const drinksNames = ["Балбеводка", "Балбеглинтвейн", "Балбепортвейн", "Балбепунш", "Балбеликёр", "Балбемартинез", | |
"Балбешампанское", "Балбепиво"]; | |
const drinksNamesReplacement = ["балбеводку", "балбеглинтвейн", "балбепортвейн", "балбепунш", "балбеликёр", "балбемартинез", | |
"балбешампанское", "балбепиво"]; |
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
const arr = ['cot', 'wink', 'plink', 'plonk', 'plinkVibe', 'susplink', 'think', 'pleep', 'BLEB', 'otagCurse', 'otagFish', 'otagHiiii', 'otagShrug', 'otagSmile', 'otagBusiness']; | |
function getDailyCot() { | |
let ans = 'Ваш ежедневный cot ик это: '; | |
if (arr.length > 0) { | |
const randomIndex = Math.floor(Math.random() * arr.length); | |
ans += arr[randomIndex]; | |
} |