BOT'S COMMAND
đã đăng vào 18, Tháng 11, 2021, 17:00This 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;
}