Jump to content

estaz

VIP Member
  • Posts

    88
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by estaz

  1. Hello.

     

      I have implented and configured Hide and Seek automated event ( http://www.maxcheaters.com/forum/index.php?topic=115412.0 ) for Gracia Epilogue, but when i compile my L2_Gameserver, Eclipse drops me this error:

    [javac] C:\workspace\L2_GameServer\java\com\l2jserver\gameserver\model\actor\instance\L2HaSEventManagerInstance.java:121: cannot find symbol
        [javac] symbol  : variable HAS_SHUTNONMENBERS
        [javac] location: class com.l2jserver.Config
        [javac] 			if(Config.HAS_SHUTNONMENBERS) {
        [javac] 			         ^
        [javac] C:\workspace\L2_GameServer\java\com\l2jserver\gameserver\model\entity\HideAndSeekDataParser.java:47: cannot find symbol
        [javac] symbol  : variable HAS_CLUES
        [javac] location: class com.l2jserver.Config
        [javac] 	private String[] _clues = new String[Config.HAS_CLUES];
        [javac] 	                                           ^
        [javac] C:\workspace\L2_GameServer\java\com\l2jserver\gameserver\model\entity\HideAndSeekDataParser.java:83: cannot find symbol
        [javac] symbol  : variable HAS_CLUES
        [javac] location: class com.l2jserver.Config
        [javac] 		byte size = (byte) (7 + Config.HAS_CLUES);
        [javac] 		                              ^
        [javac] C:\workspace\L2_GameServer\java\com\l2jserver\gameserver\model\entity\HideAndSeekDataParser.java:83: operator + cannot be applied to int,com.l2jserver.Config.HAS_CLUES
        [javac] 		byte size = (byte) (7 + Config.HAS_CLUES);
        [javac] 		                    ^
        [javac] C:\workspace\L2_GameServer\java\com\l2jserver\gameserver\model\entity\HideAndSeekDataParser.java:83: inconvertible types
        [javac] found   : <nulltype>
        [javac] required: byte
        [javac] 		byte size = (byte) (7 + Config.HAS_CLUES);
        [javac] 		                   ^
        [javac] C:\workspace\L2_GameServer\java\com\l2jserver\gameserver\model\entity\HideAndSeekDataParser.java:121: cannot find symbol
        [javac] symbol  : variable HAS_SINGLEREWARD
        [javac] location: class com.l2jserver.Config
        [javac] 					else if(child.getNodeName() == "rewardId" && !Config.HAS_SINGLEREWARD)
        [javac] 					                                                    ^
        [javac] C:\workspace\L2_GameServer\java\com\l2jserver\gameserver\model\entity\HideAndSeekDataParser.java:123: cannot find symbol
        [javac] symbol  : variable HAS_SINGLEREWARD
        [javac] location: class com.l2jserver.Config
        [javac] 					else if(child.getNodeName() == "rewardAmount" && !Config.HAS_SINGLEREWARD)
        [javac] 					                                                        ^
        [javac] C:\workspace\L2_GameServer\java\com\l2jserver\gameserver\model\entity\HideAndSeekDataParser.java:132: cannot find symbol
        [javac] symbol  : variable HAS_CLUES
        [javac] location: class com.l2jserver.Config
        [javac] 					if(Config.HAS_CLUES > 3) {
        [javac] 					         ^
        [javac] C:\workspace\L2_GameServer\java\com\l2jserver\gameserver\model\entity\HideAndSeekDataParser.java:133: cannot find symbol
        [javac] symbol  : variable HAS_CLUES
        [javac] location: class com.l2jserver.Config
        [javac] 						for(byte b = 4; b < Config.HAS_CLUES; b++) {
        [javac] 						                          ^
        [javac] C:\workspace\L2_GameServer\java\com\l2jserver\gameserver\model\entity\HideAndSeekDataParser.java:181: cannot find symbol
        [javac] symbol  : variable HAS_GAMETIME
        [javac] location: class com.l2jserver.Config
        [javac] 		long time = Config.HAS_GAMETIME * 60000;
        [javac] 		                  ^
        [javac] C:\workspace\L2_GameServer\java\com\l2jserver\gameserver\model\entity\HideAndSeekDataParser.java:182: cannot find symbol
        [javac] symbol  : variable HAS_CLUES
        [javac] location: class com.l2jserver.Config
        [javac] 		double interval = (double) (time / Config.HAS_CLUES);
        [javac] 		                                         ^
        [javac] C:\workspace\L2_GameServer\java\com\l2jserver\gameserver\model\entity\HideAndSeekDataParser.java:201: cannot find symbol
        [javac] symbol  : variable HAS_CLUES
        [javac] location: class com.l2jserver.Config
        [javac] 			else if(i >= Config.HAS_CLUES)
        [javac] 			                   ^
        [javac] C:\workspace\L2_GameServer\java\com\l2jserver\gameserver\model\entity\HideAndSeek.java:105: cannot find symbol
        [javac] symbol  : variable HAS_NPC
        [javac] location: class com.l2jserver.Config
        [javac] 	L2NpcTemplate npc = NpcTable.getInstance().getTemplate(Config.HAS_NPC);
        [javac] 	                                                             ^
        [javac] C:\workspace\L2_GameServer\java\com\l2jserver\gameserver\model\entity\HideAndSeek.java:110: cannot find symbol
        [javac] symbol  : variable HAS_NPC_COORDS
        [javac] location: class com.l2jserver.Config
        [javac] 		_regSpawn.setLocx(Config.HAS_NPC_COORDS[0]);
        [javac] 		                        ^
        [javac] C:\workspace\L2_GameServer\java\com\l2jserver\gameserver\model\entity\HideAndSeek.java:111: cannot find symbol
        [javac] symbol  : variable HAS_NPC_COORDS
        [javac] location: class com.l2jserver.Config
        [javac] 		_regSpawn.setLocy(Config.HAS_NPC_COORDS[1]);
        [javac] 		                        ^
        [javac] C:\workspace\L2_GameServer\java\com\l2jserver\gameserver\model\entity\HideAndSeek.java:112: cannot find symbol
        [javac] symbol  : variable HAS_NPC_COORDS
        [javac] location: class com.l2jserver.Config
        [javac] 		_regSpawn.setLocz(Config.HAS_NPC_COORDS[2]);
        [javac] 		                        ^
        [javac] C:\workspace\L2_GameServer\java\com\l2jserver\gameserver\model\entity\HideAndSeek.java:161: cannot find symbol
        [javac] symbol  : variable HAS_SINGLEREWARD
        [javac] location: class com.l2jserver.Config
        [javac] 		if(Config.HAS_SINGLEREWARD)
        [javac] 		         ^
        [javac] C:\workspace\L2_GameServer\java\com\l2jserver\gameserver\model\entity\HideAndSeek.java:162: cannot find symbol
        [javac] symbol  : variable HAS_REWARD
        [javac] location: class com.l2jserver.Config
        [javac] 			player.addItem("Hide & Seek event", Config.HAS_REWARD, Config.HAS_REWARD_AMOUNT, player, true);
        [javac] 			                                          ^
        [javac] C:\workspace\L2_GameServer\java\com\l2jserver\gameserver\model\entity\HideAndSeek.java:162: cannot find symbol
        [javac] symbol  : variable HAS_REWARD_AMOUNT
        [javac] location: class com.l2jserver.Config
        [javac] 			player.addItem("Hide & Seek event", Config.HAS_REWARD, Config.HAS_REWARD_AMOUNT, player, true);
        [javac] 			                                                             ^
        [javac] C:\workspace\L2_GameServer\java\com\l2jserver\gameserver\model\entity\HideAndSeek.java:200: cannot find symbol
        [javac] symbol  : variable HAS_REGPERIOD
        [javac] location: class com.l2jserver.Config
        [javac] 	long regPeriod = Config.HAS_REGPERIOD * 60 * 1000;
        [javac] 	                       ^
        [javac] C:\workspace\L2_GameServer\java\com\l2jserver\gameserver\model\entity\HideAndSeek.java:201: cannot find symbol
        [javac] symbol  : variable HAS_GAMETIME
        [javac] location: class com.l2jserver.Config
        [javac] 	long gamePeriod = Config.HAS_GAMETIME * 60 * 1000;
        [javac] 	                        ^
        [javac] C:\workspace\L2_GameServer\java\com\l2jserver\gameserver\model\entity\HideAndSeek.java:214: cannot find symbol
        [javac] symbol  : variable HAS_REGPERIOD
        [javac] location: class com.l2jserver.Config
        [javac] 		if(Config.HAS_REGPERIOD > 10 ){
        [javac] 		         ^
        [javac] C:\workspace\L2_GameServer\java\com\l2jserver\gameserver\model\entity\HideAndSeek.java:259: cannot find symbol
        [javac] symbol  : variable HAS_RANDOM
        [javac] location: class com.l2jserver.Config
        [javac] 				if(Config.HAS_RANDOM) {
        [javac] 				         ^
        [javac] C:\workspace\L2_GameServer\java\com\l2jserver\gameserver\model\entity\HideAndSeek.java:320: cannot find symbol
        [javac] symbol  : variable HAS_REGPERIOD
        [javac] location: class com.l2jserver.Config
        [javac] 		if(Config.HAS_REGPERIOD > 10 ){
        [javac] 		         ^
        [javac] 24 errors
    
    BUILD FAILED
    C:\workspace\L2_GameServer\build.xml:62: Compile failed; see the compiler error output for details.
    
    Total time: 26 seconds

     

    I really need to know how to solve it, becouse its not the first time when i get this error.

    Thank you

     

    estaz

  2. Hello

     

      I have a little problem. I have done Rebirth system from gracia final to gracia epilogue (Main source: http://www.maxcheaters.com/forum/index.php?topic=80516.0 by TheEnd)

    I have implented it by manual mode. Everything is ok. Required player lvl for rebirth is 80, but when player reaches it, nothing happens. I tried to do a npc with L2RebirthManager, but in gameserver console it drops an error, saying that L2RebirthManagerInstance does not exist.

      I did many searches, but with no luck.

    Now i am asking for your help (hooray for MxC :D ). Do i need to create an instance or something (and if needed, how?) or i have to change something in the code?

    Thanks for all your answers :)

     

    estaz.

  3.   Hello.

     

    After creating a server and closing it many times, I decided to become a professional L2J server developer.

    So, I have a questions  for it:

    1. What i have to learn?

    2. Do I have to learn more coding languages than only java? (If yes, what languages?)

    3. Is there a tutorial for java (or something more..) which teaches only how to code Lineage 2?

    4. How much time i have to spend for it?

    5. What is the best way to learn that all?

    6. Is there some type of video tutorial?

    7. How did you learned to develop?

    8. What do you recommend?

     

    Well, I think thats all for now  :)

    Thank you.

     

    P.S

    Sorry for my bad english (I think its very bad  ;D )

     

  4. It drops me this error when i want to register, start login and game servers:

    Crc server: D7C2426C

    java.io.FileNotFoundException: .\config\loginserver.ini (The system cannot find

    the file specified)

            at java.io.FileInputStream.open(Native Method)

            at java.io.FileInputStream.<init>(Unknown Source)

            at l2d.Config.load(Unknown Source)

            at l2d.gsreg.GSReg.main(Unknown Source)

    Exception in thread "main" java.lang.Error: Failed to Load ./config/loginserver.

    ini File.

            at l2d.Config.load(Unknown Source)

            at l2d.gsreg.GSReg.main(Unknown Source)

    Press any key to continue . . .

    anybody can help me with that?

×
×
  • Create New...