-
Posts
1,068 -
Joined
-
Last visited
-
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Posts posted by vl4d
-
-
-
kai na to 3erei kaneis na min to pi gt tetia noobs anoigoun fail servers oste na doune pass apo alous...
-
pes mou kati eisia xazos?? ti skata kaneis share oti programma vriskis??
-
ti spam re flore pou eftia3es kai anti-phx ax0axax0ax0ax0ax0ax0ax0ax0ax0
diko sou re kid??
* * *
* * *
Εζεδνεβνϋε ξαηξπϋ ρβεζεγξ ρξτςΰ, οξ ηνΰμενθςξι Online
θγπε Lineage 2 !
* * *
www.La2base.ru - νΰψθ δβεπθ βρεγδΰ ξςκπϋςϋ δλ Βΰρ!
* * *
|"""""""""""""""""| |\
|Υξλξδνξε οθβξ! ||""\__,
|_____________ |||_|__|_ )
*(@)|(@)"""*******(@)"
des ta credits apo to topic tou criticalerror:
Credits to Fyyre & alekssu-la2base
(enas mod na tou pi na valei credits i lock to topic)
-
einai se xml oxi se sql ara psa3e sto data/xml
-
The questions still stands.
down down
Edit: now saw that you made generally for weaps and not just bow.
anyway.
Credits: frozen team and modifided for aCis by me..
-
http://maxcheaters.com/forum/index.php?topic=230862.0The code has been made for l2jfrozen and you just adapted,true?
-
yy oti pis katse na pai3oun 3-4 wres kai meta milame gia 130 online 8a einai 30 :Pfile eixa server etsi test kai bikan se 3 ores 130 atoma alla ton eklisa gt spastiki gt kanoun sinexia spam :)
-
ama einai dead den simenei oti kanw alo share kai lew diko m..(siga min einai kai diko sou ec den 3ereis na kaneis ta vasika kai einai diko sou? )auto einai olo diko mou.. dn to eida apo pou8ena ..
1) Auto To Link Einai Dead !
2) An Den Einai Dead gia des ligo pios to ekane upload! ;) ;)
Egw exw ena 8akelo 9gb me ta share tou mxc kai einai skedon to 3/4 dead link prepei na arxiso na kanw new share kai na lew diko m??
-
eine geodata/pathnode custom item's den exi . kai ti ram prepi na balo
java -server -Xmx2036m -Xms1024m -Xmn512m -XX:PermSize=256m -XX:SurvivorRatio=8 -Xnoclassgc -XX:+AggressiveOpts -XX:+UseSerialGC -cp ./lib/*;
gt se niazh posa atoma 8a exeis?? a8ou den paizei na mazepshs 300 h 500 :P
pare to low gg einai sta 150-200 no lag (dikh mou gnwmh)
-
Update v.2 (added config WeaponType)
Index: config/server.properties =================================================================== --- config/server.properties (revision 0) +++ config/server.properties (working copy) #Player weapons check EnableCheckWeapons = False #Weapons types: # BIGBLUNT = 1 # BIGSWORD = 2 # BLUNT = 3 # BOW = 4 # DAGGER = 5 # DUAL = 6 # DUALFIST = 7 # ETC = 8 # FISHINGROD = 9 # FIST = 10 # NONE = 11 # PET = 12 # POLE = 13 # SWORD = 14 # WeaponType = 11 #Disable weapons for classes: write here classes id #that you dnt want allow to use weapons. Class id examples, #you can find others into char_templates database table # # classId className # 88 Duelist # 89 DreadNought # 90 Phoenix Knight # 91 Hell Knight # 92 Sagittarius # 93 Adventurer # 94 Archmage # 95 Soultaker # 96 Arcana Lord # 97 Cardinal # 98 Hierophant # 99 Eva Templar # 100 Sword Muse # 101 Wind Rider # 102 Moonlight Sentinel # 103 Mystic Muse # 104 Elemental Master # 105 Eva Saint # 106 Shillien Templar # 107 Spectral Dancer # 108 Ghost Hunter # 109 Ghost Sentinel # 110 Storm Screamer # 111 Spectral Master # 112 Shillen Saint # 113 Titan # 114 Grand Khauatari # 115 Dominator # 116 Doomcryer # 117 Fortune Seeker # 118 Maestro # # e.g. DisableCalsses = 90,118 DisableClasses=90 Index: java/net/sf/l2j/Config.java =================================================================== --- java/net/sf/l2j/Config.java (revision 0) +++ java/net/sf/l2j/Config.java (working copy) + public static boolean Enable_Check_Weapons; + public static int Weapon_Type; + public static String Disable_Classes_String; + public static FastList<Integer> Disable_Classes = new FastList<Integer>(); + Enable_Check_Weapons = Boolean.valueOf(players.getProperty("EnableCheckWeapons","False")); + Weapon_Type = Integer.parseInt(players.getProperty("WeaponType","")); + Disable_Classes_String = players.getProperty("DisableClasses", ""); + Disable_Classes = new FastList<Integer>(); + for (String class_id : Disable_Classes_String.split(",")) + { + if(!class_id.equals("")) + Disable_Classes.add(Integer.parseInt(class_id)); + } Index: java/net/sf/l2j/gameserver/network/clientpackets/UseItem.java =================================================================== --- java/net/sf/l2j/gameserver/network/clientpackets/UseItem.java (revision 0) +++ java/net/sf/l2j/gameserver/network/clientpackets/UseItem.java (working copy) +import net.sf.l2j.gameserver.network.serverpackets.ActionFailed; if (activeChar.is-beep-ted()) { activeChar.sendPacket(SystemMessageId.CANNOT_EQUIP_ITEM_DUE_TO_BAD_CONDITION); return; } + L2WeaponType tip = null; + if(Config.Enable_Check_Weapons) + if(item.getItem() instanceof L2Weapon) + { + switch(Config.Weapon_Type) + { + case 1: + tip = L2WeaponType.BIGBLUNT; + break; + case 2: + tip = L2WeaponType.BIGSWORD; + break; + case 3: + tip = L2WeaponType.BLUNT; + break; + case 4: + tip = L2WeaponType.BOW; + break; + case 5: + tip = L2WeaponType.DAGGER; + break; + case 6: + tip = L2WeaponType.DUAL; + break; + case 7: + tip = L2WeaponType.DUALFIST; + break; + case 8: + tip = L2WeaponType.ETC; + break; + case 9: + tip = L2WeaponType.FISHINGROD; + break; + case 10: + tip = L2WeaponType.FIST; + break; + case 11: + tip = L2WeaponType.NONE; + break; + case 12: + tip = L2WeaponType.PET; + break; + case 13: + tip = L2WeaponType.POLE; + break; + case 14: + tip = L2WeaponType.SWORD; + break; + } + if( ((L2Weapon)item.getItem()).getItemType() == tip) + if(Config.Disable_Classes.contains(activeChar.getClassId().getId())) + { + activeChar.sendMessage("This item can not be equipped by your class"); + activeChar.sendPacket(ActionFailed.STATIC_PACKET); + return; + } + } // Don't allow weapon/shield equipment if a cursed weapon is equipped if (activeChar.isCursedWeaponEquipped()) return;
tested :)
Credits for source code:: frozen team and modifided for aCis by vl4d and Feature..
-
gia sena to ekana share http://maxcheaters.com/forum/index.php?topic=230884.msg2055098#msg2055098
egw to ekana se acis ec valto sto brazil den nomizw na exei dia9ora :P
-
ti pack exeis?? pes kai mipos sto kano :)
-
kl kane kai ala copy/paste eleos dld http://maxcheaters.com/forum/index.php?topic=49634.0
to kanis pou to kaneis pes kai credits...
-
ti balance re akire pios sta lei afta oti kaneis balance ton server me java code??
-
einai peripou afta pou lei o AnimeLegend..
-
( ti les more?? lei pou8ena oti me afto to pc tosa atoma sikoni h einai proswpikh empiria ? )ειρωνία είναι αυτό? στον πρώτο πάνω απο 200 και στον δεύτερο πάνω απο 350.
Prota les client, ama einai custom server + geodata/pathnode meta 8a sou poune posa atoma sikoni... etsi sto akiro kaneis den 3erei..
-
ola afta pou 8es ta exei idi to frozen...
gameserver\config\fun\bank.properties
gameserver\config\fun\physics.properties or classDamages.properties
gameserver\config\head\olympiad.properties
# Alt Oly period: MONTH/DAY/WEEK
# es. 2weeks-->AltOlyPeriod=WEEK and AltOlyPeriodMultiplier=2
AltOlyPeriod=MONTH
AltOlyPeriodMultiplier=1
a8ou o frozen einai top 1 stous customs code pos den tous exei more? den 8es na psa3is aplos.....
(twra einai periergo pos den exei to sub class lvl :) )
http://maxcheaters.com/forum/index.php?topic=218468.msg1900305#msg1900305
-
aposa 3erw ola ta pack to exoune afto to code twra ama exei l2jserver c6 den 3erw den to dokimasa pote :P
-
dld mas les oti me afto ot programa 3elagari ton l2? dld ti kani ph me ena para8uro l2 on sou perni 200-300 mg me afto dld 8a pernei 100? emena m 8enete kati api8ano + oti exei ios :P
-
me liga logia otan eisia low hp pas kai varas ena mob me dagger/axe kai sou anevazi hp aftos exei problima, me oti weapon kai na varesi den tou anevazi hp san na varai me bow :)
-
na ena paradigma se multisell
<?xml version='1.0' encoding='utf-8'?>
<list>
<item id="1">
<production id="7575" count="1" enchant="16"/>
<ingredient id="57" count="45000000" />
</item>
</list>
ama exeis pali problima kane etsi to multisell:
<?xml version='1.0' encoding='utf-8'?>
<list maintainEnchantment="true">
<list>
<item id="1">
<production id="7575" count="1" enchant="16"/>
<ingredient id="57" count="45000000" >
</item>
</list>
-
dokimases target pano sto name ?? dld na paris ton eafto sou target?
-
des ti lei more "kapia" items oxi all.........ean thes me java
Java/net/sf/l2j/gameserver/network/clientpackets/multisellchoose.java
- product.setEnchantmentLevel(0);
+ product.setEnchantmentLevel(7);
(7); = + poso na einai ta items


Custom Pvp Zone ( Freya - H5 ) Up-Dated
in Server Shares & Files [L2J]
Posted
change name :) *L2CustomPvP
delete this *