Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Aion > Aion Hacks, Bots, Cheats & Exploits
You last visited: Today at 12:35

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Easier Life For Aion Ninja Users

Discussion on Easier Life For Aion Ninja Users within the Aion Hacks, Bots, Cheats & Exploits forum part of the Aion category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: May 2008
Posts: 83
Received Thanks: 5
Easier Life For Aion Ninja Users

As you all know, ninja needs you to run the game at 1024x768 windowed full with low graphics settings so that it can read the pixels proper. It also changes some other options.... When I play manually, i have all graphics settings maxed out and way diff controls... i got tired of changing the options every time i want to play or want to bot... so i made 2 system.cfg files.. one good, one for ninja.. and then swapped them in and out.... then i got tired of that too... so i wrote a program in c++ that does it for me.

What you need to do:
1. Go in game and set your options how you like them.
2. Exit game and copy ...\NCSoft\Aion\system.cfg to any folder and call it "Good".
3. Go back in game and set all the ninja options. (easiest way is probly just using the autosetup feature of ninja) and then exit game.
4. Copy the same file again to a folder called "Ninja"

5. add the paths of each of those files to the top section of the following code:
Code:
//libraries
#include <iostream>
#include <string>
#include <conio.h>
#include <windows.h>
#include <fstream>
//namespaces
using namespace std;
//prototypes
void swap(string, string); //copys the files
void flush(void); //flush kb buffer
 
int main(void)
{
//vars
string strGood="REPLACE THIS TEXT WITH THE FILEPATH TO YOUR GOOD FILE"; //be sure to use a double \\ for the slashes or c++ will hate you
string strNinja="REPLACE THIS TEXT WITH THE FILEPATH TO YOUR NINJA FILE"; //be sure to use a double \\ for the slashes or c++ will hate you
char chrUserInput=0; //holds user input
bool bDone=false; //exit flag
 
do
{
cout << "Chose a mode:\n1)Ninja\n2)Good\n'q' to quit\n>"; //prompt for user input
flush(); //flush kb buffer
chrUserInput=getch(); //store input in a var
if (chrUserInput!='1' && chrUserInput!='2')
{
tolower(chrUserInput); //converts user input to lower case
}
 
switch (chrUserInput)
{
case '1':
swap("ninja",strNinja); //swap in ninja cfg
break;
case '2':
swap("good",strGood); //swap in good cfg
break;
case 'q':
bDone++; //raise exit flag
break;
default:
cout << "\n\nINVALID SELECTION!"; //advise user they're a moron
} 
} while(!bDone);
return 0;
}
void swap(string strNinjaGood, string strSourcePath)
{
//vars
bool bBadInput=false;
char chrUserInput='\0';
system("cls"); //clear screen
do
{
bBadInput=false; //reset bad input flag
cout << "Are you using a 64bit OS(y\\n)\n> "; //prompt user for 64/32 bit
flush(); //flush kb buffer
chrUserInput=getch(); //store user input in var
tolower(chrUserInput); //converts user input to lower case
if (chrUserInput!='n' && chrUserInput!='y')
{
bBadInput++; //raises bad input flag
cout << "\n\nINVALID INPUT!\n\n"; //flog user
}
} while (bBadInput==true);
if (chrUserInput=='y') //64 bit path
{
ifstream f1(strSourcePath.c_str(), fstream::binary);
ofstream f2("C:\\Program Files (x86)\\NCSoft\\Aion\\system.cfg", fstream::trunc|fstream::binary);
f2 << f1.rdbuf();
}
else //32 bit path
{
ifstream f1(strSourcePath.c_str(), fstream::binary);
ofstream f2("C:\\Program Files\\NCSoft\\Aion\\system.cfg", fstream::trunc|fstream::binary);
f2 << f1.rdbuf();
}
system("cls"); //clear screen
cout << "Success!\n\n"; //give user a cookie
} 
void flush(void)
{
::FlushConsoleInputBuffer(::GetStdHandle(STD_INPUT_HANDLE));
}
5. Compile and Enjoy! Now it's a one click jobby

6. If you want a compiled version, pm me and I'll email it. I just didn't want to post an exe on the site :P

edit: i have better formatting then that, this forum killed all my indentation... :P
LinK187 is offline  
Thanks
1 User
Reply


Similar Threads Similar Threads
Aion Ninja
11/06/2009 - Aion - 3 Replies
Ok so i bought Aion Ninja, and to be honest it's getting on my nerves because quite honestly i don't know if its just not working or if i'm setting it up wrong. So can someone out there who has already used this bot PLEASE tell me how to set up crafting? I go to crafting tab put in asmodian tailoring 199 -10 work order then go in game and press insert... all that happens is it spams enter a bunch of times. The people on the Ninja website aren't giving me a straight answer so please someone...
Solution For weak Ninja Defense.(easier lvling)
01/21/2009 - CO2 Exploits, Hacks & Tools - 29 Replies
Hello guys.. Thats my 2nd post and in same day and 2nd post ever :D but i am sure this one gonna be more Helpful. all ninja users know that ninja's defense sucks soo much and u get hit badly even by green named monsters..some guys have money to + thier items and some dont so here is the absolute solution so easy and helpful So Lets Start Create New ninja chars and leave them anywhere in tc(to be safe) and leave it thier for a few hours..simply its gonna plvl itself with online tg soo...
Even easier than easier ghetto hearth
12/02/2008 - WoW Exploits, Hacks, Tools & Macros - 3 Replies
/script n,l,cl,a,c = GetFriendInfo(1); if not c then SetGuildRosterShowOffline(0); n = GetGuildRosterInfo(1); end; InviteUnit(n); PromoteToLeader(n); LeaveParty(); This invites the first person on your friends list (the first online friend), and if you have no online friends, invites the first online guild member. Basically, it saves having to modify a macro if a person you've put it isn't online when you're ghettoing it up. 1. Zone into instance. 2. Hit the macro. 3. ??? 4....
The Life and Times of A Ninja
09/30/2007 - WoW Exploits, Hacks, Tools & Macros - 15 Replies
After reading the post about the Karazhan chess event exploit, i was looking forward to trying it out but it was patched soon after i read the post. Taking the chest wasn't impossible but was no longer easy. This is what i did. Most of the time i would do this on Tuesdays because most of the guilds raid on that day. I would begin with simply asking "How far are you guys in kara?" The majority of the time they would answer back without thinking anything of it but when they did ask why or who...



All times are GMT +1. The time now is 12:36.


Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2025 elitepvpers All Rights Reserved.