Free Item Giver
There is a /give command in the game, it is unusable by non-admins. But if this is client sided, could this be used to give free items to ones own gift chest?
#include "stdafx.h"
#include <iostream>
using namespace std;
int main()
{
int iq;
cout << "Please type your IQ:" << endl;
cin >> iq;
if (iq >= 100) {
cout << "I think you're lying to me." << endl;
}
else if (iq < 100) {
cout << "/give is server sided as well as all the other admin commands." << endl;
}
return 0;
}
