-
Posts
451 -
Credits
0 -
Joined
-
Last visited
-
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by disorder25
-
Anybody have a patch for Death Match event for Gracia Epilogue? This one does not work on the latest revision. Thanks.
-
Changed to get more players. I tried for a 2 months with the X100 rate and it didn't work. Now I'm getting more players and the server start to roll. Adena drop is not bad at 300, just take a little time to get Vesper and this way people will have some to do and won't loose interest on the server. Cya there.
-
hey thanks for the good luck wishes and no there is nothing wrong with the server but is hard for new servers to get people to stay, a lot of then come and leave. But np we will be here waiting for the people to join and stay. Problem is new people come and they don't see other people and leave and plus some servers updated to epilogue and some players updated also and now they can log in with us. No rush we will be a great server. Edit: Come in so we can pk and pvp more. LOL
-
L2 MAGGOTS is a Private Lineage 2 Server located in the USA. No Donations and no lag, all we need is players to come and populate our community. Hope you will come and check us out and make us your home to play L2. Our main goal is to run a server that will be here for your needs. We created it using the ideas and features of the best servers we have played on so in here you will find a nice place to enjoy Lineage II. Cya in the game http://l2maggots.sytes.net PHOENIX: Exp x500, Sp x500, Adenas x400, Drop x5. Enchant Scroll - 70% Blessed Scroll - 75% Crystal Scroll - 100% Features: - Main Town: Hunters Village - Custom DVC farming area for high levels - Epilogue Hunting grounds - GMShop - Global Gatekeeper - Safe enchant +8 - Max Enchant +16 - Server Manager with Buffer, Augmenter, Pet Buffer, Noble Manager, Clan Reputation, Gold Bar Trader, etc. - Class Transfer NPC - Scheme Buffer - Weddings - Champions - Auto learn skills - Auto Events: Tvt, King of the Hill, Kill the Raid Boss, Town War and Squash Event - 2 Hours Buff - SubClass Max Level 84 - Epic Weapons, Epic Armor, Epic Jewels and Mordor Weapons - 100% Crystal Scrolls - Custom Glows - Custom Soulshot glows - Custom Castle Cloaks - And much more http://l2maggots.sytes.net >>>>> WEB SITE http://l2maggots.myfastforum.org >>>FORUM
-
[SHARE] Hero status Script L2J
disorder25 replied to Strength's topic in Server Development Discussion [L2J]
I have the same problem also. Anybody know how to fix this? Thanks -
web server and login error
disorder25 replied to disorder25's question in Request Server Development Help [L2J]
Thanks for your reply, I fixed the problem already. -
Hi very nice share. Only problem is I can get it to work, I added it to my server's web page but when I click on create it doesn't work or take me nowhere. Can somebody post a tutorial of how to install and configure this account manager. It look like it is a excellent AM but right now it is not working. Please help. Thank you
-
web server and login error
disorder25 replied to disorder25's question in Request Server Development Help [L2J]
Yes I'm running with apache and yes right now it is on the same pc but when it is all working good it will be on a different pc. I think the problem is with the one with the php scripts, probably the server status one. But every time I click on one of the site's pages it give me the error on the login server and the only script that is on all the pages is the server status. But I need to double check on that and I still don't know why I get the connection lost message. Any help will be appreciated. THis is the script giving me the problem, every time php reads this I get the message. <?php $ip = "localhost"; // Here edit your IP for GameServer $ipl = "localhost"; // Here edit your IP for Login $portg = "7777"; // Port for GameServer $portl = "9014"; // Port for Login if (! $sock = @fsockopen($ipl, $portl, $num, $error, 5)) print '<B>Login: <FONT COLOR=red>Offline</b></FONT>'; else{ print '<B>Login: <FONT COLOR=lime>Online</b></FONT>'; if (! $sock = @fsockopen($ip, $portg, $num, $error, 5)) print '<B> Bartz: <FONT COLOR=red>Offline</b></FONT>'; else{ print '<B> Bartz: <FONT COLOR=lime>Online</b></FONT>'; fclose($sock); } } ?> -
Ok I have one question, I'am setting up a webserver and every time I click on the server page (index.html for example), I get and message on the Login server that say: GameServer (127.0.0.1): Connection Lost: Connection Reset And sometimes I get this one also: GameServer (127.0.0.1): Connection Lost: Software Caused connection abort: recv failed Can someone tell me why is that and how can I fix that? Thank you>
-
[SHARE] Hero status Script L2J
disorder25 replied to Strength's topic in Server Development Discussion [L2J]
about the error he missed a " on line 66 right after l2jdb. it look like this: $db_name = "l2jdb; //your database name goes here it should be like this: $db_name = "l2jdb"; //your database name goes here sorry for the double post -
[SHARE] Hero status Script L2J
disorder25 replied to Strength's topic in Server Development Discussion [L2J]
I was looking for this script for a long time. Only one thing how do we make then work together because I added then to my hero page and nothing happened. Any clue on how to make then work? Thank you. -
Web Server and Logim error HELP!!!
disorder25 posted a question in Request Server Development Help [L2J]
Ok I have one question, I'am setting up a webserver and every time I click on the server page (index.html for example), I get and message on the Login server that say: GameServer (127.0.0.1): Connection Lost: Connection Reset And sometimes I get this one also: GameServer (127.0.0.1): Connection Lost: Software Caused connection abort: recv failed Can someone tell me why is that and how can I fix that? Thank you> -
Help with online players script
disorder25 replied to disorder25's question in Request Server Development Help [L2J]
Fixed the problem please close the post> -
Help with online players script
disorder25 replied to disorder25's question in Request Server Development Help [L2J]
Do I have to do all of that? I just want the last line of the script where it says "Online Players" to print on the site on the same color as the online login and gameserver which is lime green. So it will say: Login : Online Gameserver: Online Online Players: 100 all in the same color because I get the number 100 in black. Thanks for the help. -
Help with online players script
disorder25 posted a question in Request Server Development Help [L2J]
I want to know if it is possible for this script to print the number of players online in green instead of black. Can anybody help me? <?php //first you need to define db info define('mySQL_hostname', ''); //database IP define('mySQL_database', ''); //database name define('mySQL_username', ''); //database user define('mySQL_password', ''); //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 $query=mysql_query("SELECT count(level) FROM characters where online = 1"); $chars = mysql_fetch_array($query); print '<B> Online players: '.$chars[0]; -
error on gameserver
disorder25 replied to disorder25's question in Request Server Development Help [L2J]
Thanks bro. -
[L2CrestMaker - Finally an Easy Way To Do It.]
disorder25 replied to GrisoM's topic in General Discussion [English]
Excelent share my friend> Keep up the good work and you deserve +1 Karma. -
I got this error twice today. Can anyone tell me what is it and if possible how to fix it. L2j gameserver gracia final latest version. FourSepulchersManager: Entry time: Mon Nov 09 13:55:39 EST 2009 SevenSigns: Data updated successfully. Object Id at bad coords: (x: -456879, y: 261794, z: -3610). Object Id at bad coords: (x: -751543, y: 135704, z: -3610). Object Id at bad coords: (x: 686352, y: -649791, z: -3610). Object Id at bad coords: (x: -460577, y: 1078488, z: -3610). Object Id at bad coords: (x: 912124, y: 807915, z: -287807). Object Id at bad coords: (x: -456879, y: 261794, z: -3605). Object Id at bad coords: (x: -751543, y: 135704, z: -3605). Object Id at bad coords: (x: 686352, y: -649791, z: -3605). Object Id at bad coords: (x: 912124, y: 807915, z: -287802). Thank you...
-
very nice event
-
cool thanks
-
[SHARE]NPC Skill Enchanter
disorder25 replied to ghostikisme's topic in Server Development Discussion [L2J]
hey can you please update the download links -
[Updated][Share+Guide] All My Shares In One!!!
disorder25 replied to Kabamaru®'s topic in Server Shares & Files [L2J]
cool share keep it up... -
[Share] Tattoos with status increase + enchant
disorder25 replied to rodionsk's topic in Server Development Discussion [L2J]
Nice share I have to test it to see if it will unbalance the server because the ones I had before made mages crazy strong and I had to take then out.