Jump to content

LinK

Members
  • Posts

    85
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

About LinK

Contact Methods

  • Telegram
    neuron187@hotmail.com

Profile Information

  • Gender
    Male
  • Location
    New Brunswick, Canada

LinK's Achievements

Newbie

Newbie (1/16)

0

Reputation

  1. Not really L2 related... fake or not, it's still an awesome way to do it: http://www.ihatehayley.com/index.php?id=d5d150fa8e0e7e56049fb54361e4ae72 I posted here cuz a lot of ppl visit this thread :p
  2. 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: //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... and double spaced it for some reason... :P
  3. The bakeice launcher is the game launcher your interlude or c5 or possibly c4 server is using. As far as i knhow there is no bakeice for HB or gracia. It basically stops walker from working normally. Of course walker folder is the clean one. DN doesn't use bakeice... anymore. So no point in working around something that is not there.
  4. This is why I play retail. Gliding is a natural ability. Since you're playing on an EMU server, well it's all amateur half-assed code. So it doesn't surprise me that gliding is bugged just like everything else on EMU servers. If you play EMU, you're not playing Aion. Period. PS flying and gliding are two different things.... and as many inet posters say: "...your doing it wrong!!!..."
  5. Are you talking retail or the emu server (which is nothing at all like real aion so no real loss)...?
  6. LinK

    [Exploit] PvP

    It's not new. The tip was released way back in one of the betas. Everyone who's not an idiot already has a pvp radar tab.
  7. what crack? nothing is posted here about one? ...
  8. considering it's v0.2, as well as the description/pics... it doesn't seem worth trying yet.
  9. where have you been? There's a lot of working bots...most better than this one.
  10. all bots are designed for official, if they work on emu servers then that's just a pleasant side effect. I honestly don't know how people can stand to play on emu servers. They're nothing at all like real aion.
  11. my ass warez isn't allowed... the whole l2 walker section is based on illegal use of l2w :P I too am much interested in any cracked pay bot software.. feel free to pm me if you don't feel comfortable posting here...
  12. anyone figure out how to make this work on vista?
×
×
  • Create New...