Jump to content

RєVєnGeR^

Legendary Member
  • Posts

    3,210
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by RєVєnGeR^

  1. $karos you are like me , ask phoenix how i did when he said me the 1st thingz about AION :P Now it is THE game for me :D
  2. I Hate thoose , movie - sigz , they sux i like some sigz like pwnz0r's one..
  3. Cool one , thanks for that ... seems like an Aio.. Good job and Thanks
  4. Can u please post my guide in ... you should have asked me here or msn :) Thankz :) Aw i forgot to say , damn dickhead ! There are , many AION Clients , which have the english language on them so you dont have to do this , so make sure u want it before you do it [GrisoM Note] If you forgot to say something modify your post ¬¬
  5. So , title says everything ... Which was the thing that you most attracted you and made you love AION? for me , of course is the game play and PvE .. i can say also the same about graphics , but the best for me was the Quest system.. No more those shitty quests , no more those Stupid quest , no more those "blind" players ... Quests are easiest , funner , make you PvPvE ... What else? Game is amazing for me .. but my +1 on playing offi is that all quests are working ..
  6. nop i think its just great here because of "Aion" main section .. is sthing important if u are playing on private servah :p
  7. Hello :P My 1st post in the greatest section of mxc for now , it is a guide made by me , so you can make your aion version of game english ... (no matter , you will need this if you play on private servers like infiniteaion.com even if i am against playing thoose shiats ...) So let's go , every simple picture , text is taken by me and all credits going to me 1st of all , download the AION 1.5 client (i will give u a link , click Here Now , after you finish your download , you have to install NCSoft launcher in order to update your game , client , etc ... You can download NCSoft launcher from Here Now install it .. Go on programm files in C:/ Normally you are gonna have a folder inside the program files , it will normally be : Inside it , there will be 2 folders , one says "Aion" and the other "NCsoft" (in order to connect a server , you place server's launcher (or .bat file) in the "Aion" folder .. in NCsoft folder the NCsoft updater is installed) Now we have installed both files , we have to update our AION client to the latest one .. How we will do this?Simple ... Open NCsoft launcher .. On the left up side there are the games that are installed on your computer .. normally they both will have a "Green" circle down of them , u will see if AION has a "orange" circle it means you need update .. if not , you can procceed to the next steps . If you need update just press "right" click , and then press "update" ... and wait till the update is over .. (if you have your game updated you can just jump this step) Now press on the right upper , "File" and then "Settings" It will open something that probably will looks like : Clik on "Advanced" and set everything as i have seted ... Press ok , It will return you the the main launchers window ... then go down left , and press "Update Now" and wait until the update finish .. with 2mbbs it took me 30 minutes When the update is ready just log in game , and woOt your client is in english ... If you have any problems connecting on private servers just be sure if they doesn't give u any other file to download , which is gonna to be planted inside the C:/Program Files/NCsoft/Aion/Bin32 All credits for this guide / picture are dedicated to ReVenGeR ... Thanks , and remember to never spam :P
  8. Chuck Norris can kill two stones with one bird
  9. Leeroy u damn noob dont be so fast .. LauQ , no words man , incredible really
  10. With my teachers , of course i will :D
  11. PaNiIiKoC when u view this topic , please hide your post for 50 Thanks :)
  12. No1 tested it on other packs?
  13. NullPvPFlag.java /* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA * 02111-1307, USA. * * http://www.gnu.org/copyleft/gpl.html */ package net.sf.l2j.gameserver.handler.voicedcommandhandlers; import net.sf.l2j.gameserver.handler.IVoicedCommandHandler; import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance; /** * * @Author Revenger * */ public class NullPvPFlag implements IVoicedCommandHandler { private static final String[] VOICED_COMMANDS = { "null_pvp_flag" }; public boolean useVoicedCommand(String command, L2PcInstance activeChar,String target) { if (command.equalsIgnoreCase("null_pvp_flag")) { if (activeChar.getPvpFlag() != 0 ) { activeChar.setPvpFlag(0); } else if (activeChar.isParalyzed() || activeChar.isRooted() || activeChar.isDead() || activeChar.isAlikeDead() || activeChar.isConfused() || activeChar.isBetrayed() || activeChar.isFakeDeath() || activeChar.isFlying() || activeChar.isMounted() || activeChar.isInDuel() || activeChar.isInOlympiadMode() || activeChar.inObserverMode() || activeChar.isInJail()) { activeChar.sendMessage("You Cannot Use This Command Right Now!"); return false; } } return true; } public String[] getVoicedCommandList() { return VOICED_COMMANDS; } } then register it on the gameserver import net.sf.l2j.gameserver.handler.voicedcommandhandlers.NullPvPFlag; _voicedCommandHandler.registerVoicedCommandHandler(new NullPvPFlag());
  14. Whoa , thanks dudes ... I Created 4 More Codes today , i will share them in a couple of hours.. Thanks everyone
  15. Locked , kse8apsma , already posted , non working
  16. Lemme guess ?! :P I Am 99% sure about who is he ... Gl to both and good new start
  17. Low rates na fantastw?Den pezoume kai poly..
  18. So , anyone tested in on any other L2J Pack?
  19. Sure , thanks everyone for the good words :P I Training right now , theese days more to come :P
  20. Unlocked , magaki13 gona post new links now
  21. Some1 took me the idea :@ :P
  22. Hello folks... This is one of my 1st java codes , i want to thx stefoulis15 too much for helping me at configs ... Index: config/mods/customs.properties =================================================================== --- config/mods/customs.properties (revision 43) +++ config/mods/customs.properties (revision 44) @@ -77,4 +77,9 @@ WarriorTitleSystemEnabled = False MageTitleSystemEnabled = False + +#------------------------------------------------------------- +# Section: Custom Fight Stats Title System +#------------------------------------------------------------- +AllowFightStatsSystem = False #------------------------------------------------------------- Index: /java/com/l2jarchid/gameserver/model/actor/instance/L2PcInstance.java =================================================================== --- /java/com/l2jarchid/gameserver/model/actor/instance/L2PcInstance.java (revision 32) +++ /java/com/l2jarchid/gameserver/model/actor/instance/L2PcInstance.java (revision 44) @@ -5453,4 +5453,7 @@ broadcastUserInfo(); + FightStatsSystem(getPvpKills(), getPkKills()); + broadcastUserInfo(); + // Update the character's name color if they reached any of the 5 PvP // levels. @@ -5463,4 +5466,12 @@ } + public void FightStatsSystem(int pvpKillAmount, int pkKillAmount) + { + if (L2Config.ALLOW_FIGHT_STATS_SYSTEM) + { + activeChar.setTitle("PvPs:"+getPvpKills()+ "| PKs:"+getPkKills()+""); + } + } + public void PvpReward() { if (L2Config.PVP_REWARD_ENABLED) { Index: //java/com/l2jarchid/L2Config.java =================================================================== --- /java/com/l2jarchid/L2Config.java (revision 41) +++ /java/com/l2jarchid/L2Config.java (revision 44) @@ -1346,4 +1346,5 @@ public static int SIDE_BLOW_SUCCESS; public static boolean ENABLE_MODIFY_SKILL_DURATION; + public static boolean ALLOW_FIGHT_STATS_SYSTEM; //===================================================================================== public static FastList<Integer> ALLOWED_SKILLS_LIST = new FastList<Integer>(); @@ -1597,5 +1598,5 @@ ARCHID_BACK_TIMER = Integer.parseInt(CustomMod.getProperty("BackTimer", "30")); ARCHID_AWAY_PEACE_ZONE = Boolean.parseBoolean(CustomMod.getProperty("AwayOnlyInPeaceZone", "False")); - + ALLOW_FIGHT_STATS_SYSTEM = Boolean.parseBoolean(CustomMod.getProperty("AllowFightStatsSystem", "False")); CHAR_TITLE = Boolean.parseBoolean(CustomMod.getProperty("CharTitle", "false")); ADD_CHAR_TITLE = CustomMod.getProperty("CharAddTitle", "Welcome"); What is this i just posted? When you aply this code , inside the game , the players are gonna have theyr fight status on their titles .. example?! PvPs : 50 | PKs : 10 Thanks .. Working on L2J Archid
  23. neither here or website nothing about ench.rates :D
×
×
  • Create New...