-
Posts
1,757 -
Joined
-
Last visited
-
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by Kràtos
-
[H3333Lp!!!]Pos na vglaw online ton server moy...
Kràtos replied to Coolis®'s question in Request Server Development Help [Greek]
Ean den mporeis na mpeis me to non-ip pou xrisimopis... tote dokimase me 192.168.1.2 . -
[Share]Voice command TvT Ctf !!! for L2Emu
Kràtos replied to Kràtos's topic in Server Shares & Files [L2J]
Any opinion is welcome , but stay on topic atm .... if you have a 1% of java knowledge you will understand that the method at this programing language have not big difference (wen you make something in tvt or other like that voiced command can't be completely different bcauz l2emu is sync with l2jfree), you flame my knowledge so i have the promotion to flame yours. Always Friendly Cobra. p.s: you want to tell me the walker protection made it those? (MindHunter), Zakax and Cleo?? rofl +1 ! p.s: 1waring for off topic. -
The Oldest Member who will reply here will win a Platinum Membership!
Kràtos replied to Maxtor's topic in Spam Topics
your date: Date Registered: September 23, 2008, 10:17:05 PM [gr] ouden sxolio. -
[GR]Simera i wra tis ghs... alla prin apofasisoume na kleisoume ta fwta ->
Kràtos replied to TheMentaL's topic in Off-Topics
+1 kai +1 post gia mena ... yuhhhhuuuu! Eleos dld ... egw pantos ta esvisa den kserw ....ti lete eseis :] p.s: Protino Spam Topic ... Na deis meta tha postaroune i oikologei? xD Den mporeis 8) -
Enas einai foustis o[Human]Daggeras .... gt ? ...gt ollo apo piso varaei xD ore ton pisoklenti...;P
-
Nice to hear you like it :]
-
Well after the pvp reward system i though to make a Exp And Sp Reward system. Not much to say ;) Here We Go; Index: /java/config/pvp.properties =================================================================== --- java/config/pvp.properties (revision 2839) +++ java/config/pvp.properties (working copy) @@ -22,6 +22,11 @@ # item drop related min/max MinimumPKRequiredToDrop = 5 +#Exp and SP Award System By Cobra +# 0 Is by Default! +AddExpAtPvp = 0 +AddSpAtPvp = 0 + # Should we award a pvp point for killing a player with karma? AwardPKKillPVPPoint = False Index: java/net/sf/l2j/Config.java =================================================================== --- java/net/sf/l2j/Config.java (revision 2839) +++ java/net/sf/l2j/Config.java (working copy) @@ -81,6 +81,8 @@ /** Properties file for telnet configuration */ public static final String TELNET_FILE = "./config/telnet.properties"; + + /******************************************************************************************************************************************************/ /** L2J Property File Definitions End Here**/ /******************************************************************************************************************************************************/ @@ -563,6 +565,7 @@ public static boolean L2JMOD_ENABLE_WAREHOUSESORTING_FREIGHT; public static boolean L2JMOD_ENABLE_MANA_POTIONS_SUPPORT; + /** ************************************************** **/ /** L2JMods Settings -End **/ /** ************************************************** **/ @@ -612,6 +615,10 @@ public static boolean KARMA_AWARD_PK_KILL; /** Minimum PK required to drop */ public static int KARMA_PK_LIMIT; + /** Add Exp At Pvp! */ + public static int ADD_EXP; + /** Add Sp At Pvp! */ + public static int ADD_SP; /** List of pet items that cannot be dropped (separated by ",") when PVP */ public static String KARMA_NONDROPPABLE_PET_ITEMS; /** List of items that cannot be dropped (separated by ",") when PVP*/ @@ -944,7 +951,8 @@ public static int FAST_CONNECTION_LIMIT; public static int NORMAL_CONNECTION_TIME; public static int FAST_CONNECTION_TIME; - public static int MAX_CONNECTION_PER_IP; + public static int MAX_CONNECTION_PER_IP; + /** * This class initializes all global variables for configuration.<br> @@ -1935,6 +1943,8 @@ KARMA_AWARD_PK_KILL = Boolean.parseBoolean(pvpSettings.getProperty("AwardPKKillPVPPoint", "true")); KARMA_PK_LIMIT = Integer.parseInt(pvpSettings.getProperty("MinimumPKRequiredToDrop", "5")); + ADD_EXP = Integer.parseInt(pvpSettings.getProperty("AddExpAtPvp", "0")); + ADD_SP = Integer.parseInt(pvpSettings.getProperty("AddSpAtPvp", "0")); KARMA_NONDROPPABLE_PET_ITEMS = pvpSettings.getProperty("ListOfPetItems", "2375,3500,3501,3502,4422,4423,4424,4425,6648,6649,6650,9882"); KARMA_NONDROPPABLE_ITEMS = pvpSettings.getProperty("ListOfNonDroppableItems", "57,1147,425,1146,461,10,2368,7,6,2370,2369,6842,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,7694,8181,5575,7694,9388,9389,9390"); @@ -2336,6 +2346,8 @@ else if (pName.equalsIgnoreCase("CanGMDropEquipment")) KARMA_DROP_GM = Boolean.parseBoolean(pValue); else if (pName.equalsIgnoreCase("AwardPKKillPVPPoint")) KARMA_AWARD_PK_KILL = Boolean.parseBoolean(pValue); else if (pName.equalsIgnoreCase("MinimumPKRequiredToDrop")) KARMA_PK_LIMIT = Integer.parseInt(pValue); + else if (pName.equalsIgnoreCase("AddExpAtPvp")) ADD_EXP = Integer.parseInt(pValue); + else if (pName.equalsIgnoreCase("AddSpAtPvp")) ADD_SP = Integer.parseInt(pValue); else if (pName.equalsIgnoreCase("PvPVsNormalTime")) PVP_NORMAL_TIME = Integer.parseInt(pValue); else if (pName.equalsIgnoreCase("PvPVsPvPTime")) PVP_PVP_TIME = Integer.parseInt(pValue); Index: java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java =================================================================== --- java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java (revision 2839) +++ java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java (working copy) @@ -5287,6 +5287,10 @@ { // Add karma to attacker and increase its PK counter setPvpKills(getPvpKills() + 1); + addExpAndSp(Config.ADD_EXP, Config.ADD_SP); + { + sendMessage("You win Exp and Sp From Pvp Kills!."); + } // Send a Server->Client UserInfo packet to attacker with its Karma and PK Counter sendPacket(new UserInfo(this)); You can edit your config now are 0 by default . Have Fun Cobra!
-
[GR]Simera i wra tis ghs... alla prin apofasisoume na kleisoume ta fwta ->
Kràtos replied to TheMentaL's topic in Off-Topics
San prokisriksei tou KKE m fenete ;D xwreis na thikso to singekrimeno koma etsi... ;P Gia mena eite ta klisei kapios eite oxi einai stin epilogei tou kathenos. Den m leei kati ayto... apli propaganda m fenete ... -
I'm in .. I'll turn of all the lights(everything) of my home! I hope many ppl join in this Event! (turn teh lights off b!Tch3zzZZz! ;])
-
y0 the program is pr0 ;D Thanks for making this button Hero ...!! p.s: +1 from me for the hero button you save my hands :D
-
Help! Related with Script buffer creation.
Kràtos replied to V-eGa's question in Request Server Development Help [L2J]
-Topic Locked if you have any other question pm me to open it again. -
[GR + ENG] Looking for some POWER House Tracks from youtube!
Kràtos replied to K4rMa's topic in Spam Topics
L0L rofl those are not house ... but prodigy ... ! Look better the first post .. O.o -
[Request] last rev from l2emu
Kràtos replied to claww's topic in Server Development Discussion [L2J]
-Topic Locked also you make request on wrong topic 1st waring from me. -
Sxetika me to Update enos server
Kràtos replied to Fizo's question in Request Server Development Help [Greek]
Kai full install na kaneis ... to sygouro einai oti ta acc tha xathoun alla sta npc's mono ta sql ... tha diagraftoun .... Mporeis na pareis ta npc's.sql teleport kserw egw ti exeis ftia3ei kanta antigrafei .... san buck up , kane full install ... kai kane execute ta sql pou exei ta custom p exeis vali...! (to mono sygouro einai oti ta acc's tha xathoun ;P) -
Finally is finished :] I go to test it out , gg br0! Great tool , i would give you a +1 but XxRxX told first :S .... hahah ;P
-
Try to add in your npcbuffer a cancel before buff and a reuse delay...
-
dite oliiii!!!!!!!!!
Kràtos replied to EvadeTube's question in Request Server Development Help [Greek]
Lathos section ....! Einai to gracia final. 1 Waring! -Topic Locked -
The hole is not your buffer ... but the newbie buffer ... wen the character start he go at adventurer to take some buffs .. only 4 buffs and one cubic .... they stuck this buffs with the new hlapex .. delete this npc(the code is under construction for fix).. for pvp server is not nesecary i think.
-
Accept Screen after login...
Kràtos replied to Aggonn's question in Request Server Development Help [L2J]
Problem solved -Topic Locked If you have any other question pm me to unlock it. -
[Guide]ΤΖΑΜΠΑ overclocκing ΓΙΑ 40% ΠΕΡΙΣΣΟΤΕΡΟ CORE 2![gr]
Kràtos replied to Coolis®'s topic in Off-Topics
Google translator? Kai diavase ti leei stin arxei ...!. (spaming den kanei kalo gt meta klegeste gt exw -1) Aneveazeis tis epidoseis tou Hpologistei ... egw exw mitrikh(epeksergasti) sta 3.2 kai tin ekana overclocking sta 3.4 kai tin mnimi apo 2gb sta 4gb. To guide einai kalo gia ta newbie ;) EDIT: Tha mas trelanete edw mesa : http://en.wikipedia.org/wiki/Overclocking ( thes na m peis oti patises overclocking sto google kai den s evgale tpt? ahhah) -
pas config/Character.properties # Apella armors can be equipped only by clan members if their class is Baron or higher. # Retail: true ApellaArmorsRestriction = True Apo true to kaneis false.
-
My Birthday Passe. Thank You all for the wishes, appreciated. Best wishes to ... in your life's. -Locked
-
[GR + ENG] Looking for some POWER House Tracks from youtube!
Kràtos replied to K4rMa's topic in Spam Topics
Vrekies ton katalilo anthropo xD 8Ls8kuDV7hM tbNXqLgly6A bIvkWKrVPrU 1_eOBMWyeZ8 jmDpFt8Kqw4 ankA5YIba6A Tha s kano edit to post m ;P Ayto Einai to proto :] -
Navicat Help (Fixed)
Kràtos replied to W1shM4ster's question in Request Server Development Help [L2J]
Maybe bcauz you have the light version .... you can use the trial version but for some day's ... The fully version you need to pay for it (or find a crack ;P) -
Accept Screen after login...
Kràtos replied to Aggonn's question in Request Server Development Help [L2J]
Login Server, Server.properties Set false The license :] Anyway you are in wrong section.