Jump to content

Recommended Posts

Posted

It's shit for real dude. There are many better ways to edit classes.

 

 

Your reply made my day. Most of ppl who know how things goes will tell you it's shit code.. Anyway, let's stop on that since you won't get that :)

 

These are probably one of the most toxic replies to someone trying to help I've ever seen.

Posted

"toxic" replies for a reason. Anyway, lets stop here :)

i havent any problem to say anything about this code. for me work and give me this of i need. i share it here for help if someone need this code..if you dont like i dont say you put this code in your pack now..lets stop this and continue :)  and sorry for my english :D

  • 2 weeks later...
Posted

### Eclipse Workspace Patch 1.0

#P L2_GameServer_It

Index: java/net/sf/l2j/gameserver/skills/Formulas.java

===================================================================

--- java/net/sf/l2j/gameserver/skills/Formulas.java (revision 3695)

+++ java/net/sf/l2j/gameserver/skills/Formulas.java (working copy)

@@ -1162,6 +1162,104 @@

{

defence += target.getShldDef();

}

+

+ if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.DAGGER && skill != null)

+ {

+ L2Armor armor = ((L2PcInstance) target).getActiveChestArmorItem();

+ if (armor != null)

+ {

+ if (((L2PcInstance) target).isWearingHeavyArmor())

+ damage /= Config.DAGGER_VS_HEAVY;

+ if (((L2PcInstance) target).isWearingLightArmor())

+ damage /= Config.DAGGER_VS_LIGHT;

+ if (((L2PcInstance) target).isWearingMagicArmor())

+ damage /= Config.DAGGER_VS_ROBE;

+ }

+ }

+

+ if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.BOW && skill != null)

+ {

+ L2Armor armor = ((L2PcInstance) target).getActiveChestArmorItem();

+ if (armor != null)

+ {

+ if (((L2PcInstance) target).isWearingHeavyArmor())

+ damage /= Config.ARCHER_VS_HEAVY;

+ if (((L2PcInstance) target).isWearingLightArmor())

+ damage /= Config.ARCHER_VS_LIGHT;

+ if (((L2PcInstance) target).isWearingMagicArmor())

+ damage /= Config.ARCHER_VS_ROBE;

+ }

+ }

+

+ if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.BLUNT && skill != null)

+ {

+ L2Armor armor = ((L2PcInstance) target).getActiveChestArmorItem();

+ if (armor != null)

+ {

+ if (((L2PcInstance) target).isWearingHeavyArmor())

+ damage /= Config.BLUNT_VS_HEAVY;

+ if (((L2PcInstance) target).isWearingLightArmor())

+ damage /= Config.BLUNT_VS_LIGHT;

+ if (((L2PcInstance) target).isWearingMagicArmor())

+ damage /= Config.BLUNT_VS_ROBE;

+ }

+ }

+

+ if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.DUALFIST && skill != null)

+ {

+ L2Armor armor = ((L2PcInstance) target).getActiveChestArmorItem();

+ if (armor != null)

+ {

+ if (((L2PcInstance) target).isWearingHeavyArmor())

+ damage /= Config.FIST_VS_HEAVY;

+ if (((L2PcInstance) target).isWearingLightArmor())

+ damage /= Config.FIST_VS_LIGHT;

+ if (((L2PcInstance) target).isWearingMagicArmor())

+ damage /= Config.FIST_VS_ROBE;

+ }

+ }

+

+ if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.DUAL && skill != null)

+ {

+ L2Armor armor = ((L2PcInstance) target).getActiveChestArmorItem();

+ if (armor != null)

+ {

+ if (((L2PcInstance) target).isWearingHeavyArmor())

+ damage /= Config.DUAL_VS_HEAVY;

+ if (((L2PcInstance) target).isWearingLightArmor())

+ damage /= Config.DUAL_VS_LIGHT;

+ if (((L2PcInstance) target).isWearingMagicArmor())

+ damage /= Config.DUAL_VS_ROBE;

+ }

+ }

+

+ if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.SWORD && skill != null)

+ {

+ L2Armor armor = ((L2PcInstance) target).getActiveChestArmorItem();

+ if (armor != null)

+ {

+ if (((L2PcInstance) target).isWearingHeavyArmor())

+ damage /= Config.SWORD_VS_HEAVY;

+ if (((L2PcInstance) target).isWearingLightArmor())

+ damage /= Config.SWORD_VS_LIGHT;

+ if (((L2PcInstance) target).isWearingMagicArmor())

+ damage /= Config.SWORD_VS_ROBE;

+ }

+ }

+

+ if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.POLE && skill != null)

+ {

+ L2Armor armor = ((L2PcInstance) target).getActiveChestArmorItem();

+ if (armor != null)

+ {

+ if (((L2PcInstance) target).isWearingHeavyArmor())

+ damage /= Config.POLE_VS_HEAVY;

+ if (((L2PcInstance) target).isWearingLightArmor())

+ damage /= Config.POLE_VS_LIGHT;

+ if (((L2PcInstance) target).isWearingMagicArmor())

+ damage /= Config.POLE_VS_ROBE;

+ }

+ }

//if (!(attacker instanceof L2RaidBossInstance) &&

/*

if ((attacker instanceof L2NpcInstance || attacker instanceof L2SiegeGuardInstance))

Index: java/net/sf/l2j/Config.java

===================================================================

--- java/net/sf/l2j/Config.java (revision 3695)

+++ java/net/sf/l2j/Config.java (working copy)

@@ -881,7 +881,30 @@

public static boolean L2JMOD_WEDDING_SAMESEX;

public static boolean L2JMOD_WEDDING_FORMALWEAR;

public static int L2JMOD_WEDDING_DIVORCE_COSTS;

-

+

+ /** Class Balances */

+ public static float DAGGER_VS_HEAVY;

+ public static float DAGGER_VS_LIGHT;

+ public static float DAGGER_VS_ROBE;

+ public static float ARCHER_VS_HEAVY;

+ public static float ARCHER_VS_LIGHT;

+ public static float ARCHER_VS_ROBE;

+ public static float BLUNT_VS_HEAVY;

+ public static float BLUNT_VS_LIGHT;

+ public static float BLUNT_VS_ROBE;

+ public static float FIST_VS_HEAVY;

+ public static float FIST_VS_LIGHT;

+ public static float FIST_VS_ROBE;

+ public static float DUAL_VS_HEAVY;

+ public static float DUAL_VS_LIGHT;

+ public static float DUAL_VS_ROBE;

+ public static float SWORD_VS_HEAVY;

+ public static float SWORD_VS_LIGHT;

+ public static float SWORD_VS_ROBE;

+ public static float POLE_VS_HEAVY;

+ public static float POLE_VS_LIGHT;

+ public static float POLE_VS_ROBE;

+

// Packet information

/** Count the amount of packets per minute ? */

public static boolean COUNT_PACKETS = false;

@@ -1848,6 +1871,34 @@

TVT_EVENT_RUNNING_TIME = Integer.parseInt(L2JModSettings.getProperty("TvTEventRunningTime", "1800"));

TVT_EVENT_PARTICIPATION_NPC_ID = Integer.parseInt(L2JModSettings.getProperty("TvTEventParticipationNpcId", "0"));

 

 

+ DAGGER_VS_HEAVY = Float.parseFloat(L2JModSettings.getProperty("DaggerVsHeavy", "2.50"));

+ DAGGER_VS_LIGHT = Float.parseFloat(L2JModSettings.getProperty("DaggerVsHeavy", "2.00"));

+ DAGGER_VS_ROBE = Float.parseFloat(L2JModSettings.getProperty("DaggerVsHeavy", "1.80"));

+

+ ARCHER_VS_HEAVY = Float.parseFloat(L2JModSettings.getProperty("ArcherVsHeavy", "2.50"));

+ ARCHER_VS_LIGHT = Float.parseFloat(L2JModSettings.getProperty("ArcherVsHeavy", "2.00"));

+ ARCHER_VS_ROBE = Float.parseFloat(L2JModSettings.getProperty("ArcherVsHeavy", "1.80"));

+

+ BLUNT_VS_HEAVY = Float.parseFloat(L2JModSettings.getProperty("BluntVsHeavy", "2.50"));

+ BLUNT_VS_LIGHT = Float.parseFloat(L2JModSettings.getProperty("BluntVsHeavy", "2.00"));

+ BLUNT_VS_ROBE = Float.parseFloat(L2JModSettings.getProperty("BluntVsHeavy", "1.80"));

+

+ FIST_VS_HEAVY = Float.parseFloat(L2JModSettings.getProperty("FistVsHeavy", "2.50"));

+ FIST_VS_LIGHT = Float.parseFloat(L2JModSettings.getProperty("FistVsHeavy", "2.00"));

+ FIST_VS_ROBE = Float.parseFloat(L2JModSettings.getProperty("FistVsHeavy", "1.80"));

+

+ DUAL_VS_HEAVY = Float.parseFloat(L2JModSettings.getProperty("DualVsHeavy", "2.50"));

+ DUAL_VS_LIGHT = Float.parseFloat(L2JModSettings.getProperty("DualVsHeavy", "2.00"));

+ DUAL_VS_ROBE = Float.parseFloat(L2JModSettings.getProperty("DualVsHeavy", "1.80"));

+

+ SWORD_VS_HEAVY = Float.parseFloat(L2JModSettings.getProperty("SwordVsHeavy", "2.50"));

+ SWORD_VS_LIGHT = Float.parseFloat(L2JModSettings.getProperty("SwordVsHeavy", "2.00"));

+ SWORD_VS_ROBE = Float.parseFloat(L2JModSettings.getProperty("SwordVsHeavy", "1.80"));

+

+ POLE_VS_HEAVY = Float.parseFloat(L2JModSettings.getProperty("PoleVsHeavy", "2.50"));

+ POLE_VS_LIGHT = Float.parseFloat(L2JModSettings.getProperty("PoleVsHeavy", "2.00"));

+ POLE_VS_ROBE = Float.parseFloat(L2JModSettings.getProperty("PoleVsHeavy", "1.80"));

+

/** L2JMOD Wedding system */

L2JMOD_ALLOW_WEDDING = Boolean.valueOf(L2JModSettings.getProperty("AllowWedding", "False"));

L2JMOD_WEDDING_PRICE = Integer.parseInt(L2JModSettings.getProperty("WeddingPrice", "250000000"));

Index: java/config/l2jmods.properties

===================================================================

--- java/config/l2jmods.properties (revision 3695)

+++ java/config/l2jmods.properties (working copy)

@@ -132,3 +132,52 @@

# ex.: 1;2;3;4;5;6

# no ";" at the start or end

TvTEventDoorsCloseOpenOnStartEnd =

+

+#---------------------------------------------

+# Balance Dagger Classes -

+#---------------------------------------------

+DaggerVsHeavy = 2.50

+DaggerVsLight = 2.00

+DaggerVsRobe = 1.80

+

+#---------------------------------------------

+# Balance Archer Classes -

+#---------------------------------------------

+ArcherVsHeavy = 2.50

+ArcherVsLight = 2.00

+ArcherVsRobe = 1.80

+

+#---------------------------------------------

+# Balance Blunt Classes -

+#---------------------------------------------

+BluntVsHeavy = 2.50

+BluntVsLight = 2.00

+BluntVsRobe = 1.80

+

+#---------------------------------------------

+# Balance Dual-Weapon Classes -

+#---------------------------------------------

+DualVsHeavy = 2.50

+DualVsLight = 2.00

+DualVsRobe = 1.80

+

+#---------------------------------------------

+# Balance Fist Classes -

+#---------------------------------------------

+FistVsHeavy = 2.50

+FistVsLight = 2.00

+FistVsRobe = 1.80

+

+#---------------------------------------------

+# Balance Sword Classes -

+#---------------------------------------------

+SwordVsHeavy = 2.50

+SwordVsLight = 2.00

+SwordVsRobe = 1.80

+

+#---------------------------------------------

+# Balance Pole Classes -

+#---------------------------------------------

+PoleVsHeavy = 2.50

+PoleVsLight = 2.00

+PoleVsRobe = 1.80

 

 

  Credits se ena rwsiko site :) epsaxa sta shares na dw an yparxei kapou alla den vrika kati paromoio...an yparxei kati paromoio delete or lock :)

EDIT: to dokimasa se freya client me ena mikro change sta import kai doulevei :)

Kalhspera prospathisa na kanw adapt to code se L2jFrozen kai mou vgazei auto to error 

 

[mkdir] Created dir: C:\workspace\L2jFrozen_GameServer\build\classes
version:
     [echo] L2jFrozen Gameserver Revision: 1004M
compile:
    [javac] Compiling 1489 source files to C:\workspace\L2jFrozen_GameServer\build\classes
    [javac] warning: [options] bootstrap class path not set in conjunction with -source 1.6
    [javac] C:\workspace\L2jFrozen_GameServer\head-src\com\l2jfrozen\gameserver\skills\Formulas.java:1324: error: cannot find symbol
    [javac] if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.DAGGER && skill != null)
    [javac]                                       ^
    [javac]   symbol:   variable weapon
    [javac]   location: class Formulas
    [javac] C:\workspace\L2jFrozen_GameServer\head-src\com\l2jfrozen\gameserver\skills\Formulas.java:1324: error: cannot find symbol
    [javac] if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.DAGGER && skill != null)
    [javac]                                                         ^
    [javac]   symbol:   variable weapon
    [javac]   location: class Formulas
    [javac] C:\workspace\L2jFrozen_GameServer\head-src\com\l2jfrozen\gameserver\skills\Formulas.java:1338: error: cannot find symbol
    [javac] if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.BOW && skill != null)
    [javac]                                       ^
    [javac]   symbol:   variable weapon
    [javac]   location: class Formulas
    [javac] C:\workspace\L2jFrozen_GameServer\head-src\com\l2jfrozen\gameserver\skills\Formulas.java:1338: error: cannot find symbol
    [javac] if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.BOW && skill != null)
    [javac]                                                         ^
    [javac]   symbol:   variable weapon
    [javac]   location: class Formulas
    [javac] C:\workspace\L2jFrozen_GameServer\head-src\com\l2jfrozen\gameserver\skills\Formulas.java:1352: error: cannot find symbol
    [javac] if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.BLUNT && skill != null)
    [javac]                                       ^
    [javac]   symbol:   variable weapon
    [javac]   location: class Formulas
    [javac] C:\workspace\L2jFrozen_GameServer\head-src\com\l2jfrozen\gameserver\skills\Formulas.java:1352: error: cannot find symbol
    [javac] if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.BLUNT && skill != null)
    [javac]                                                         ^
    [javac]   symbol:   variable weapon
    [javac]   location: class Formulas
    [javac] C:\workspace\L2jFrozen_GameServer\head-src\com\l2jfrozen\gameserver\skills\Formulas.java:1366: error: cannot find symbol
    [javac] if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.DUALFIST && skill != null)
    [javac]                                       ^
    [javac]   symbol:   variable weapon
    [javac]   location: class Formulas
    [javac] C:\workspace\L2jFrozen_GameServer\head-src\com\l2jfrozen\gameserver\skills\Formulas.java:1366: error: cannot find symbol
    [javac] if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.DUALFIST && skill != null)
    [javac]                                                         ^
    [javac]   symbol:   variable weapon
    [javac]   location: class Formulas
    [javac] C:\workspace\L2jFrozen_GameServer\head-src\com\l2jfrozen\gameserver\skills\Formulas.java:1380: error: cannot find symbol
    [javac] if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.DUAL && skill != null)
    [javac]                                       ^
    [javac]   symbol:   variable weapon
    [javac]   location: class Formulas
    [javac] C:\workspace\L2jFrozen_GameServer\head-src\com\l2jfrozen\gameserver\skills\Formulas.java:1380: error: cannot find symbol
    [javac] if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.DUAL && skill != null)
    [javac]                                                         ^
    [javac]   symbol:   variable weapon
    [javac]   location: class Formulas
    [javac] C:\workspace\L2jFrozen_GameServer\head-src\com\l2jfrozen\gameserver\skills\Formulas.java:1394: error: cannot find symbol
    [javac] if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.SWORD && skill != null)
    [javac]                                       ^
    [javac]   symbol:   variable weapon
    [javac]   location: class Formulas
    [javac] C:\workspace\L2jFrozen_GameServer\head-src\com\l2jfrozen\gameserver\skills\Formulas.java:1394: error: cannot find symbol
    [javac] if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.SWORD && skill != null)
    [javac]                                                         ^
    [javac]   symbol:   variable weapon
    [javac]   location: class Formulas
    [javac] C:\workspace\L2jFrozen_GameServer\head-src\com\l2jfrozen\gameserver\skills\Formulas.java:1408: error: cannot find symbol
    [javac] if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.POLE && skill != null)
    [javac]                                       ^
    [javac]   symbol:   variable weapon
    [javac]   location: class Formulas
    [javac] C:\workspace\L2jFrozen_GameServer\head-src\com\l2jfrozen\gameserver\skills\Formulas.java:1408: error: cannot find symbol
    [javac] if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.POLE && skill != null)
    [javac]                                                         ^
    [javac]   symbol:   variable weapon
    [javac]   location: class Formulas
    [javac] 14 errors
    [javac] 1 warning
 
BUILD FAILED
C:\workspace\L2jFrozen_GameServer\build.xml:65: Compile failed; see the compiler error output for details.
 
Total time: 14 seconds
 

 

Kserei kaneis pws bwro na to fix?

Posted (edited)

 

Kalhspera prospathisa na kanw adapt to code se L2jFrozen kai mou vgazei auto to error 

 

[mkdir] Created dir: C:\workspace\L2jFrozen_GameServer\build\classes
version:
     [echo] L2jFrozen Gameserver Revision: 1004M
compile:
    [javac] Compiling 1489 source files to C:\workspace\L2jFrozen_GameServer\build\classes
    [javac] warning: [options] bootstrap class path not set in conjunction with -source 1.6
    [javac] C:\workspace\L2jFrozen_GameServer\head-src\com\l2jfrozen\gameserver\skills\Formulas.java:1324: error: cannot find symbol
    [javac] if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.DAGGER && skill != null)
    [javac]                                       ^
    [javac]   symbol:   variable weapon
    [javac]   location: class Formulas
    [javac] C:\workspace\L2jFrozen_GameServer\head-src\com\l2jfrozen\gameserver\skills\Formulas.java:1324: error: cannot find symbol
    [javac] if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.DAGGER && skill != null)
    [javac]                                                         ^
    [javac]   symbol:   variable weapon
    [javac]   location: class Formulas
    [javac] C:\workspace\L2jFrozen_GameServer\head-src\com\l2jfrozen\gameserver\skills\Formulas.java:1338: error: cannot find symbol
    [javac] if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.BOW && skill != null)
    [javac]                                       ^
    [javac]   symbol:   variable weapon
    [javac]   location: class Formulas
    [javac] C:\workspace\L2jFrozen_GameServer\head-src\com\l2jfrozen\gameserver\skills\Formulas.java:1338: error: cannot find symbol
    [javac] if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.BOW && skill != null)
    [javac]                                                         ^
    [javac]   symbol:   variable weapon
    [javac]   location: class Formulas
    [javac] C:\workspace\L2jFrozen_GameServer\head-src\com\l2jfrozen\gameserver\skills\Formulas.java:1352: error: cannot find symbol
    [javac] if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.BLUNT && skill != null)
    [javac]                                       ^
    [javac]   symbol:   variable weapon
    [javac]   location: class Formulas
    [javac] C:\workspace\L2jFrozen_GameServer\head-src\com\l2jfrozen\gameserver\skills\Formulas.java:1352: error: cannot find symbol
    [javac] if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.BLUNT && skill != null)
    [javac]                                                         ^
    [javac]   symbol:   variable weapon
    [javac]   location: class Formulas
    [javac] C:\workspace\L2jFrozen_GameServer\head-src\com\l2jfrozen\gameserver\skills\Formulas.java:1366: error: cannot find symbol
    [javac] if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.DUALFIST && skill != null)
    [javac]                                       ^
    [javac]   symbol:   variable weapon
    [javac]   location: class Formulas
    [javac] C:\workspace\L2jFrozen_GameServer\head-src\com\l2jfrozen\gameserver\skills\Formulas.java:1366: error: cannot find symbol
    [javac] if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.DUALFIST && skill != null)
    [javac]                                                         ^
    [javac]   symbol:   variable weapon
    [javac]   location: class Formulas
    [javac] C:\workspace\L2jFrozen_GameServer\head-src\com\l2jfrozen\gameserver\skills\Formulas.java:1380: error: cannot find symbol
    [javac] if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.DUAL && skill != null)
    [javac]                                       ^
    [javac]   symbol:   variable weapon
    [javac]   location: class Formulas
    [javac] C:\workspace\L2jFrozen_GameServer\head-src\com\l2jfrozen\gameserver\skills\Formulas.java:1380: error: cannot find symbol
    [javac] if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.DUAL && skill != null)
    [javac]                                                         ^
    [javac]   symbol:   variable weapon
    [javac]   location: class Formulas
    [javac] C:\workspace\L2jFrozen_GameServer\head-src\com\l2jfrozen\gameserver\skills\Formulas.java:1394: error: cannot find symbol
    [javac] if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.SWORD && skill != null)
    [javac]                                       ^
    [javac]   symbol:   variable weapon
    [javac]   location: class Formulas
    [javac] C:\workspace\L2jFrozen_GameServer\head-src\com\l2jfrozen\gameserver\skills\Formulas.java:1394: error: cannot find symbol
    [javac] if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.SWORD && skill != null)
    [javac]                                                         ^
    [javac]   symbol:   variable weapon
    [javac]   location: class Formulas
    [javac] C:\workspace\L2jFrozen_GameServer\head-src\com\l2jfrozen\gameserver\skills\Formulas.java:1408: error: cannot find symbol
    [javac] if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.POLE && skill != null)
    [javac]                                       ^
    [javac]   symbol:   variable weapon
    [javac]   location: class Formulas
    [javac] C:\workspace\L2jFrozen_GameServer\head-src\com\l2jfrozen\gameserver\skills\Formulas.java:1408: error: cannot find symbol
    [javac] if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.POLE && skill != null)
    [javac]                                                         ^
    [javac]   symbol:   variable weapon
    [javac]   location: class Formulas
    [javac] 14 errors
    [javac] 1 warning
 
BUILD FAILED
C:\workspace\L2jFrozen_GameServer\build.xml:65: Compile failed; see the compiler error output for details.
 
Total time: 14 seconds
 

 

Kserei kaneis pws bwro na to fix?

 

ap oti katalava epeidi den xerw pws einai sto frozen den anagnwrizei ton tropo pou tsekarei ti weapon foraei o paixtis...dokimase kapoion allon tropo. ta imports ta exeis valei ola swsta?

Edited by nikosdevil20
Posted

ap oti katalava epeidi den xerw pws einai sto frozen den anagnwrizei ton tropo pou tsekarei ti weapon foraei o paixtis...dokimase kapoion allon tropo. ta imports ta exeis valei ola swsta?

nai ta imports apo oti vlepw kai pisteuw einai koble.. prospathisa na vrw allon tropo alla den ginotane borei na min mou petage errors opws otan ta alalza apo ta configs ta stats den allaze tpt mesa sto game!

Posted

nai ta imports apo oti vlepw kai pisteuw einai koble.. prospathisa na vrw allon tropo alla den ginotane borei na min mou petage errors opws otan ta alalza apo ta configs ta stats den allaze tpt mesa sto game!

afou les oti eixes error sto compile logiko einai na min doulevoun sto game. ftiaxe ta error sou sto eclispse kane compile kai meta tha doulepsei

Posted

afou les oti eixes error sto compile logiko einai na min doulevoun sto game. ftiaxe ta error sou sto eclispse kane compile kai meta tha doulepsei

nai aderfe auto sou lew kai egw oti den kserw pws na to ftiaksw auto to error sto compile kai gia auto ekana kai comment bas kai gnwrizei kapios kai mou pei ti bwro na kanw :)

Posted

nai aderfe auto sou lew kai egw oti den kserw pws na to ftiaksw auto to error sto compile kai gia auto ekana kai comment bas kai gnwrizei kapios kai mou pei ti bwro na kanw :)

sou eipa prepei na allaxeis tn tropo pou tsekarei to weapon alla den xerw pws einai sto frozen..

Posted

The title is confusing, this kind of "balance" has been available since ages and have been shared a million times even tho its inside many packs. If you want to share something truly balance related than go for skill related changes(powers,enchant routes,chances,debuff timers) or change the base stats(best result is doing both). Balance cannot be done and never will be done with simply core modifications. :)

Posted

The title is confusing, this kind of "balance" has been available since ages and have been shared a million times even tho its inside many packs. If you want to share something truly balance related than go for skill related changes(powers,enchant routes,chances,debuff timers) or change the base stats(best result is doing both). Balance cannot be done and never will be done with simply core modifications. :)

i never say with with this code you make all the server full balance... from here you can give or take some dmg from player to other player. you cannot change skills from here..the server balance cant fixed only with this code. all know that (sorry for my english)

Posted

i never say with with this code you make all the server full balance... from here you can give or take some dmg from player to other player. you cannot change skills from here..the server balance cant fixed only with this code. all know that (sorry for my english)

My point was this modification in general have nothing to do with balance, thats mostly a tool for the most unskilled server owners to nerf mages and dagger classes. :)

Posted

My point was this modification in general have nothing to do with balance, thats mostly a tool for the most unskilled server owners to nerf mages and dagger classes. :)

 

items*

Posted (edited)

My point was this modification in general have nothing to do with balance, thats mostly a tool for the most unskilled server owners to nerf mages and dagger classes. :)

l2j reunion team is unskilled team? cuz and this project have this code. and alot of custom projects work with this code. and i say again this code ISNT for fix skills or what ever is only for fix some damages. and daggers classes you never balance with this code. dagger classes and mages classes must nerf only from skills

Edited by nikosdevil20
Posted

l2j reunion team is unskilled team?

 

the only l2j proffessional teams are l2scripts and l2jserver dude 

 

idk on what world you newbies are living but thats the only true

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



  • Posts

    • General Trackers :   IPTorrents invite IPTorrents account 1 tb TorrentLeech invite Torrentleech account 1 tb buffer  InTheShaDow ( ITS ) account Acid-lounge invite Torrentday invite Crnaberza account Abn.Lol account Limit-of-eden account Norbits account Xspeeds account Xspeeds invite Bemaniso invite Wigornot account Bithumen invite Filelist account Funfile invite AvistaZ invite Potuk.net invite ResurrectThe.Net invite GrabThe.Info invite Greek-Team invite LinkoManija invite Fano.in account tracker.czech-server.com Speed.cd invite Arab-torrents.net account Arabscene.me account Scenetime account 4thd.xyz invite Btarg.com.ar account Dedbit invite Estone.cc account Speedapp invite Finvip invite Fluxzone account GigaTorrents account Gimmepeers account Haidan.video invite Mojblink account Mycarpathians invite Newinsane.info account Oscarworld.xyz account Peers.FM invite Pt.msg.vg account Ransackedcrew account Redemption invite Scene-rush account Seedfile.io invite Teracod invite Torrent.ai account Torrentmasters invite Ttsweb invite X-files invite X-ite invite Ncore account TorrentHR account Rptorrents account BwTorrents account Superbits invite Krazyzone account Immortalseed account Tntracker invite Pt.eastgame.org account Bitturk account Rstorrent account Tracker.btnext invite Torrent-turk.de account BeiTai.PT account Pt.keepfrds account 52pt.site account Pthome account Torrentseeds account Aystorrent account Blues-brothers.biz invite Divteam account Thesceneplace invite CinemaMovies.pl account Brasiltracker account Patiodebutacas account Newheaven.nl account  Swarmazon.club invite Bc-reloaded account Crazyspirits account Silentground invite Omg.wtftrackr invite Milkie.cc invite Breathetheword invite Madsrevolution account Chilebt account Yubraca account Uniongang.tv account Frboard account Exvagos account Diablotorrent account Microbit account Carp-hunter.hu account Majomparade.eu account Theshinning.me account Youiv.info account Dragonworld-reloaded account Sharewood.tv account Partis.si account Digitalcore.club invite Fuzer.me account R3vuk.wtf invite Ztracker account 1 tb buffer 3changtrai account Best-core.info account Bitsite.us account Eliteunitedcrew invite Exitorrent.org account Tophos invite Torrent.lt account Sktorrent.eu account Oshen account Blackhattorrent account Pirata.digital account Esharenet account Ohmenarikgi.la Pirate-share account Immortuos account Kiesbits account Cliente.amigos-share.club account Broadcity invite Ilovetorzz account Torrentbytes account Polishsource account Portugas invite Shareisland account ArabaFenice account Hudbt.hust.edu.cn account Audiences account Nanyangpt account Pt.sjtu.edu.cn account Pt.zhixing.bjtu.edu.cn account Byr.pt invite Ptfiles invite Red-bits account Pt.hdpost.top account Irrenhaus.dyndns.dk (NewPropaganda) account Mnvv2.info (MaxNewVision V2) account 1ptba.com account Spidertk.top account Film-paleis account Generation-free account Aftershock-tracker account Twilightsdreams account Back-ups.me invite Sor-next.tk ( Spirit Of Revolution ) account Tfa.tf ( The Falling Angels ) account Hdmayi account S-f-p.dyndns.dk ( Share Friends Projekt ) account Unlimitz.biz account Pttime account St-tracker.eu account New-retro.eu account Zbbit account Tigers-dl.net account Jptvts.us account Lat-team account Club.hares.top account Falkonvision-team account Concen account Drugari account T.ceskeforum account Peeratiko.org account Zamunda.se account Central-torrent.eu account h-o-d.org account Torrentleech.pl account Demonoid invite Lst.gg account Fakedoor.store account LaidBackManor account Vrbsharezone.co.uk invite Torrenteros account Arenaelite account Datascene account Tracker.0day.community Tapochek.net invite Ptchina invite Lesaloon account Exyusubs account Therebels.tv account Ubits.club invite Zmpt.cc account Turktorrent.us account Dasunerwarte account Hawke.uno account Monikadesign account Fearnopeer account Alpharatio account Wukongwendao.top account Chinapyg account Azusa.wiki account Yggtorrent.top account Torrentdd account Cyanbug.net invite Hhanclub.top account Wintersakura.net account Xthor account Tctg.pm account Finelite invite Agsvpt.com account Pt.0ff.cc invite Qingwapt.com account Xingtan.one account Ptcafe.club invite W-o-t.pro account Coastal-crew.bounceme.net account Darkpeers.org account Pianyuan.org account Seedpool.org  account Tempelbox account Pt.itzmx.com account Itatorrents.xyz  account Letseed.org account The-new-fun.com  account Malayabits.cc account Trellas.me account Yu-scene.net account Futuretorrent.org account Bitpt.cn account Tocashare.biz  account Videoteka.org  account White-angel.hu account Xbytesv2.li account Torr9  account Desitorrents account   Movies Trackers :   Secret-cinema account Anthelion account Pixelhd account Cinemageddon account Cinemageddon account Cinemaz account Retroflix account Classix-unlimited - invite Movie-Torrentz (m2g.link) invite Punck-tracker.net account Tmghub account Cathode-ray.tube account Greatposterwall account Arabicsource.net account Upload.cx account Crabpt.vip invite Onlyencodes.cc account Exyusubs account Hellashut.net invite Nordichd.sytes.net invite Locadora.cc account BJ-Share.info account   HD Trackers :   Blutopia buffered account Hd-olimpo buffered account Hdf.world account Torrentland.li account HdSky account Hdchina account Chdbits account Totheglory account Hdroute account Hdhome account TorrentCCF aka et8.org account 3DTorrents invite HD-Torrents account Bit-HDTV account HDME.eu invite Hdarea.co account Asiancinema.me account JoyHD invite HDSpace invite CrazyHD invite Bluebird-hd invite Htpt.cc account Hdtime invite Ourbits.club account Hd4fans account Siambit account Privatehd account Springsunday account Tjupt account Hdcity.leniter invite Ccfbits account Discfan account Pt.btschool.club account Ptsbao.club invite Hdzone.me invite Danishbytes account Zonaq.pw account Tracker.tekno3d account Arabp2p account Hd-united account Reelflix.xyz account Hdatmos.club account Anasch.cc invite Tigris-t account Nethd.org account Hd.ai invite Hitpt.com account Hdmonkey account Dragonhd.xyz account Hdclub.eu account Forum.bluraycd.com account Carpt account Hdfun.me invite Pt.hdupt invite Puntotorrent account Ultrahd account Rousi.zip account Bearbit account Hdturk.club account Asiandvdclub account Star-space.net account Nordicq.org account Hdkyl.in account Utp.to account Hdzero account   Music Trackers :   Dicmusic account Music-Vid account Open.cd account LzTr account ProAudioTorrents invite Jpopsuki invite TranceTraffic invite Audionews invite Kraytracker invite Libble.me invite Losslessclub invite Indietorrents.com invite Dimeadozen account Funkytorrents invite Karaokedl account zombtracker.the-zomb account Concertos account Sugoimusic account Satclubbing.club invite Metal.iplay invite Psyreactor invite Panda.cd account Adamsfile account Freehardmusic account Tracker.hqmusic.vn accouunt Twilightzoom account 3 tb buffer Hiresmusic account Metalguru account Musictorrents.org account Musebootlegs.com invite Zappateers.com account Jungleland.dnsalias.com account Naftamusic account   E-Learning Trackers :   Theplace account Thevault account Myanonamouse account Libranet account 420Project account Learnflakes account Pt.soulvoice.club account P2pelite account Aaaaarg.fail invite Ebooks-shares.org account Abtorrents account Pt.tu88.men invite Docspedia.world invite   TV-Trackers :   Skipthecommericals Cryptichaven account TV-Vault invite Shazbat.TV account Myspleen account Tasmanit.es invite Tvstore.me account Tvchaosuk account Jptv.club account   XXX - Porn Trackers :   FemdomCult account Pussytorrents account Adult-cinema-network account Bootytape account 1 Tb buffer Exoticaz account Bitporn account Kufirc account Gaytorrent.ru invite Nicept account Gay-torrents.org invite Ourgtn account Pt.hdbd.us account BitSexy account Happyfappy.org account Kamept.com account Lesbians4u.org account   Gaming Trackers :   Mteam.fr account BitGamer invite Retrowithin invite Gamegamept account   Cartoon/Anime/Comic Trackers :   Animeworld account Oldtoons.world account U2.dmhy account CartoonChaos invite Animetorrents account Mononoke account Totallykids.tv account Bakabt.me invite Revanime account Ansktracker account Tracker.shakaw.com.br invite Bt.mdan.org account Skyey2.com account Animetracker.cc Adbt.it.cx invite Tracker.uniotaku.com account Mousebits.com account   Sports Trackers :   MMA-Tracker invite T3nnis.tv invite AcrossTheTasman account RacingForMe invite Sportscult invite Ultimatewrestlingtorrents account Worldboxingvideoarchive invite CyclingTorrents account Xtremewrestlingtorrents account Tc-boxing invite Mma-torrents account Aussierul invite Xwt-classics account Racing4everyone account Talk.tenyardtracker account Stalker.societyglitch invite Extremebits invite Rgfootball.net account F1carreras.xyz account Software/Apps Trackers : Brokenstones account Appzuniverse invite Teamos.xyz account Macbb.org account   Graphics Trackers:   Forum.Cgpersia account   Others   Fora.snahp.eu account Board4all.biz account Makingoff.org/forum account Xrel.to account Undergunz.su account Corebay account Endoftheinter.net ( EOTI ) account Thismight.be invite Skull.facefromouter.space account Avxhm.se (AvaxHome) account Ssdforum account Notfake.vip account Intotheinter.net account Tildes.net invite Thetoonz account Usinavirtual account Hdclasico invite HispaShare account Valentine.wtf account Adit-hd account Forum-andr.net account Warezforums account Justanothermusic.site account Forbiddenlibrary.moe account Senturion.to account Movieparadise account Dcdnet.ru account Sftdevils.net account Heavy-r.com account New-team.org account Ddl.tv account Filewarez.club account Hispamula.org account Hubwarez.tv account Ultim-zone.in account   NZB :   Ninjacentral.co.za account Tabula-rasa.pw account Drunkenslug account Drunkenslug invite Usenet-4all account Dognzb.cr invite Kleverig account Nzb.cat account Nzbplanet.net invite Ng4you.com account NZB.to account Samuraiplace account Abhdtv.net account Abook.link account Comix.pw account House-of-usenet Secretbinaries.net account Vnext.to account Stockboxx.top account Sky-of-use.net account   Prices start from 3 $ to 100 $   Payment methods: Crypto, Neteller, Webmoney, Revolut   If you want to buy something send me a pm or contact me on:   Email: morrison2102@gmail.com   Discord: LFC4LIFE#4173   Telegram: https://t.me/LFC4LIFE4173   Skype: morrison2102@hotmail.com
    • Classic interlude files = Heavily modified classic Saviors/Zaken , adjusted to interlude features. to make your already interlude files compatible with the any other client you need to modify all network packets in your core or you can achieve the "classic" feeling by adding an interface to your client. Example or You can buy ready classic interlude files from the likes of lucera2 and adapt your mods there.
    • New account, few posts, came out of nowhere with "big" developer knowledge and selling "something special" use your main account, is clearly you are on this forum since 2012 minimum, we are not stupid, we are already old enough, everybody in this forum is 32+ y old...
    • Hello guys i was wondering , how all new servers are having interlude files with classic client developed how they want i mean l2reborn , l2 ovc ,l2 dex , l2 flauron etc has interlude files with classic client  where they found this client or where to buy who is making those clients i have interlude files already developed i need to addapt classic client to interlude files  but with not all theses extra skills items etc   
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..