Mit-sos Posted August 28, 2012 Posted August 28, 2012 Helllllloooo members of maxcheaters.com!!! This is my firts java code and i'm glad that will share this in forum i hope to enjoy that!!! Index: java/net/sf/l2j/gameserver/clientpackets/EnterWorld.java =================================================================== --- java/net/sf/l2j/gameserver/clientpackets/EnterWorld.java +++ java/net/sf/l2j/gameserver/clientpackets/EnterWorld.java @@ -249,9 +249,67 @@ SevenSigns.getInstance().sendCurrentPeriodMsg(activeChar); Announcements.getInstance().showAnnouncements(activeChar); + Quest.playerEnter(activeChar); activeChar.sendPacket(new QuestList()); @@ -286,6 +287,7 @@ Hero.getInstance().getHeroes().containsKey(activeChar.getObjectId())) activeChar.setHero(true); + activeChar.charAnnouncements(); setPledgeClass(activeChar); Index: java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java =================================================================== --- java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java +++ java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java @@ -36,6 +36,7 @@ import net.sf.l2j.Config; import net.sf.l2j.L2DatabaseFactory; +import net.sf.l2j.gameserver.Announcements; import net.sf.l2j.gameserver.GameTimeController; import net.sf.l2j.gameserver.GeoData; import net.sf.l2j.gameserver.GmListTable; @@ -9985,6 +9986,35 @@ return _duelState; } + + public void charAnnouncements() + { + + if (Config.Announcements_Hero) + { + if (isHero()) + { + Announcements.getInstance().announceToAll("Server's Hero "+getName()+"is currently online"); + sendMessage("Welcome : "+getName()+ "Hero of our Server"); + sendMessage("There are: "+L2World.getInstance().getAllPlayers().size()+" players online"); + } + } + + if (Config.Announcements_GODLIKE) + { + if (getPvpKills() > 150 & getPkKills() > 150 & isNoble()) + { + Announcements.getInstance().announceToAll("Server's GODLIKE "+getName()+" with 150 pvp & 150pk & noble is currently online"); + sendMessage("Welcome : "+getName()+ "GODLIKE of our Server"); + sendMessage("There are: "+L2World.getInstance().getAllPlayers().size()+" players online"); + } + } + + + if (Config.Announcements_Legendery) + { + if (getPvpKills() > 100 & getPkKills() > 100 & isNoble()) + { + Announcements.getInstance().announceToAll("Server's legendary "+getName()+" with 100 pvp & 100pk & noble is currently online"); + sendMessage("Welcome : "+getName()+ "Legendary of our Server"); + sendMessage("There are: "+L2World.getInstance().getAllPlayers().size()+" players online"); + } + } + + if (Config.Announcements_Incredible) + { + if (getPvpKills() > 50 & getPkKills() > 50 & isNoble()) + { + Announcements.getInstance().announceToAll("Server's Incredible "+getName()+" with 50 pvp & 50pk & noble is currently online"); + sendMessage("Welcome : "+getName()+ "Incredible of our Server"); + sendMessage("There are: "+L2World.getInstance().getAllPlayers().size()+" players online"); + } + } + } Index: java/net/sf/l2j/Config.java =================================================================== --- java/net/sf/l2j/Config.java +++ java/net/sf/l2j/Config.java @@ -1185,5 +1185,46 @@ /** Alt Settings for devs */ public static boolean ALT_DEV_NO_QUESTS; public static boolean ALT_DEV_NO_SPAWNS; + + public static boolean Announcements_Hero; + public static boolean Announcements_GODLIKE; + public static boolean Announcements_Legendery; + public static boolean Announcements_Incredible; + + /** * This class initializes all global variables for configuration.<br> * If key doesn't appear in properties file, a default value is setting on by this class. * @see #CONFIGURATION_FILE for configuring your server. */ public static void load() @@ 1904,17 1904,138 @@ L2JMOD_WEDDING_SAMESEX = Boolean.parseBoolean(L2JModSettings.getProperty("WeddingAllowSameSex", "False")); L2JMOD_WEDDING_FORMALWEAR = Boolean.parseBoolean(L2JModSettings.getProperty("WeddingFormalWear", "True")); L2JMOD_WEDDING_DIVORCE_COSTS = Integer.parseInt(L2JModSettings.getProperty("WeddingDivorceCosts", "20")); + + Announcements_Hero = Boolean.parseBoolean(L2JModSettings.getProperty("AnnouncementsHero", "False")); + Announcements_GODLIKE = Boolean.parseBoolean(L2JModSettings.getProperty("AnnouncementsGODLIKE", "False")); + Announcements_Legendery = Boolean.parseBoolean(L2JModSettings.getProperty("AnnouncementsLegendery", "False")); + Announcements_Incredible = Boolean.parseBoolean(L2JModSettings.getProperty("AnnouncementsIncredible", "False")); + if (TVT_EVENT_PARTICIPATION_NPC_ID == 0) { TVT_EVENT_ENABLED = false; System.out.println("TvTEventEngine[Config.load()]: invalid config property -> TvTEventParticipationNpcId"); } Index: java/Config/L2jmods.Properties =================================================================== --- java/Config/L2jmods.Properties +++ java/Config/L2jmods.Properties @@ -140,1 +140,1 @@ +#================================================== +# Custom Announcements = +#================================================== +#Set this options to true to enable Announcements. +AnnouncementsHero = False +AnnouncementsGODLIKE = False +AnnouncementsLegendery = False +AnnouncementsIncredible = False If player is hero he get a wellcome message every time login when login can be seen all online players in this time and he Announcements!!! when one player done noblesse and has some pvp and pk BECOME a Incredible then Legendary and the final level is the GODLIKE he then gets a wellcome message every time login, when login can be seen all online players in this time AND Announcements ( as the hero :P ) You can edit the numbers of pvp,pk on 'getPvpKills() > 150' for pvp and 'activeChar.getPkKills() > 150' for pk AND don't forget to change the message!!! Τhank Fanky who helped me in L2PcInstanse code :) Quote
Fanky Posted August 28, 2012 Posted August 28, 2012 someone read my guide in gr section,I guess. gud job. but still way too simple,you could done it through pcinstance and then load the method in enterworld,in this way it's too crappy :P but since it is your first code.. Quote
Dulens. Posted August 28, 2012 Posted August 28, 2012 someone read my guide in gr section,I guess. gud job. but still way too simple,you could done it through pcinstance and then load the method in enterworld,in this way it's too crappy :P but since it is your first code.. Yay, I have to agree. Anyway, it's your first time and it's very good. Keep practicing. Quote
GsL Posted August 28, 2012 Posted August 28, 2012 Good luck man [Gr] Vlepw xwnese sta vathia [GR] Quote
Dulens. Posted August 28, 2012 Posted August 28, 2012 Good luck man [Gr] Vlepw xwnese sta vathia [GR] He is doing well. He doesn't ask help every 1 minute and spam whole forum. He is learning alone and that's very good. Quote
Fanky Posted August 28, 2012 Posted August 28, 2012 but still way too simple,you could done it through pcinstance and then load the method in enterworld,in this way it's too crappy :P but since it is your first code.. somethin' like that. ### Eclipse Workspace Patch 1.0 #P L2_GameServer_It Index: java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java =================================================================== --- java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java (revision 5585) +++ java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java (working copy) @@ -36,6 +36,7 @@ import net.sf.l2j.Config; import net.sf.l2j.L2DatabaseFactory; +import net.sf.l2j.gameserver.Announcements; import net.sf.l2j.gameserver.GameTimeController; import net.sf.l2j.gameserver.GeoData; import net.sf.l2j.gameserver.GmListTable; @@ -9985,6 +9986,35 @@ return _duelState; } + + public void charAnnouncements() + { + + if (isHero()) + { + Announcements.getInstance().announceToAll("Server's Hero "+getName()+"is currently online"); + sendMessage("Welcome : "+getName()+ "Hero of our Server"); + sendMessage("There are: "+L2World.getInstance().getAllPlayers().size()+" players online"); + } + if (getPvpKills() > 150 & getPkKills() > 150 & isNoble()) + { + Announcements.getInstance().announceToAll("Server's GODLIKE "+getName()+" with 150 pvp & 150pk & noble is currently online"); + sendMessage("Welcome : "+getName()+ "GODLIKE of our Server"); + sendMessage("There are: "+L2World.getInstance().getAllPlayers().size()+" players online"); + } + if (getPvpKills() > 100 & getPkKills() > 100 & isNoble()) + { + Announcements.getInstance().announceToAll("Server's legendary "+getName()+" with 100 pvp & 100pk & noble is currently online"); + sendMessage("Welcome : "+getName()+ "Legendary of our Server"); + sendMessage("There are: "+L2World.getInstance().getAllPlayers().size()+" players online"); + } + if (getPvpKills() > 50 & getPkKills() > 50 & isNoble()) + { + Announcements.getInstance().announceToAll("Server's Incredible "+getName()+" with 50 pvp & 50pk & noble is currently online"); + sendMessage("Welcome : "+getName()+ "Incredible of our Server"); + sendMessage("There are: "+L2World.getInstance().getAllPlayers().size()+" players online"); + } + } /** * Sets up the duel state using a non 0 duelId. * @param duelId 0=not in a duel Index: java/net/sf/l2j/gameserver/clientpackets/EnterWorld.java =================================================================== --- java/net/sf/l2j/gameserver/clientpackets/EnterWorld.java (revision 5585) +++ java/net/sf/l2j/gameserver/clientpackets/EnterWorld.java (working copy) @@ -251,6 +251,7 @@ SevenSigns.getInstance().sendCurrentPeriodMsg(activeChar); Announcements.getInstance().showAnnouncements(activeChar); + Quest.playerEnter(activeChar); activeChar.sendPacket(new QuestList()); @@ -286,6 +287,7 @@ Hero.getInstance().getHeroes().containsKey(activeChar.getObjectId())) activeChar.setHero(true); + activeChar.charAnnouncements(); setPledgeClass(activeChar); //add char to online characters for the record,because I'm kinda sure that you've no idea why we didnt used activeChar in l2pcinstance the reason is simple,activeChar is l2pcinstance's object,that's why. Quote
Mit-sos Posted August 28, 2012 Author Posted August 28, 2012 yes i spam in help section every one minute :P :-[ !!! Thank you all very much for your kind words!!! and fanky your guide is veryyyyy good helped me a lot!!! :D Quote
Fanky Posted August 28, 2012 Posted August 28, 2012 yes i spam in help section every one minute :P :-[ !!! Thank you all very much for your kind words!!! and franky your guide is veryyyyy good helped me a lot!!! fanky. glad that I helped anyway. Quote
Mit-sos Posted August 28, 2012 Author Posted August 28, 2012 AND thank you for the L2PcInstance code!!! realy!!! I understood my mistake ;D Quote
Fanky Posted August 28, 2012 Posted August 28, 2012 AND thank you for the L2PcInstance code!!! realy!!! I understood my mistake ;D your code doesnt got mistake. just by l2pcinstance way,its a bit more advanced than yours crappy way :P Quote
Mit-sos Posted August 28, 2012 Author Posted August 28, 2012 OK!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! :D thnxxxx!!!! i think i do a config today the night!!! :P because with config would be more practical!!! :P Quote
Fanky Posted August 28, 2012 Posted August 28, 2012 OK!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! :D thnxxxx!!!! i think i do a config today the night!!! :P because with config would be more practical!!! :P configs are useless unless you are newbie >.> Quote
Fanky Posted August 30, 2012 Posted August 30, 2012 where's the config on your code; lol. you just add them in config.java/properties. where's in your code? btw,what's that?if you keep l2pcinstance code u should delete all the enterworld code,lol. and just add one line in enterworld activeChar.charAnnouncements(); Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.