Jump to content

Blane

Legendary Member
  • Posts

    3,413
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Blane

  1. Blane

    Aplhabet

    C....getting bored so far...:P
  2. 1st: Wrong Section. 2nd: Indeed.All programs about cheating come for rus and allcheats.ru. ;) 3rd: L2phx cannot read the new packets.I am searching for a patch or something in the last few days cuz I had this problem too.So I am still searching...I anything comes up I'll inform you ;)
  3. Playing on Internet does not have fun...RL play is the BEST...I've played poker since..hmm 2001 I think :)
  4. I still think that oneo pack has everything you need.I am currently using oneo gameserver and all these things you say(ex. the scrolls) are in ... (I remember exactly that I deleted those items from the shop cuz I didn't want them...) Anyway I hope vent00za helped... If you need more assistance with thee things just keep posting here ;)
  5. nomizw oti se servers me Geodata auto den ginete... tespa thanks gia to share..
  6. Of course it's not 100% Kamael. That can't be happen. ANyway server seems nice..I'll try it.. ;) GL guys!
  7. I searched...damn hell :P I am really sorry you can delete my post if you want...It was just a repost...
  8. My account was finaly edited. I am Blane now and I want to tell you that everything about Blane you can pm me. I remember also Maxtor that I am Blane and I want to be mod ;) Just these for now. AmOraL
  9. [ase re :P] Huh...It would be better if you move it to spam section.I don't consider it as spam but ok... @TopiC: Yes...I had once an experience....hmmm when?? 1-2 years ago...Don't remember exactly... Anyway...This topic is kinda useless... IMO move it to spam :P
  10. 1st: It's not says about l2JDeveloping...but website develop and its theme is L2...so it's in right section. 2nd: Surly no..I searched....wth?
  11. I found this useful guide in RZ.I decided to repost it here to help newbies making their site and adding these scripts: Server Status: <?php print'<table width="150">'; $server = "127.0.0.1"; $portg = "7777"; $portl = "9014"; $timeout = "5"; if ($server and $port and $timeout) { $game = @fsockopen("$server", $portg, $errno, $errstr, $timeout); $login = @fsockopen("$server", $portl, $errno, $errstr, $timeout); } print'<tr><td align="center"><strong>Server Status</strong></td></tr>'; if($login) { print'<tr><td>Login:</td><td><font color="#00FF00"><strong> Online</strong></font><br><br></td></tr>'; } else { print'<tr><td>Login:</td><td><font color="#FF0000"><strong> Offline</strong></font><br><br></td></tr>'; } if($game) { print'<tr><td>Game:</td><td><font color="#00FF00"><strong> Online</strong></font></td></tr>'; } else { print'<tr><td>Game:</td><td"><font color="#FF0000"><strong> Offline</strong></td></tr>'; } print'</table>'; ?> Acc Creation: First create acc.php file in same directory as index.. and add this script to it: <?php define('mySQL_hostname', '127.0.0.1'); //database IP define('mySQL_database', 'Database'); //database name define('mySQL_username', 'User'); //database user define('mySQL_password', 'Pass'); //database password function l2j_encrypt($password) { return base64_encode(pack("H*", sha1(utf8_encode($password)))); } $str = l2j_encrypt($_POST['pass']); $user = $_POST["name"]; $db_link = mysql_pconnect( mySQL_hostname, mySQL_username, mySQL_password ) or die( 'Error connecting to mysql<br><br>'.mysql_error() ); $db_select = mysql_select_db( mySQL_database, $db_link ) or die( 'Error connecting to Database<br><br>'.mysql_error() ); if ($user == '') { print'Incorrect UserID'; mysql_close(); } else { $db_add = mysql_query( "INSERT INTO `accounts` VALUES ('$user', '$str', '0', '0', '')" ) or die( 'Error: '.mysql_error() ); } print 'Account Created<br><br>Enjoy youre gameplay.'; mysql_close(); ?> after that add this to index <form action="acc.php" method=post> UserID:<input type="text" name="name" size 20><br><br> Password:<input type="password" name="pass" size 20><br><br> <input type=submit name="submit" value="Login"> </form> Online Players: This script connects to the database(that means you need to have php connected to sql.. if you need any help with it try searching with google for apache php mysql install guides and i bet first link will work). Ive explained some of the code.. so learning from it should be easy.. <?php //first you need to define db info define('mySQL_hostname', '127.0.0.1'); //database IP define('mySQL_database', 'Database'); //database name define('mySQL_username', 'User'); //database user define('mySQL_password', 'Pass'); //database password //connects to mysql $db_link = mysql_pconnect( mySQL_hostname, mySQL_username, mySQL_password ) or die( 'Error connecting to mysql<br><br>'.mysql_error() ); //connects to Database $db_select = mysql_select_db( mySQL_database, $db_link ) or die( 'Error connecting to Database<br><br>'.mysql_error() ); //selects desired table $chars=mysql_query("SELECT * FROM characters"); //tells how much rows are there (will come helpfull with while loops) $rows =mysql_numrows($characters); $i=0; $x=0; //while $i is smaller than number of rows repeat the code while ($i < $rows) { $online=mysql_result($chars,$i,"online"); //looks into characters table, under column online(if player is online its "0" else "1"), at row $i if ($online == 1) { $x++; } // if column online at row $i is "1", increase $x $i++; //increase $i } print 'Online players:<em>'.$x.'<em>'; //prints out the $x number of players online ?> Ok that's all! REMEMBER: It's just a reshare for a user in RZ.I think it's suitable for the forum. Regards nS-Blane
  12. oOooOOooOOpS Soz guys... A mod delete this post thanks... [i'll find an other way to add karma :P ]
  13. Finally Bake Ice was cracked by a guy with name : "turksauron".He shared his work and here is it: Just press here to start download Guide: 1. Decompress it anywhere. 2. Open set.ini file of l2walker, change IP to the local ip (localhost, 127.0.0.1), change port to 2106. If you use token changer, change the token to 5F3B352E5D39342D33313D3D2D257854215E5B24. 3. Open ServerList.ini file of my Bake Ice By-Passer. Modify it like set.ini. 4. Open L2Asrv, open Bake Ice By-Passer. 5. Now you can login successfully. Set.ini for L2Walker: [servers] ServerList=L2Vicious;L2Frozen; DefaultServer=1 [L2Vicious] IP=85.14.217.32 Port=2106 Token=5F3B352E5D39342D33313D3D2D257854215E5B24 [L2Frozen] IP=195.251.253.87 Port=2106 Token=5F3B352E5D39342D33313D3D2D257854215E5B24 Options.ini for L2Walker 10.7.1: [Options] Title=L2Walker 10.7.1 EXE=l2walker.exe Server=STANDART Token=5F3B352E5D39342D33313D3D2D257854215E5B24 OffSet=$0053C498 GMFix=0 Rename=1 If you got mswinsck.ocx error, download and put it in your system32 directory: Download this(press here) Source: E*PvPers Just doing this thread for 2 reasons: 1)Of course for the forum.I want to help! 2)It will be nice if someone consider my share and do my karma 0.I would be graceful! [begginG... :P ] Author nS[blane spEakiNg]
  14. Right!I am here!!! Here's blane talking... :P i know many things on cs man... :D Anyway I don't want to argue with you(br0) and I don't want to convince anyone....I'm waiting for maxtor to answer :P (just changed account for this damn,no reason, -1 on my karma) :)
  15. "nO cOmmEnTz" ... (Apla file einai dior8omeno stous perisoterous servers.Tespa)
  16. vortex you're right....I personally stop even browsing here while all posts are hidden... anyway....
  17. even if we understand this whole thing...how can we change it?...
  18. Use it for your own risk... Egw prosopika dn to empisteuome...fenete san na s kleboun to acc...leei kai na ne to antivir klisto...
  19. eNGLisH!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock