Jump to content

Trance

Global Moderator
  • Posts

    3,917
  • Joined

  • Last visited

  • Days Won

    67
  • Feedback

    0%

Posts posted by Trance

  1. Interesting. I think yes it could be done something like this:

    ### Eclipse Workspace Patch 1.0
    #P aCis_gameserver
    Index: java/net/sf/l2j/gameserver/model/actor/status/PcStatus.java
    ===================================================================
    --- java/net/sf/l2j/gameserver/model/actor/status/PcStatus.java	(revision 1)
    +++ java/net/sf/l2j/gameserver/model/actor/status/PcStatus.java	(working copy)
    @@ -151,7 +151,18 @@
     				SystemMessage smsg;
     				// Send a System Message to the L2PcInstance
     				smsg = SystemMessage.getSystemMessage(SystemMessageId.S1_GAVE_YOU_S2_DMG);
    -				smsg.addCharName(attacker);
    +				if(attacker instanceof L2PcInstance)
    +				{
    +					L2PcInstance atcker = (L2PcInstance) attacker;
    +					if(atcker.isInOlympiadMode())
    +						smsg.addString("Chalenger");
    +					else
    +						smsg.addPcName(atcker);
    +				}
    +				else
    +				{
    +					smsg.addCharName(attacker);
    +				}
     				smsg.addNumber(fullValue);
     				getActiveChar().sendPacket(smsg);
     				
    
    

    But I think it's not all , these systemmessages are available in more than this class. That's only the way. So to be "pro" , this part needs to be added of course :P

     

    You should do that with PetStatus & L2Skill as well.

  2. Be smart about this. You are NOT going to get any other protection for l2j freya other than lameguard. And you should buy it from the official lameguard website not from someone from this forum. Because you need both client side patched with ip bound system as well as core code for it.

     

    Good point. Hope so they've fixed the compatibility issues. ;D

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock