
sd619`
Members-
Posts
32 -
Credits
0 -
Joined
-
Last visited
Never -
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by sd619`
-
I'M RUNNING A HIGH 5 SERVER, AND I WANT TO UTILIZE THE SMS DONATION FEATURE OR SOME SORT OF AUTOMATIC DONATION SYSTEM.
-
WTS [WTS] L2J - Perfect + Stable Interlude Files.
sd619` replied to icshiba's topic in Marketplace [L2Packs & Files]
send info to connect, thaNKS -
ALL NEW L][E 100X CURRENT EVENT: ALL DROPS AND XP TRIPLED FOR A LIMITED TIME, SO JOIN NOW. GM-SHOP: MAMMON IS MAIN GM-SHOP, HOLDING ALL GEAR FROM A-S84, AND CONSUMBALES SUCH AS SOULSSHOTS, ETC.. BUFFER: CUSTOM BUFFER, CHOOSE FROM QUICK BUFF, OR CREATE A PERSONALIZED SCHEME. TELEPORTS: CUSTOM TELEPORT TO TOWNS, CATAS+NECROS, FARM ZONES. DROPS: CUSTOM DROPS MANTRAS, ANCIENT ADENA, ADENA.. RAIDS: ALL RAIDS IN GAME, AND SPECIAL MINI RAIDS, WE ALSO HAVE "POWER-UP MOBS" FROM LEVEL 1-70 WHICH GIVE INCREASED XP AND ADENA DROP, AND ALSO GIVE 100% VITALITY FOR HIGHER LEVEL MOBS, AND 50% FOR LOWER LEVEL MOBS.. BALANCED: BALANCE IS KEY, AND ALL CLASSES ARE BALANCED, NO OVER POWERED CLASSES. HOW TO PURCHASE GEAR: ALL GEAR ARMORS, WEAPON, JEWELRY C AN BE PURCHASED WITH MANTRA'S, ARMORS, AND JEWELRY COME SEALED, YOU WILL NEED TO FARM ANCIENT ADENA, GOOD NEWS ANCIENT ADENA DROPS FROM ALL MOBS, AND SEVEN SIGNS. ENCHANTING + ENHANCING: SCROLLS CAN BE PURCHASED FOR REGULAR ADENA, WITHIN MAMMON, SOUL CRYSTAL OF TOP GRADE WEAPONS CAN BE PURCHASED WITH EVENT COUPONS, YOU GET BY PARTICIPATING IN EVENTS. EVENTS: 14 EVENTS, RUNNING ON A 2 HOUR TIMER, PLAYERS VOTE FOR EVENT THEY WANT. JOIN NOW!!! WWW.L2EXIDUS.COM
-
RATES: Sp = 100x Sp = 100x Adena = 1000x AA Drop = 100x Mantra's = 1x Mini raid = 5x epic raids = 2x L2 EXIDUS IS NOW OPEN, AND READY TO TAKE PLAYERS, THE SERVER IS FULLY BALANCED, AND PVP IS FAIR, NO OVER POWERED CLASSES, AND ALL CLASSES PLAYABLE, RUNNING ON A VERY STABLE BUILD, AND STABLE SERVER ABLE TO HOLD MANY PLAYERS, ALL WE NEED IS YOU.. SO COME PLAY, AND LIVE YOUR ADVENTURE.. UNIQUE ARENA'S FOR EVENTS... THIS SERVER IS A MID RATE THAT OFFER QUESTS FOR THOSE WHO APPRECIATE THEM, AND EVENTS FOR PLAYERS TO OBTAIN RARE ITEMS, NO CRAFTING INVOLVED... PLAYERS DO NOT HAVE TO COMPLETE QUESTS TO GET AHEAD IN GAME..THIS SERVER HAS TO MUCH TO LIST...COME SEE FOR YOURSELF.. WWW.L2EXIDUS.COM
-
POWER UP MOBS ADDED!!
-
NEW SERVER NO DONATIONS L2 Exidus Hybrid server is now LIVE! Server Info: 20x Rates: (Xp,Sp,Adena) 100X RATES WITH FULL VITALITYcustom mantra system custom event engine with 14 events custom Mini Raids Retail Quests Retail seven Signs Retail Noblesse - Olympiad - Hero Quests Custom Gatekeepers Retail Spawns Custom Buffers for <40 and >40 Custom Armor, Weapons and Jewelry Merchants Balanced Classes - Intense PvP Quest Info 2x (Xp, Sp, Adena) 2x Quests Drop 2x Quests Reward !!Double the Rewards!! over 500 Quests + Epic EVENTS OVER 14 EVENTS TO PLAY, ALL PLAYERS VOTE FOR THE EVENT OF THEIR CHOICE, EVENTS START AFTER ALL VOTES HAVE BEEN CAST...GREAT REWARDS, eVENT MANAGER, AND EVENT MERCHANTS ACCESSIBLE IN ALL MAJOR TOWNS DRAGON ARMORS DRAGON ARE SPECIAL CUSTOM ARMORS, ONLY OBTAINABLE THRU MINI RAIDS, KILL MINI RAIDS GET THE DROPS, AND PURCHASE THE ARMORS, DRAGON ARMORS HAVE INCREASED STATS... NEW SERVER THIS IS A NEW SERVER, READY TO BE PLAYED, VERY STABLE AND CAN HOLD MANY PLAYERS, JOIN NOW, HELP US GROW, TELL A FRIEND..AND BEST PART NO DONATIONS... HTTP://WWW.L2EXIDUS.COM
-
thanks for your opinions, i appreciate all of them, good luck in your search for a L2 server.
-
L2 Exidus Hybrid server is now LIVE! Server Info: 20x Rates: (Xp,Sp,Adena) + Custom Vitality system custom mantra system custom event engine with 14 events custom Mini Raids Retail Quests Retail seven Signs Retail Noblesse - Olympiad - Hero Quests Custom Gatekeepers Retail Spawns Custom Buffers for <40 and >40 Custom Armor, Weapons and Jewelry Merchants Balanced Classes - Intense PvP Quest Info 2x (Xp, Sp, Adena) 2x Quests Drop 2x Quests Reward !!Double the Rewards!! over 500 Quests + Epics Hardware Info Dual Xeon 8 cores 26gb Ram 1000mbps Dedicated Line + Protections 99.9% Uptime\ Updated monthly Server Location: GERMANY http://www.l2exidus.com
-
i found anther bug, if a player doesnt enter anything, its suppose to jail as-well, and the timer is set to 3 minutes, but noting happens after 3 minutes, i noticed there is no variable to designate hour, min, sec.. NVM i see in threadpoolmanager is variable ok the bug must be were i placed the code in L2Npc.java, the last part of the code does not match up with the current version of l2j, the working copy number 183 must be from another project, and is not lining up, the bug, is that it wont jail the player after 3 minutes with no response... i have tried moving the code around: //3 Mins Counter and the event that happens class CaptchaTimer implements Runnable{ L2PcInstance activeChar; public CaptchaTimer(L2PcInstance player){ activeChar = player; } public void run(){ //here will be code that will run after 1 min if(!activeChar.isCodeRight()){ activeChar.setTries(3); //here will run method with jailing player after 1 min activeChar.stopAbnormalEffect(AbnormalEffect.REAL_TARGET); NpcHtmlMessage npcHtmlMessage = new NpcHtmlMessage(0); npcHtmlMessage.setHtml("<html><title>Captcha Antibot System</title><body><center><font color=\"FF0000\">3 minutes passed.<br><br></font><font color=\"66FF00\"><center></font><font color=\"FF0000\">You will be jailed.</font><br><button value=\"Exit\" action=\"bypass -h npc_%objectId%_Quest\" width=45 height=25 back=\"L2UI_CT1.Button_DF_Down\" fore=\"L2UI_ct1.button_df\"></center></body></html>"); if (activeChar.isFlyingMounted()) activeChar.untransform(); activeChar.setPunishLevel(L2PcInstance.PunishLevel.JAIL, 180); activeChar.setIsInvul(false); activeChar.setIsParalyzed(false); activeChar.sendPacket(npcHtmlMessage); activeChar.setCodeRight(true); } } } i cannot find: 193. { 194. return this._hidedName; 195. } only thing i have similiar to this is: public void setHideName(boolean val) { _isHideName = val; } public boolean isHideName() { return _isHideName; }
-
im getting this error? Exception in thread "AISTPool-4" java.lang.NullPointerException at com.l2jserver.gameserver.model.actor.L2Npc.doDie(L2Npc.java:1524) at com.l2jserver.gameserver.model.actor.L2Attackable.doDie(L2Attackable. java:534) at com.l2jserver.gameserver.model.actor.instance.L2MonsterInstance.doDie (L2MonsterInstance.java:161) at ai.group_template.DenOfEvil$KashaDestruction.destroyZone(DenOfEvil.ja va:221) at ai.group_template.DenOfEvil$KashaDestruction.run(DenOfEvil.java:202) at com.l2jserver.gameserver.ThreadPoolManager$RunnableWrapper.run(Thread PoolManager.java:86) at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source) at java.util.concurrent.FutureTask.run(Unknown Source) at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask. access$201(Unknown Source) at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask. run(Unknown Source) at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) at java.lang.Thread.run(Unknown Source) using freya , without H5
-
NEW SERVER OPENED NEEDS LOW RATE COMMUNITY! www.l2rtn.com RATE: xp 3X sP 3X DROP 3X $$ 5X RAID 3X FISH 3X QUESTS 3X FEATURES: SERVER RUNNING FREYA NEW ZONES NEW ARMORS NEW MOUNTS NEW RAIDS NEW WEAPONS NEW ITEMS OFFICIAL EVENTS OFFLINE TRADE MARRIAGE SYSTEM ACTIVE GM'S INGAME AND FORUMS ALL SIEGES ALL FORTRESS ALL CLAN HALLS 95% QUESTS ALL CLASS QUESTS WORKING 95% SKILLS 100% LOW RATE NO CUSTOM SHOPS NO CUSTOM EVENTS NO CUSTOM ITEMS NO DONATIONS AND MUCH MORE TO LIST!! SERVER STATS: XEON QUAD CORE 2.4GHZ 8GIG RAM 3 74GB RAPTOR 10K 1 350 GB BACKUP (DEDICATED) FULLY CONFIGED 64 BIT 100MBS DEDICATED WE WANT TO BRING THE EXPERIENCE OF TRUE LINEAGE PLAY BACK TO THE PLAYERS, WE JUST OPENED, AND WOULD LOVE TO SEE THIS SERVER GROW, SO PLEASE CHECK US OUT! PRETTY SMALL COMMUNITY RIGHT NOW.
-
NEW SERVER OPENED NEEDS LOW RATE COMMUNITY! RATE: xp 3X sP 3X DROP 3X $$ 5X RAID 3X FISH 3X QUESTS 3X FEATURES: SERVER RUNNING FREYA NEW ZONES NEW ARMORS NEW MOUNTS NEW RAIDS NEW WEAPONS NEW ITEMS OFFICIAL EVENTS OFFLINE TRADE MARRIAGE SYSTEM ACTIVE GM'S INGAME AND FORUMS ALL SIEGES ALL FORTRESS ALL CLAN HALLS 95% QUESTS ALL CLASS QUESTS WORKING 95% SKILLS 100% LOW RATE NO CUSTOM SHOPS NO CUSTOM EVENTS NO CUSTOM ITEMS NO DONATIONS AND MUCH MORE TO LIST!! SERVER STATS: XEON QUAD CORE 2.4GHZ 8GIG RAM 3 74GB RAPTOR 10K 1 350 GB BACKUP (DEDICATED) FULLY CONFIGED 64 BIT 100MBS DEDICATED WE WANT TO BRING THE EXPERIENCE OF TRUE LINEAGE PLAY BACK TO THE PLAYERS, WE JUST OPENED, AND WOULD LOVE TO SEE THIS SERVER GROW, SO PLEASE CHECK US OUT! PRETTY SMALL COMMUNITY RIGHT NOW.
-
Many retail like events, along with seasonal events! Vesper craft!
-
[FREYA]-NEW 3X SERVER, MANY QUESTS, CRAFTING, NEW ZONES, NEW ARMORS, OFFICIAL EVENTS, JUST OPENED NEEDS A GOOD COMMUNITY TO GET START, JOIN NOW This is a free server for those who would like to experience the newest Expansion [Freya], we do not use any custom scripts, shops, buffers, or events. this si a low rate server "Role play" style server, new server, needs community to help grow, come show your support.. www.l2rtn.com
-
www.l2rtn.com 5000x 4 hour buffs farm zones crazy stats all players have super haste!!!
-
new server increase stats, crazy game play! pure PVP maxed casting, and attack rates! auto noble, much much more! www.l2rtn.com!
-
.::NO DONATIONS!!::. Dev's of server are working hard, to check what we are currently working on >click here< -------------------------------------------------------------------------------- .::New Event Master Of Enchanting:. Running from 09/10/10-09/30/10 Get In-game to take advatage of this event! Test your luck at a S80 Weapon! -------------------------------------------------------------------------------- .::New Event gift of Vitality Event::. Running from 09/01/10-11/01/10 Get In-game to take advatage of this event! -------------------------------------------------------------------------------- .::Ongoing Events Cake Maker-Heavy Medals::. Get In-game to take advatage of these events! -------------------------------------------------------------------------------- 08/28/2010: Server open to the Public, help us grow!!
-
Thx, we have small community, open only almost 2 weeks, so join play and have fun, we are dedicated to this server, and its future!
-
***Read This*** Revised 09/11/2010 L2RTN Dev's work hard to commit and fix any bugs, and keep the server up to date this server which functions on the base of L2JServer build Rev: 4413/7666, are goals are to encahance the core, and make more quests, and game features available to players. currently, there are only 2 Dev's in this Project, we are about 2 Months ahead of all other Forks of Java Based Emulators, This is a Java Based Server, which provides stability and virtually Lagg free enviroment [We do not account for crappy inet or bad Pc's of players] Currently are Goal is to have a Close to complete Gracia Epilogue, We are not concerned with High Rate PvP server, or event based server, are goal is to have a Mid-Low rate server Close to retail as possible in regards to Quests/Crafting/Spawns/etc.. The only Custom things you will see in-game are retail based Events that run year round, We do not claim to be 100% retail, nor can any other Project as this is impossible with how quickly NCSOFT comes out with Chronicles, and the unreliablity of sources on stats/spawns/quests/etc... L2RTN Dev Team is honored to server its players, we do not accept Donations nor ever will, we just want to provided a great server with hours upon hours of play time.. Check server fixes/updates/commits
-
L2 ReturN 20X Server Opened on 08.28.2010. NEW MID RATE - NO DONATIONS! :D :D .::Server Info::. Exp Rate: 20x Sp Rate: 20x Adena Rate: 30x Drop Rate: 15x Spoil Rate: 17x Boss Drop Rate: 4x Quests Rate: 7x Fish Rate: 7x Quests Reward rate: 2x .::Enchant Info::. Safe: +3 Max: +20 [armor/jewel +16 max] Normal Scroll: %66 Crystal Scroll: %66 Blessed Scroll: %72 .::L2 ReturN Info::. Full Gracia Epilogue Return Item Shop (NG-B items) Dimensional Merchant [open] Server Setup: Quests/craft/bosses Drops/buff times/skills Full Epilogue Skills 98% All Skill Works .::In-game events::. Heavy Medal Event Squish your Squash Gift of Vitality Cake Maker Fortune Teller Master of Enchanting All events are designed not to unbalance game play! Welcome to the Newest mid rate server 20X designed to give hours upon hours of play, NO DONATIONS means players are merited on work, not money! We believe in a fair enviroment for players, for this reason we dont accept donations from player for ANYTHING! so dont ask!. .::Have Fun::. CHECK FORUMS FOR CURRENT FIXES, AND TO SEE WORK COMPLETED
-
Fixed, :)
-
How many times have you been banned?
sd619` replied to Grim.'s topic in General Discussion [English]
alot way to many!