• VNOJ
  • Trang chủ
  • Danh sách bài
  • Các bài nộp
  • Thành viên
    >
    • Tổ chức
  • Các kỳ thi
  • Wiki
  • Thông tin
    >
    • FAQ
    • Trình chấm ngoài
    • Tag
    • Máy chấm
    • Devlog
    • Github
    • Tickets
    • Thư viện đề thi
    • Đề xuất contest
  • Tạp chí 2025
VI EN Đăng nhập  hoặc  Đăng ký

Blog - Trang 1

  • Thông tin
  • Thống kê
  • Blog

-2

BOT'S COMMAND

star_6a0sonha đã đăng vào 18, Tháng 11, 2021, 17:00

This is the bot command trick intructions for your bots. You can change any command, any list of command I will help you more detail in the code CODING TYPE = CPP (C++)

The code may 10% not work on other program, so I strongly recommended you install Code::Block. It's completely free and suitable for week computer.

Please feel free to command below if the code does not work. Like this: Visual Studio C++ - Not work

🎞 Subcribe to my youtube at: 👉 https://www.youtube.com/channel/UCvpqlnV29UZks3FsiZGs75w. No video yet, sorry :)

#include <bits/stdc++.h>
using namespace std;

int main()
{
    cout << "                 THIS IS THE COMMAND LIST" << endl;
    cout << "v0.7.7 - MAKED BY - HIDEN NAME (WORK 100% WITHOUT INTERNET)" << endl;
    cout << "[1] Custom VPN Bot" << endl; //Change your first group name
    cout << "[2] Shop List" << endl; //Change your second group name
    cout << "[3] Shop Guide" << endl; //Change your third group name
    cout << "[4] Bot Settings" << endl; //Change your fourth group name
    cout << "[5] Solo Guide" << endl; //Change your fifth group name
    cout << "[6] Routine" << endl; //Change your sixth group name
    cout << "[7] Economy" << endl; //Change your seventh group name
    cout << "Please choose one to see the code guide" << endl;
    int code;
    cin >> code;
    switch (code) // Change your text in the quote if you would like
    {
        case 1: cout << "Here is the command list of [1] Custom VPN Bot" << endl; break;
        case 2: cout << "Here is the command list of [2] Shop List"<< endl; break;
        case 3: cout << "Here is the command list of [3] Solo Guide"<< endl; break;
        case 4: cout << "Here is the command list of [4] Bot Settings"<< endl; break;
        case 5: cout << "Here is the command list of [5] Solo Guide"<< endl; break;
        case 6: cout << "Here is the command list of [6] Routine"<< endl; break;
        case 7: cout << "Here is the command list of [7] Economy"<< endl; break;
        default:
            {
                cout << "PLEASE CHOOSE A NUMBER FROM 1 - 7 NEXT TIME" << endl;
                return 0;
            }

    }
    switch (code)
    {
    case 1: // About first group before
        {
            cout << "/gvpnsettings - change your vpn server" << endl;
            cout << "/gbestvpn - choose best vpn" << endl;
            cout << "/gdefaultvpn - change to the default" << endl;
            cout << "/gstopvpn - turn off vpn" << endl;
            cout << "/gsetvpn - turn on vpn" << endl;
            break;
        }
    case 2: // About second group before
        {
            cout << "/gshop - show the shop" << endl;
            cout << "/gbuy - buy something in the shop" << endl;
            cout << "/gview {item} - show what the item does" << endl;
            cout << "/ggroup [group] - show the group" << endl;
            break;
        }
    case 3: // About third group before
        {
            cout << "/gshophelp - show the shop help" << endl;
            cout << "/gdep (number of money) - deposit your money" << endl;
            cout << "/gwith - (number of money) - withdraw your money" << endl;
            break;
        }
    case 4: // About fourth group before
        {
            cout << "/gsettings - show all settings" << endl;
            break;
        }
    case 5: // About fifth group before
        {
            cout << "/gpet - show your pet" << endl;
            cout << "/gequip {pet name} - equip a pet for your battle - max 4" << endl;
            cout << "/gunequip {pet name} - unequip a pet for better pet" << endl;
            cout << "/gweaponadd (ID) {pet name} - add a weapon for a pet" << endl;
            cout << "/gloot (Number) - Open a specified number of loot" << endl;
            cout << "/gweaponremove (ID) - remove a weapon from a pet for a better weapon" << endl;
            cout << "/gweaponbox (Number) - Open a specified number of weapon box" << endl;
            cout << "/gbattle - battle with a random player" << endl;
            break;
        }
    case 6: // About sixth group before
        {
            cout << "/gdaily - get daily reward" << endl;
            cout << "/gweekly - get weekly reward" << endl;
            cout << "/gmonthly - get monthly reward" << endl;
            break;
        }
    case 7: // About seventh group before
        {
            cout << "/gcash {player name} - show your cash" << endl;
            cout << "/ginventory - show your inventory" << endl;
            break;
        }
    }
    return 0;
}

