-
Posts
756 -
Joined
-
Last visited
-
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by FDB
-
[HELP]Client Crashes?
FDB replied to L2Paranormal's question in Request Server Development Help [Greek]
dn ine preconf to katara exi source code -
Server pwnz plz keep him on and dont close him like the rest!!!
-
WTS Wts The best Interlude Pack arround the world
FDB replied to Gekas®'s topic in Marketplace [L2Packs & Files]
omg? BoldRain is gekas? i OzO Smitted + banned for scam Kesha smitted + banned for scam Maxpowerz Smitted + banned for scamm Now BoldRain? i Gues smitted + banned again for scam :) -
vale tags link... Euxaristo
-
is just x40 server why to disable craft? he want all classes to be usefull plz make it setekh with craft Dwarfs are retards in most of the servers, so make them usefull
-
l2jbrasil what y expect?
-
[Trick]Ο Αλλος Τρόπος του να κλείσετε server
FDB replied to CarmineAngelo's topic in Hacks and Cheats [Greek]
pes t ellinika plz -
[Trick]Ο Αλλος Τρόπος του να κλείσετε server
FDB replied to CarmineAngelo's topic in Hacks and Cheats [Greek]
apla anikse port tis mysql stou filou s zita t stoixia gia ssh k rimakse tou tn db svise t t backups k etc klini.... mialo 8eli? -
Ohh coyote you have right if i got it enabled so the config will not work :/ thnks i will correct it on my project @ eKo i will upload patches later
-
Ok i upload it and then share it i will edit :P
-
/java/net/sf/l2j/gameserver/handler/voicedcommandhandlers/newbiegift.java@2 /* 2 * This program is free software: you can redistribute it and/or modify it under 3 * the terms of the GNU General Public License as published by the Free Software 4 * Foundation, either version 3 of the License, or (at your option) any later 5 * version. 6 * 7 * This program is distributed in the hope that it will be useful, but WITHOUT 8 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 9 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more 10 * details. 11 * 12 * You should have received a copy of the GNU General Public License along with 13 * this program. If not, see <http://www.gnu.org/licenses/>. 14 */ 15 package net.sf.l2j.gameserver.handler.voicedcommandhandlers; 16 17 import net.sf.l2j.gameserver.handler.IVoicedCommandHandler; 18 import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance; 19 import net.sf.l2j.util.Rnd; 20 21 /** 22 +* 23 +* @author eko 24 +*/ 25 public class newbiegift implements IVoicedCommandHandler 26 { 27 private static final String[] VOICED_COMMANDS = { "newbiegift" }; 28 29 public boolean useVoicedCommand(String command, L2PcInstance activeChar, String target) 30 { 31 if (command.equalsIgnoreCase("newbiegift")) 32 { 33 if (activeChar.getLevel() >= 1 && activeChar.isNewbie()) 34 { 35 activeChar.sendMessage("You are allready Used that Command."); 36 return true; 37 } 38 else if (activeChar.getInventory().getItemByItemId(3434).getCount() >= 1) 39 { 40 activeChar.getInventory().destroyItemByItemId("newbiegift", 3434, 1, activeChar, activeChar.getTarget()); 41 // {ItemID, Item Ammount} 42 int[][] items = { {8557, 1}, {8184, 1}, { 8187, 1}, { 8552, 1}, { 8185, 1}, { 8563, 1}, { 8562, 1}, { 8561, 1}, { 8560, 1} }; 43 // How many Items Aviable on the List 44 int[] ar = items[Rnd.get(9)]; 45 activeChar.addItem(command, ar[0], ar[1], activeChar, true); 46 activeChar.sendMessage("You Recived a Newbiegift!"); 47 activeChar.broadcastUserInfo(); 48 } 49 else 50 { 51 activeChar.sendMessage("Missing Coke to Create your Gift."); 52 return true; 53 } 54 } 55 return false; 56 } 57 public String[] getVoicedCommandList() 58 { 59 return VOICED_COMMANDS; 60 } 61 } this is ok now:/java/net/sf/l2j/Config.java public static int L2JMOD_WEDDING_DIVORCE_COSTS; 884 884 885 //Newbie Gift Config 886 public static boolean NewbieGift = true; 887 885 888 // Packet information 886 889 /** Count the amount of packets per minute ? */ … … 1860 1863 L2JMOD_WEDDING_DIVORCE_COSTS = Integer.parseInt(L2JModSettings.getProperty("WeddingDivorceCosts", "20")); 1861 1864 1865 //Newbie gift 1866 NewbieGift = Boolean.parseBoolean(L2JModSettings.getProperty("NewbieGift ", "True")); 1867 1862 1868 if (TVT_EVENT_PARTICIPATION_NPC_ID == 0) 1863 1869 { 2nd part : java/net/sf/l2j/gameserver/GameServer.java import net.sf.l2j.gameserver.handler.voicedcommandhandlers.Wedding; 200 200 import net.sf.l2j.gameserver.handler.voicedcommandhandlers.stats; 201 import net.sf.l2j.gameserver.handler.voicedcommandhandlers.newbiegift; 201 202 import net.sf.l2j.gameserver.idfactory.IdFactory; 202 203 import net.sf.l2j.gameserver.instancemanager.AuctionManager; … … 587 588 588 589 _log.config("UserCommandHandler: Loaded " + _userCommandHandler.size() + " handlers."); 589 590 591 592 590 593 _voicedCommandHandler = VoicedCommandHandler.getInstance(); 591 594 _voicedCommandHandler.registerVoicedCommandHandler(new stats()); 592 595 596 if(Config.NewbieGift) 597 _voicedCommandHandler.registerVoicedCommandHandler(new newbiegift()); 598 593 599 if(Config.L2JMOD_ALLOW_WEDDING) 594 600 _voicedCommandHandler.registerVoicedCommandHandler(new Wedding()); 601 595 602 596 603 _log.config("VoicedCommandHandler: Loaded " + _voicedCommandHandler.size() + " handlers."); Final: /java/config/l2jmods.properties 94 94 #--------------------------------------------------------------- 95 # Newbie Gift - 96 #--------------------------------------------------------------- 97 98 NewbieGift=True 99 100 #--------------------------------------------------------------- 95 101 # Team vs. Team Event Engine (by FBIagent) - 96 102 #--------------------------------------------------------------- What about this? :P
-
just for that? is really usefull lol anyway mods desicion .... too shame this man deservs it
-
give him karmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa omg
-
but what is the voice command type? .?
-
you need a Karma!!!!!!
-
[L2OFF] L2 Reality PvP Server Custom Items Like L2 Gold!
FDB replied to nikejuli's topic in Private Servers
yes but 1 donation cost like 9 small prices a row -
If it will be long live i will play!!
-
relax my mistake
-
min to les i trela kerdizi panta ^^
-
I Was laughing about 1 hour and still xa0xa0x0ax0a0xa0x0a0x0ax0a0xa0 epic!!!!!!!!!!!!!!!!!!!!!!
-
oxi dn tn kanoune gia tn plk tous o enas ine 8eo trelos k o zigko tn ekmetaleute ^^ MC tOlis ine k stis idikes dinamis dite ti exi i ellada stis idikes dinamis loll
-
aytous tous kserw apo konta xaxax pes m oti ise Roditis
-
are already stolen check la2base it got some but not .lt just .ru edit: here you are http://la2base.ru/java/6626-java-server-freya.html
-
xaxaxaxax tr ka8isterimenos pio poli pios ine o tus i o allos m t kokina? kai oi 2 gia ka8isterimena fenonte!! :P BTW Bgazi polla orea Fun songs gia n linis xaxax <3 Ekanes stomatiko ston nikola!xaxaxaxx
-
stupidy 100%? 1st server is offline 2nd none forced you to play (if was online) Take sarcasm and put into your...... Mouth

