-
Posts
751 -
Joined
-
Last visited
-
Days Won
3 -
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by AbsolutePower
-
[GR][Share]PVPEnchantChanceWeapon + Config
AbsolutePower replied to AbsolutePower's topic in Server Shares & Files [L2J]
ekana! -
[GR][Share]PVPEnchantChanceWeapon + Config
AbsolutePower replied to AbsolutePower's topic in Server Shares & Files [L2J]
otan pe8eneis file feugei... kai 3ana apo tin arxh... nai auto 8elw.... na kanoun pvp :P e3alou ston server m exw anti feed. :S -
[GR][Share]PVPEnchantChanceWeapon + Config
AbsolutePower replied to AbsolutePower's topic in Server Shares & Files [L2J]
ok file 8a kanw kai config. -
[gr]re gamw ti ston peo exete pa8ei oloi me ta free site??? gt gineste toso gelioi??? egw dn goustarw .com i oti alo domain uparxei... 8a balw mono otan dw oti paei kala o server. ee re kati kolimata eleos... uparxoun free sites pou ta kaneis opos 8es kai emeis prepei na agorasoume domain giati??? gia na anebei o server??? kai kala oooooo domain mpainoume??? eleos mlkies
-
you can't judge me about a prefix. lol you must respect the others.
-
[GR][Share]PVPEnchantChanceWeapon + Config
AbsolutePower replied to AbsolutePower's topic in Server Shares & Files [L2J]
ma dn einai kai polu poluploko gia test. :S anyway 8a t testarw twra -
about the bugs i don't think so. post here the bugs
-
[help] me away system
AbsolutePower replied to ScRaB4ever's question in Request Server Development Help [Greek]
den katalaba :S -
1)Il is the best client server. is not my problem if they don't know how to handle it. 2) if you don't like it just don't send-spamm with your idiot thoughts
-
http://l2-delirium.tk/
-
[server Machine] Dedicated Server Intel Core i7 940 2.93Ghz Windows Server 7 x32 bit 8GB RAM DDR2 Hard Disk 1TB SATA x2 Line Connection 1000 Mbit No Donates [Main Server Info] Experience: 5000x Sp: 5000x Adena Drop: 5000x > Enchant Rates: Safe Enchant : +4 Weapon Max Enchant : +25 Armor Max Enchant : +25 Jewels Max Enchant : +25 enchant Weapon : 70% enchant Armor : 70% enchnat Jewels : 70% Blessed enchant Weapon : 95% enchant Armor : 95% enchnat Jewels : 95% [server Features] -No Custom -Auto-Event, Every 60 minutes - Reward 10 Gold bars -Max Sub-Class- 3 -PVP/pk Color System -Custom Shop - Lifestones, Blessed Scrolls, Boss Jewles, Custom Shields -Full GM Shop -Player Commands- .deposit - make Adena to Gold Bars, .withdraw - make Gold Bars to Adena. .info .online .stat -All Skills Work 99% -Over-Enchant Protection -Flood Protector -Smart Protection -Protection From L2J Attacker, L2Jkiller , L2Walker, L2Phx and other hacking programs. -Auto-Learn Skills -Balanced Classes -Wedding System -Clan Hall System -No Clan Penalty -Castle Siege System -Sub-Class System -Noblesse System -Hero System -Duel System -Augmentation System -All Noblesse Skills -All Hero Skills -All Augmentation Skills -Every Buff / Dance / Song / Chant Lasts 3 Hours -Cursed Weapons Zariche and Akamanah -Unstuck Command 10 seconds -Town Buffer -Weding Manager -Custom Gatekeepers -Gold Bar System -Many Custom Events with Special Prizes Daily -Events,TVT,Fos Engine,VIP Engine -Custom Farm Zones -PVPZones www.l2-delirium.tk (i will buy domain soon)
-
[HELP] PSAXNW CODE..
AbsolutePower replied to sokianos's question in Request Server Development Help [Greek]
bale to pvp/pk etsi opws ta exei dn einai tpt dyskolo mn bariese. pane sto enterworld kai bale if (clan.getHasCastle() > 0) { Castle castle = CastleManager.getInstance().getCastleById(clan.getHasCastle()); if ((castle != null) && (activeChar.getObjectId() == clan.getLeaderId())) Announcements.getInstance().announceToAll("Lord " + activeChar.getName() + " Ruler Of " + castle.getName() + " Castle is Now Online!"); } } } to 2o uparxei share edw psa3e kai 8a to breis. -
[help] me away system
AbsolutePower replied to ScRaB4ever's question in Request Server Development Help [Greek]
public class away implements IVoicedCommandHandler { private static final String[] VOICED_COMMANDS = { "away", "back" }; private String chartitle; private int charcolor; public boolean useVoicedCommand(String command, L2PcInstance activeChar, String target) { if (activeChar.isInJail()) { activeChar.sendMessage("You cannot use this command while you are in Jail!"); return false; } if(activeChar.isInOlympiadMode()) { activeChar.sendMessage("You cannot use this command while you are in the Olympiad now."); return false; } if(activeChar.atEvent) { activeChar.sendMessage("You cannot use this command while you are in an event."); return false; } if (activeChar.isInDuel()) { activeChar.sendMessage("You cannot use this command while you are in a duel!"); return false; } if (activeChar.inObserverMode()) { activeChar.sendMessage("You cannot use this command while you are in Observer Mode."); } if (activeChar.isFestivalParticipant()) { activeChar.sendMessage("You cannot use this command while you are in a festival."); return false; } if (activeChar.isInParty() && activeChar.getParty().isInDimensionalRift()) { activeChar.sendMessage("You cannot use this command while you are in the dimensional rift."); return false; } if (activeChar.isParalyzed()) { activeChar.sendMessage("You are already away from keyboard."); return false; } { if (command.equalsIgnoreCase("away")) chartitle = activeChar.getTitle(); charcolor = activeChar.getAppearance().getTitleColor(); activeChar.sendMessage("You are away from keyboard."); activeChar.setTitle("*Away*"); // Title text when somebody is away. activeChar.getAppearance().setTitleColor(0xFF000); activeChar.setIsParalyzed(true); activeChar.broadcastUserInfo(); } if (activeChar.isInJail()) { activeChar.sendMessage("You cannot use this command while you are in Jail!"); return false; } if(activeChar.isInOlympiadMode()) { activeChar.sendMessage("You cannot use this command while you are in the Olympiad."); return false; } if(activeChar.atEvent) { activeChar.sendMessage("You cannot use this command while you are in an event."); return false; } if (activeChar.isInDuel()) { activeChar.sendMessage("You cannot use this command while you are in a duel!"); return false; } if (activeChar.inObserverMode()) { activeChar.sendMessage("You cannot use this command while you are in Observer Mode."); } if (activeChar.isFestivalParticipant()) { activeChar.sendMessage("You cannot use this command while you are in a festival."); return false; } if (activeChar.isInParty() && activeChar.getParty().isInDimensionalRift()) { activeChar.sendMessage("You cannot use this command while you are in the dimensional rift."); return false; } { if (command.equalsIgnoreCase("back")) activeChar.sendMessage("Welcome back, have fun!"); activeChar.setTitle(chartitle); activeChar.getAppearance().setTitleColor(charcolor); activeChar.setIsParalyzed(false); activeChar.broadcastUserInfo(); } return true; } public String[] getVoicedCommandList() { return VOICED_COMMANDS; } } oriste. dokimase to kai pes mou -
[Share]Event Hero [Update]
AbsolutePower replied to Flash™'s topic in Server Development Discussion [Greek]
nice share i will test it! GG -
[share] Allow hero weapons enchantment
AbsolutePower replied to ScRaB4ever's topic in Server Shares & Files [L2J]
[gr]credits se esena??? axxaax ti les re se ola ta Il packs uparxei auto... sta alla dn 3erw mono me il asxoloume... -
{HELP}thelo na min xrisimopiounte kapia names
AbsolutePower replied to BlackKiss's question in Request Server Development Help [Greek]
aman 8a m trelanoun edw mesa ti alo 8a akousw.... afou einai gia na ta baleis se npc eee balta dn uparxei kanena problhma lol... -
java books sto google re :P
-
nai... :S o eukolos tropos einai na pas kai na kaneis spawn tous guards.... kai o alos na tous kaneis spawn meso java pm m gia to code i kane to prwto. :P
-
http://www.maxcheaters.com/forum/index.php?topic=59532.0
-
helpppppppppp
AbsolutePower replied to Nauagos's question in Request Server Development Help [Greek]
pff lol an einai compile to pack s pane sto pack kai des ta eleos