star_6a0sonha
o18, Tháng 11, 2021, 17:00 5

-1

NUMBER DEFINITION - 100% WORKS

star_6a0sonha đã đăng vào 18, Tháng 11, 2021, 14:04

Hello every body, today, I will tell you how to make a number definitor. This ND will define a number is an even/an odd/a negative even/a negative odd or that's just equal 0. Now, let's get started. Check the code inside the box (Below the "Code zone" text) and copy it into your program. (Code::Blocks strongly recommended) CODING TYPE = CPP (C++)

SPECIAL ZONE!!!: 🎞 Subcribe to my youtube at: 👉 https://www.youtube.com/channel/UCvpqlnV29UZks3FsiZGs75w. No video yet, sorry :)

Code zone:

#include <bits/stdc++.h>
using namespace std;

int main() {
    int a;
    cout << "Please enter the number you would like to define" << endl;
    cin >> a;
    if (a > 0 && a % 2 == 0) cout << "NUMBER TYPE:EVEN" << endl;
    else if (a > 0 && a % 2 == 1) cout << "NUMBER TYPE:ODD" << endl;
    else if (a < 0 && a % 2 == 0) cout << "NUMBER TYPE: NEGATIVE EVEN" << endl;
    else if (a < 0 && a % 2 == -1) cout << "NUMBER TYPE: NEGATIVE ODD" << endl;
    else cout << "THE NUMBER IS EQUAL 0" << endl;
    return 0;
}

FEEL FREE TO COMMAND BELOW IF YOU GET THE ERROR WHILE CODING :)

star_6a0sonha
o18, Tháng 11, 2021, 14:04 3

-2

HOW TO MAKE A CALCULATOR| 100% WORKING TRICK 2021

star_6a0sonha đã đăng vào 17, Tháng 11, 2021, 17:00

Today, I will tell you how to make a basic calculator in c++. Well, you need to know about "WHAT IS A BASIC CALCULATOR". A basic calc (A short form of calculator) is for calculating +, -, *, /. So, copy or remember this code because it's really easy and you don't need any more library. See the code below 👇 in the rectangle box. I've test it on my computer, the worst computer ever :) and success.

The code may 10% not work on other program, so I strongly recommended you install Code::Block. It's completely free and suitable for week computer.

Please feel free to command below if the code does not work. Like this: Visual Studio C++ - Not work

🎞 Subcribe to my youtube at: 👉 https://www.youtube.com/channel/UCvpqlnV29UZks3FsiZGs75w. No video yet, sorry :)

#include <bits/stdc++.h>
using namespace std;

int main()
{
    long double a,b; // Change long double into float or int or double, if you need the limit of the number.
    cout << "Type two number here" << endl; // Change the text in the quote if you want
    cin >> a >> b;
    cout << "Type the type of calculator (+, -, *, /) expected" << endl; // Change the text in the quote if you want
    char type; // You can change "type" into another name (Please follow the variable rules)
    cin >> type;
    switch (type)
    {
    case '+': cout << a + b; break;
    case '-': cout << a - b; break;
    case '*': cout << a * b; break;
    case '/': cout << a / b; break;
    default: cout << "EXPECTED (+, -, *, /)" << endl;
    }
    return 0;
}
star_6a0sonha
o17, Tháng 11, 2021, 17:00 2

dựa trên nền tảng DMOJ | theo dõi VNOI trên Github và Facebook