-
Posts
269 -
Joined
-
Last visited
-
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by Howl3r
-
[REQUEST]Preconfigured Gracia Final Server Pack
Howl3r replied to Stάzy's question in Request Server Development Help [L2J]
Wait to release first pack thats support l2 Gracia Final xD is one released but missing words -
[Request]Need MOD/DEV
Howl3r replied to aurash00's question in Request Server Development Help [L2J]
@horus you want to much xD @aurash00 i will add you to my messenger to help you xD -
[Guide] How to make the city PVP Zone
Howl3r replied to CriticalError's topic in Server Development Discussion [L2J]
Yes but this have a bit problem. when you press to village is stuck there xD http://www.maxcheaters.com/forum/index.php?topic=47100.0 -
Hmmmmm......... Let's see i am now making the v2 becouse i find some errors in v1 :) and i will add More Cool Menu (rolf) xD
-
Operating System
Howl3r replied to MaestroLuke's question in Request Server Development Help [Greek]
Nai alla sta Linux den mporeis na trexeis ta exe files... Alla eiparxi ena programa gia auto.. to wine Kai ti protinete os Linux? CentOS Damn Small Linux Debian Fedora ????? -
Meso Core. Mono ginete auto Prepei na ksereis apo Eclipse kai Compile Kai fisika Code.... ama ta ksereis auta tote mporeis na ta ftiakseis Ama oxi kane search gia Guide pano sto Eclipse kai 8a voifi8is arketa pistevo. ;)
-
HELP pls Lag problem in L2...
Howl3r replied to Stance's question in Request Server Development Help [L2J]
He said lag no zoom ;) @Stance What Speed Connection you have? if a little and server speed is little too you have lag.. if you have big and server little you lag but no much like first if you have big and server big you dont lag if you have little and server big you have a little very little lag but when have much ppl online have normal lag LoL -
Gia ola ta Client to Protocol parameni Idio alla prosexe........ mono ta dat, ini ta vazeis 413.... ta int min ta valeis pote 413 auta einai 111
-
File mou edwsa mia mikri voifia den zitisa ;) :OnTopic: Mporeis akoma kai me SVN ama ksereis apo Eclipse. :)
-
Tora ta pio pola pack pou eiparxoun edw einai me multisell ta shop tous... Lipon.. pas sto html tou shop den kserw id esei 8a to vreis einai sta data/html/merchant/****.htm To anigis me Simiomatario kai psaxneis to line pou leei kapos etc <a><bypass h- npc_%objectid%_multisell (to noumero tou multi)>Epic</a> kati tetia.. Meta pas sto data/multisell kai psaxnis to (noume tou multi :P) meta pou 8a to vreis to anigis pali me Simiomatario kai opou leei <ingredient id="***" count="***"/> einai to ti items 8a prepei na exeis gia na to pareis.. eno opou leei <production id="***" count="1"/> einai to items pou pernei o character me ta items pou 8a valeis na kani elpizw na se help
-
Exeis katevasei ta Geodata files? Lipon to L2jFree exei ena geodata.properties L2j sto General.. L2jEmu den poli 8imame :P mallon kai auto sto confing/main/general.properties 8a einai Ama den exeis omos ta geodata files den kaneis douleia ;)
-
Provlima me ta xromata sta names.....
Howl3r replied to zerod's question in Request Server Development Help [Greek]
A nai ksexasa na sou po... Oti auto to PvP Color System exei ena Provlima..... sta Color Name.... sto paei mexri to 4 to 5 den to metraei.... 8a sou post ena patch gia eclipse... pou se auto mporeis na valeis pano apo 5 xromata .::EDIT::. Index: java/net/sf/l2j/gameserver/clientpackets/EnterWorld.java =================================================================== --- java/net/sf/l2j/gameserver/clientpackets/EnterWorld.java (revision 2202) +++ java/net/sf/l2j/gameserver/clientpackets/EnterWorld.java (working copy) @@ -178,6 +178,8 @@ activeChar.sendPacket(new QuestList()); loadTutorial(activeChar); + if (activeChar.getPvpKills()>100) activeChar.updatePvPColor(activeChar.getPvpKills()); + if (Config.PLAYER_SPAWN_PROTECTION > 0) activeChar.setProtection(true); Index: java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java =================================================================== --- java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java (revision 2202) +++ java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java (working copy) @@ -3661,6 +3661,18 @@ } } + public void updatePvPColor(int pvpKillAmount) + { + if (isGM()) return; + String colorCode = "0xFFFFFF"; + String titleCode ="0xFFFF77 + if (pvpKillAmount > 100) colorCode = "0xFFCCCC"; + if (pvpKillAmount > 100) titleCode ="0xFFCCCC"; + if (pvpKillAmount > 200) colorCode = "0xFF9999"; + if (pvpKillAmount > 200) titleCode ="0xFF9999"; + if (pvpKillAmount > 300) colorCode = "0xFF6666"; + if (pvpKillAmount > 300) titleCode ="0xFF6666"; + if (pvpKillAmount > 500) colorCode = "0xFF3333"; + if (pvpKillAmount > 500) titleCode ="0xFF3333"; + if (pvpKillAmount > 1000) titleCode ="0xFF0000"; + if (pvpKillAmount > 1000) colorCode = "0xFF0000"; + getAppearance().setNameColor(Integer.decode(colorCode)); + getAppearance().setTitleColor(Integer.decode(titleCode)); + } + @Override public final void updateEffectIcons(boolean partyOnly) { @@ -4978,6 +4990,9 @@ { // Add karma to attacker and increase its PK counter setPvpKills(getPvpKills() + 1); + + updatePvPColor(getPvpKills()); + broadcastUserInfo(); // Send a Server->Client UserInfo packet to attacker with its Karma and PK Counter sendPacket(new UserInfo(this)); Ama 8es na valeis parapano xromata aplos vazeis mia akoma gramei edw + if (pvpKillAmount > 100) colorCode = "0xFFCCCC"; + if (pvpKillAmount > 100) titleCode ="0xFFCCCC"; + if (pvpKillAmount > 200) colorCode = "0xFF9999"; + if (pvpKillAmount > 200) titleCode ="0xFF9999"; + if (pvpKillAmount > 300) colorCode = "0xFF6666"; + if (pvpKillAmount > 300) titleCode ="0xFF6666"; + if (pvpKillAmount > 500) colorCode = "0xFF3333"; + if (pvpKillAmount > 500) titleCode ="0xFF3333"; + if (pvpKillAmount > 1000) titleCode ="0xFF0000"; + if (pvpKillAmount > 1000) colorCode = "0xFF0000"; etc fenete to Code xwris na valo allo + if (pvpKillAmount > 100) colorCode = "0xFFCCCC"; + if (pvpKillAmount > 100) titleCode ="0xFFCCCC"; + if (pvpKillAmount > 200) colorCode = "0xFF9999"; + if (pvpKillAmount > 200) titleCode ="0xFF9999"; + if (pvpKillAmount > 300) colorCode = "0xFF6666"; + if (pvpKillAmount > 300) titleCode ="0xFF6666"; + if (pvpKillAmount > 500) colorCode = "0xFF3333"; + if (pvpKillAmount > 500) titleCode ="0xFF3333"; + if (pvpKillAmount > 1000) titleCode ="0xFF0000"; + if (pvpKillAmount > 1000) colorCode = "0xFF0000"; + if (pvpKillAmount > 2000) titleCode ="0xFF0000"; + if (pvpKillAmount > 2000) colorCode = "0xFF0000"; Etc fenete me to na valo 1 parapano Name/Title Credits for Title Color me :PPP Credits for all others to GodKratos from L2j -
Provlima me ta xromata sta names.....
Howl3r replied to zerod's question in Request Server Development Help [Greek]
Diladi...... tora eisai sto java mesa? ama les gia to java dose to Code na to doume kai tote 8a mporoume na se help ;) -
New Membergroup! L2J Developer! (by maxtor)
Howl3r replied to L2JDEV's topic in Server Development Discussion [L2J]
I vote for the Cobra...... ;) -
Sure ? :P Will be add soon skills on pvp amounts. p.x at 500 pvp a new skill will be add.. ;)
-
:P sorry my fault ;) i was writing very fast.. Server Rocks :P
-
Custom Skills at level 92 93 94 95!!!! 1st Skill a ImmobileBuff give 20k pdef 7k mdef 2on Skill a Stun Chance 100% 3td Skill a Slow Chance 100% Time 7 Seconds Multiple HP 0.1 4 Skill a Cancel cancel all Buffs!!! Chance 100%
-
Hello there i was search for it if have here but i dont find anything. Now Lets Start: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ hmmm what town will take? Hunter Village.. now let take the code if you are using l2jfree i thing is on peace.xml but i will share it for l2j on zone.xml <zone id='11030' type='Town' shape='NPoly' minZ='-2800' maxZ='-1600'> <stat name='name' val='Hunter Village'/> <stat name='townId' val='11'/> <stat name='taxById' val='5'/> <stat name='spawnX' val='117163'/> <stat name='spawnY' val='76511'/> <stat name='spawnZ' val='-2712'/> </zone> Now will add this Line <stat name='isPeaceZone' val='false'/> And our Code will look like this <zone id='11030' type='Town' shape='NPoly' minZ='-2800' maxZ='-1600'> <stat name='name' val='Hunter Village'/> <stat name='townId' val='11'/> <stat name='isPeaceZone' val='false'/> <stat name='taxById' val='5'/> <stat name='spawnX' val='117163'/> <stat name='spawnY' val='76511'/> <stat name='spawnZ' val='-2712'/> </zone> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Lets say you how to make a default respawn Town is very Simple Go to your zone.xml and find your town to be Default respawn (When some1 die ex: in Forge of the God will spawn on That town) Lets Take the Giran Town <zone id='11020' type='Town' shape='NPoly' minZ='-3800' maxZ='-3300'> <stat name='name' val='Giran Castle Town'/> <stat name='townId' val='9'/> <stat name='redirectTownId' val='11'/> <stat name='taxById' val='3'/> <stat name='spawnX' val='81236'/> <stat name='spawnY' val='148638'/> <stat name='spawnZ' val='-3469'/> </zone> We take thoose Lines <stat name='spawnX' val='81236'/> <stat name='spawnY' val='148638'/> <stat name='spawnZ' val='-3469'/> and we add it to all other towns ex: <zone id='11031' type='Town' shape='NPoly' minZ='-2700' maxZ='-1900'> <stat name='name' val='Town of Aden'/> <stat name='townId' val='12'/> <stat name='redirectTownId' val='10'/> <stat name='taxById' val='5'/> (( <stat name='spawnX' val='81236'/> <stat name='spawnY' val='148638'/> <stat name='spawnZ' val='-3469'/> )) </zone> Thats is All sorry for my bad english. and Have Fun Credits to me. ;) and to one friend
-
[Help] Buffs Time Config
Howl3r replied to zalecs's question in Request Server Development Help [L2J]
What pack do you use??? if you use l2j i can help you... -
ty guyzZ i will share more custom npc :) But why all spammers here?????
-
------------------------------------------------------------------------------ Hello Every one i just make a tvt buffer for fun ;) Now about Buffer is give 5 buffs for some class ex Fighter and mages You cant get and the 2 Classes Buffs! e.x if you have get buffs for fighter and you do and mage buffs 1st the Fighter Buffs stop effective and in their place add mage buff. i just share here for fun ;))))) ------------------------------------------------------------------------------ Link to Download http://www.4shared.com/file/81223386/22295e95/TvT_Buffer.html ------------------------------------------------------------------------------ some ss: ------------------------------------------------------------------------------ Link Changed
-
[HELP]Agnwsth Entolh "java"
Howl3r replied to Howl3r's question in Request Server Development Help [Greek]
Pff Format?!?!?!?! Den variese den asxouloume allo pia!! Lock the Topic!!! -
[HELP]Agnwsth Entolh "java"
Howl3r replied to Howl3r's question in Request Server Development Help [Greek]
Lew mou leipi to Path den to exw katholou :(
