Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- module.exports = {
- WelcomeMessage: "Hello {user}, welcome to our services!, you may type !help for more information." // "{user}" means customer name.
- , GoodbyeMessage: "We haven't talk for a while, i need to say goodbye.. but if you want to use our services again, you can just send a friend invite :)"
- , PlayingState: "« {sets_amount} sets - {rates}»" //Playing state to be displayed, the "Currently playing"..
- , Help: [ //Response to the "!help" command
- "This is a bot to you easy level up your steam profile! ",
- "", //empty line, also means a breakline
- "• You may type !commands for the list of commands :)",
- "• Check our tutorial! https://www.youtube.com/watch?v=87YHEq9Pxss"
- ]
- , Commands: [ //Response to the "!commands" command, to change anytihng here doesnt change the bot behavior, but this response..
- "/pre Commands:",
- "• !help - Useful links",
- "• !owner - show my owner steam profile, if you have any major issues you may contact my owner!",
- "",
- "• !imabot - disable our automatic response to unknow commands",
- "• !stats - show current amount of bot currencies",
- "",
- "• !prices - show our current rates",
- "• !level [your_dream_level] - calculate how many sets, and how many currencies will cost you to a desired level",
- "• !check - show how many sets the bot have that you haven't crafted yet",
- "• !checkone - show how many sets the bot have that you haven't crafted yet, badge collector mode.",
- "",
- //csgo commands
- {
- desc: "CSGO Section.",
- types: ["csgo", "section"]
- },
- {
- desc: "• !check [amount_of_keys] - show how many sets and which level you would reach for a specific amount of keys",
- types: ["csgo"]
- },
- {
- desc: "• !buy [amount_of_keys] - use to buy that amount of csgo keys for sets you dont have, following the current BOT rate",
- types: ["csgo"]
- },
- {
- desc: "• !buyany [amount_of_keys] - use to buy that amount of csgo keys for any sets, following the current BOT rate",
- types: ["csgo"]
- },
- {
- desc: "• !buyone [amount_of_keys] - use this if you are a badge collector. BOT will send only one set of each game, following the current BOT rate",
- types: ["csgo"]
- },
- "",
- //hydra commands
- {
- desc: "Hydra Section.",
- types: ["hydra", "section"]
- },
- {
- desc: "• !checkhydra [amount_of_keys] - show how many sets and which level you would reach for a specific amount of hydra keys",
- types: ["hydra"]
- },
- {
- desc: "• !buyhydra [amount_of_keys] - use to buy that amount of hydra keys for sets you dont have, following the current BOT rate",
- types: ["hydra"]
- },
- {
- desc: "• !buyanyhydra [amount_of_keys] - use to buy that amount of hydra keys for any sets, following the current BOT rate",
- types: ["hydra"]
- },
- {
- desc: "• !buyonehydra [amount_of_keys] - use this if you are a badge collector. BOT will send only one set of each game, following the current BOT rate",
- types: ["hydra"]
- },
- "",
- //tf2 commands
- {
- desc: "TF2 Section.",
- types: ["tf2", "section"]
- },
- {
- desc: "• !checktf [amount_of_keys] - show how many sets and which level you would reach for a specific amount of tf2 keys",
- types: ["tf2"]
- },
- {
- desc: "• !buytf [amount_of_keys] - use to buy that amount of tf2 keys for sets you dont have, following the current BOT rate",
- types: ["tf2"]
- },
- {
- desc: "• !buyanytf [amount_of_keys] - use to buy that amount of tf2 keys for any sets, following the current BOT rate",
- types: ["tf2"]
- },
- {
- desc: "• !buyonetf [amount_of_keys] - use this if you are a badge collector. BOT will send only one set of each game, following the current BOT rate",
- types: ["tf2"]
- },
- "",
- //gems commands
- {
- desc: "Gems Section.",
- types: ["gems", "section"]
- },
- {
- desc: "• !checkgems [amount_of_gems] - show how many sets and which level you would reach for a specific amount of gems",
- types: ["gems"]
- },
- {
- desc: "• !buygems [amount_of_sets] - use to buy that amount of sets for gems, following the current BOT rate",
- types: ["gems"]
- },
- {
- desc: "• !buyanygems [amount_of_sets] - use to buy that amount of any sets for gems, following the current BOT rate",
- types: ["gems"]
- },
- {
- desc: "• !buyonegems [amount_of_sets] - use this if you are a badge collector. sames as !buyone, buy you pay with gems!",
- types: ["gems"]
- },
- "",
- //Suppliers commands
- {
- desc: "Suppliers Section.",
- types: ["sell", "section"]
- },
- {
- desc: "• !sellcheck - show information about the sets you can sell",
- types: ["sell"]
- },
- {
- desc: "• !sell [amount_of_keys] - sell your sets for csgo keys",
- types: ["csgo", "sell"]
- },
- {
- desc: "• !sellhydra [amount_of_keys] - sell your sets for hydra keys",
- types: ["hydra", "sell"]
- },
- {
- desc: "• !selltf [amount_of_keys] - sell your sets for tf2 keys",
- types: ["tf2", "sell"]
- },
- {
- desc: "• !sellgems [amount_of_sets] - sell your sets for gems",
- types: ["gems", "sell"]
- },
- ]
- , Errors: {
- Default: "Something went wrong, please try again..",
- Input: "/me Failed to parse input; it must be a positive number!",
- Trade: {
- Default: "An error occured while sending your trade offer, please try again..",
- Unavailable: "You're currently unavailable to trade!",
- ToMany: "I have sent too many trade offers, or have too many outstanding trade offers with you.",
- Escrow: "Sorry but i'm not allowed to handle trade hold (escrow)..",
- InvalidItems: "Sorry but someone took the same items i sent, in another trade..",
- OutOfStock: {
- Us: {
- Base: "Unfortunately i don't have enough sets to complete this request..",
- HaveAtLeastOne : "• Although i have {amount} sets that you haven't crafted yet!"
- },
- Them: {
- Base: "Unfortunately you don't have enough sets to complete this request..",
- HaveAtLeastOne : "• Although there is {amount} sets that i can get!"
- }
- }
- },
- Badge: {
- Default: "Failed in load your badge profile, steam can be down, please try again..",
- LowLevel: "You have already reached that level!",
- HighLevel: "Its only allowed to calculate to level {maxlevel}",
- Private: "Steam servers says your profile is private, please make it unprivate so i can calculate how many sets i have for you!"
- },
- Inventory: {
- Default: "Failed in load your inventory, steam can be down, please try again..",
- Private: "Steam servers says your inventory private, please make it unprivate so i can proceed!"
- }
- }
- , ToManySets : "/me You are requesting {requested_sets} sets, and i can't go larger than {max_sets}, so i can't trade more than {currencies}.."
- , stats: "/pre I currently have:"
- , prices: "/pre Currently, prices are:"
- , owner: "If you're experiencing issues please go to our steam group instead of add me on steam :)"
- , level: "You are currently level {current_level}, and it will cost {set_cost} sets to reach level {target_level}!"
- , sellcheck: {
- Have: "You currently have {set_amount} sets i can request..",
- DontHave: "Unfortunately you currently doesn't have any sets i can request!"
- }
- , checkAmount: {
- None: "Sorry but i can't sell you nothing with that amount of {currency}",
- GetLevel: "With {currency} you would get {set_amount} sets, and reach the level {level}!",
- NoLevel: "Witch {currency}, you would get {set_amount} sets, but wouldn't reach a new level.."
- }
- , check: {
- Have: "I currently have {set_amount} sets that you haven't crafted yet!",
- DontHave: "Unfortunately i don't have any sets that you haven't crafted yet.."
- }
- , MissingBotCurrency: {
- Base: "Sorry but i don't have enough currency to complete this request..",
- HaveCurrency: {
- Base: "• Although i have {currencies} available!",
- canRequest: "• I can request up to {sets_amount} sets with all of them, by using {command}"
- },
- //Have some tradable available
- HaveUntradable: "• Although i have {amount} {currency} that are not available to trade yet, come back later?" // didnt have tradables, but did found non-tradables
- }
- , MissingCurrency: {
- Base: "You don't have enough tradables {currency} to complete this request..",
- HaveCurrency: {
- Base: "• Although i did found {currencies} in your inventory..",
- canRequest: "• You can request up to {sets_amount} sets with all of them, by using {command}"
- }, //Have some tradable available
- HaveUntradable: "• Although i did found {amount} {currency} that are not available to trade yet, come back later?" // didnt have tradables, but did found non-tradables
- }
- , toSell: {
- One: "• I can get it by paying {currencies}",
- Multiple: "{br}- I can buy all of them for one of the following currencies:{br}{currencies}"
- }
- , toBuy: {
- One: "• You can get it by paying only {currencies}",
- Multiple: "{br}- You can get the sets by paying one of the following currencies:{br}{currencies}"
- }
- , Warning: { //Responses if user are spamming
- 1: "You are talking to fast!",
- 2: "You are still talking to fast, it can result in a perma block, or you to be unfriended.",
- 3: "You was sending messages to fast and will be removed from my friendlist :("
- }
- , LongRequest: {
- Customer: "/me Proccessing your request, this can take a while so please hold..",
- Admin: "/me Bot is now proccessing your request, this can take a while so please hold.."
- }
- , Request: {
- Customer: "/me Proccessing your request, please hold..",
- Admin: "/me Bot is now proccessing your request, thanks for use the Bluebot !"
- }
- , UnknowCommand: {
- Customer: "/me Unknow command!, Type !help for more information.",
- Admin: "/me Unknow command!, Type !help or !admin for more information."
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment