Jump to content

Zohan

Members
  • Posts

    342
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by Zohan

  1. Παιδία έχω έναν server Gracia Final και ένω ανοίγει κανονικά δεν μπορώ να μπω γιατί το κάνει αυτό?Εν το μεταξύ έκανα το update ένος άλλου server και από τότε δεν μπορώ να μπω αν ξέρει κάποιος να με βοηθήσει.

     

    1) system (alla3e to)

    2) l2.ini (checkare ip sto ServerAdd)

    3) windows firewall (kleisto..merikes fores paizei rolo..oxi panta)

    4) to lineage2 client sou. (dn katalaba ti ennoeis me to update..an ekanes update to client omws...gia auto)

    5) dwse kai alla infos se parakaw..mexri pou mpainei? pou kolaei? kapio error sto gameserveR?

     

    euxaristw.

  2. Σωστος ο Zohan και αν το εχεις true και δεν στα δίχει ολλα τα skills, βρες απο καπου τα skills για το pack σου και ξαναπέρασετα όλα στο gameserver/data/xml/skills.

    den paizei rolo auto..an exei tetoio la8os logika 8a exei kai error sto gameserver...pou an exei 8a eprepe na mas to pei apo tin arxh.
  3. ax ta exw psaxei ola k den mporw na to brw to suggekrimeno :P pira mia anasa twra :) nai file m tha perimenw perisoteres plirofories sou otan guriseis :) edw tha eimai

    gameserver/config/protected/other.properties:

     

    # Allow players to run multiple windows with a single IP address.
    # In the game you can use the command // find_dualbox
    AllowDualBox = True
    AllowedBoxes = 99
    AllowDualBoxInOly = False
    AllowDualBoxInEvent = False

  4. kalhspera, exw anixei online to pack l2j frozen (interlude) ta atoma mpenoun kanonika, alla apo to net pou douleuw epidi den exoun mistomeni mporoun na mpoune mexri 3 pc(exoun tin idia ip), to 4o to petaei apo to game otan pataei start, kapou an thimame kala eixe mia epilogi pou se afine mexri 3 client, mporite na mou pite an ontos uparxei tetoia epilogi k pou tin briskw?

    swsta file mou. iparxei sta config sou alla mporeis kai apo to l2.ini sto system sou.

    den eimai spiti gia na sou pw akribws...ama dn to exeis brei mexri na paw...8a sou apanthso tote pio sigkekrimena

  5. ευχαριστώ για τις συμβουλες...γενικα θα ηθελα να ξερω αν σε αυτο το Rev Που εχω..ποιανουν πολλα bugs?

    aneta mporeis na sikwseis me auto to rev tosa atoma...prosopika dn exw psa3ei ti paizei apo 8ema bugs sto l2jfrozen kai se kanena gt exw stamathsei na asxoloumai me projects. den mporo na sou dwsw kapia gnwmh panw se auto.

    apo tin mia exw dei polla servers me l2jfrozen kai xwris bugs. twra an ta fixarane autoi i oxi.....dn exw idea..

    pantws to mono pou 3erw ine oti to frozen xreiazete kalo balance kai auto 8a ginei apo sena kai to team sou.

  6. exw provrima me buffer deite :

    Traceback (innermost last):

      File "__init__.py", line 692, in ?

    TypeError: com.l2jhellas.gameserver.model.quest.State(): expected 0 args; got 2

    logika katebases mia buffer stin opia dn ipostirizotan se l2jhellas.

    8a dokimases na alla3es ta script (import) kai dn 8a ta ekanes ola opws prepi. koita3e sta import kai psa3e na deis pio ine to swsto gia to

     

    quest.State

  7. ### Eclipse Workspace Patch 1.0
    #P L2jFrozen_GameServer
    Index: head-src/com/l2jfrozen/gameserver/GameServer.java
    ===================================================================
    --- head-src/com/l2jfrozen/gameserver/GameServer.java	(revision 986)
    +++ head-src/com/l2jfrozen/gameserver/GameServer.java	(working copy)
    @@ -116,6 +116,7 @@
    import com.l2jfrozen.gameserver.model.L2World;
    import com.l2jfrozen.gameserver.model.PartyMatchRoomList;
    import com.l2jfrozen.gameserver.model.PartyMatchWaitingList;
    +import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance;
    import com.l2jfrozen.gameserver.model.entity.Announcements;
    import com.l2jfrozen.gameserver.model.entity.Hero;
    import com.l2jfrozen.gameserver.model.entity.MonsterRace;
    @@ -244,6 +245,41 @@
    		ExperienceData.getInstance();
    		DuelManager.getInstance();
    
    +		ThreadPoolManager.getInstance().scheduleGeneralAtFixedRate(new Runnable() {
    +
    +			@Override
    +			public void run()
    +			{
    +				
    +				for (L2PcInstance player:L2World.getInstance().getAllPlayers()) {
    +					
    +					if (player.isDonator()) {
    +						
    +						if (player.whichColor == 1) {
    +							player.getAppearance().setNameColor(Integer.decode("0xFF0000"));
    +							player.whichColor++;
    +							break;
    +						}else if (player.whichColor == 2) {
    +							player.getAppearance().setNameColor(Integer.decode("0x0000FF"));
    +							player.whichColor++;
    +							break;
    +						}else if (player.whichColor == 3) {
    +							player.getAppearance().setNameColor(Integer.decode("0x00FF00"));
    +							player.whichColor = 1;
    +							break;
    +						}
    +						
    +					}
    +					
    +				}
    +				
    +				
    +			}
    +			
    +			
    +			
    +		}, 10000, 1000);
    +		
    		if (Config.ENABLE_CLASS_DAMAGES)
    			ClassDamageManager.loadConfig();
    
    Index: head-src/com/l2jfrozen/gameserver/model/actor/instance/L2PcInstance.java
    ===================================================================
    --- head-src/com/l2jfrozen/gameserver/model/actor/instance/L2PcInstance.java	(revision 986)
    +++ head-src/com/l2jfrozen/gameserver/model/actor/instance/L2PcInstance.java	(working copy)
    @@ -294,6 +294,8 @@
    	/** The _last teleport action. */
    	private long _lastTeleportAction = 0;
    
    +	public int whichColor = 1;
    +	
    	/**
    	 * Gets the actual status.
    	 *
    

    i found this... can someone tell me if is this?

    it have many problems.

    1) it dont change color every X seconds/minutes. It stay at one.

    2) if admin give you donator status, someone need to use a buff to you....else your color name will not change.

    3) if you want your color to change at next one...some1 need to buff you again.

    4) we got 2 chars. Char1 and Char2. Char1 is donator. Char1 have blue name on his screen but if you change screen on Char2 you will see the name green.

  8. ma exw ftiaksei kanonika deutero db me allo onoma to exw treksei kanonika to exei diavasei to navicat episis exw balei kai sto login server na dexete alla gameserver ala otan teliosi me to diavasma to 2o console mou lei afto ginete pio sigkekrimenoi exw spasei to kefali mou kai den mporw na to brw... Reason: Address already in use: bind dld thelei na mou pei oti trexw to idio console? pou den tha isxh kath tetio gt to dokimasa kai me allo project "l2jhellas"  ti mporei na einai den mporw na ktlvw

    den mporeis na trexeis 2 fores to 7777 kai to 2106 apla kai oraia.

    alla3e kai anoi3e alla ports 7778 2107

  9. from com.l2jfrozen.gameserver.model.actor.instance import L2PcInstance
    from java.util import Iterator
    from com.l2jfrozen.gameserver.datatables import SkillTable
    from com.l2jfrozen.util.database import L2DatabaseFactory
    from com.l2jfrozen.gameserver.model.quest import State
    from com.l2jfrozen.gameserver.model.quest import QuestState
    from com.l2jfrozen.gameserver.model.quest.jython import QuestJython as JQuest

     

    eise etoimos file

×
×
  • Create New...