Jump to content

Recommended Posts

Posted (edited)

alextoti13
also if u can to make a code that lets players to trd augmentable items.

 

 

  Reveal hidden contents

 

 


alextoti13
if u can make 1 code that  shows the user the enchant chance for l2jfrozen
 

 

  Reveal hidden contents

 

 


 

kaiserxd

Hello, could make a mod to limit the territory wards? type, something that we can put to Aden Castle pick up the max 3 wards of another castle, and so on ... is very unbalance with 9 wards in a castle ...

 

 

  Reveal hidden contents

 

 


 

kaiserxd

Another tip is to make an area that the estrar your nickname change for letters and numbers, so no one would know who is who and all kill each other ...

 

 

  Reveal hidden contents

 

 

 

  Reveal hidden contents

 

 

 

  Reveal hidden contents

 

 

 

  Reveal hidden contents

 

 

 

  Reveal hidden contents

 

 


 

I don't test codes, because I don't have any of clients, only core, my core is L2J_Server last revision, this core client is High Five.

Edited by numl0ckas
Posted (edited)

UserInfo.java

-               writeS(_activeChar.getAppearance().getVisibleName());
+ writeS(_activeChar.isInsideZone(ZoneId.ANONYMOUS) ? "Anonymous" : _activeChar.getAppearance().getVisibleName());

-               writeS(title);
+ writeS(_activeChar.isInsideZone(ZoneId.ANONYMOUS) ? "Anonymous" : title);

 

 

 

Nice to add anonymous as a name 

 

but 

 

 @Override
    protected void onExit(L2Character character)
    {
        character.setInsideZone(ZoneId.ANONYMOUS, false);
    }
}

 

you miss something :) if i am not wrong

 

 

When character is outside the zone , update with old name 

Edited by Ayami-
Posted (edited)

Nop, it's not changing his name. It's just "visual". When you use the chat you will see normal name.

Edited by SweeTs
Posted
  On 1/25/2015 at 2:42 PM, Ayami- said:

UserInfo.java

 

-               writeS(_activeChar.getAppearance().getVisibleName());

+ writeS(_activeChar.isInsideZone(ZoneId.ANONYMOUS) ? "Anonymous" : _activeChar.getAppearance().getVisibleName());

 

-               writeS(title);

+ writeS(_activeChar.isInsideZone(ZoneId.ANONYMOUS) ? "Anonymous" : title);

 

 

 

Nice to add anonymous as a name 

 

but 

 

 @Override

    protected void onExit(L2Character character)

    {

        character.setInsideZone(ZoneId.ANONYMOUS, false);

    }

}

 

you miss something :) if i am not wrong

 

 

When character is outside the zone , update with old name 

Topic updated, thanks!

Posted
  On 1/25/2015 at 2:43 PM, SweeTs said:

Nop, it's not changing his name. It's just "visual". When you use the chat you will see normal name.

Yeah, its true, need rework chat handlers. Or make restrict to use chat in Anonymous zone.

I will do it soon;)

Posted (edited)
  On 1/25/2015 at 2:48 PM, numl0ckas said:

Topic updated, thanks!

loled..

L2PcInstance player = ((L2PcInstance) character);

That's how it's supposed to be. Also, you don't need any broadcast or anything like that, lol... UserInfo and CharInfo it's just VISUAL.

Edited by SweeTs
Posted
  On 1/25/2015 at 3:17 PM, SweeTs said:

loled..

L2PcInstance player = ((L2PcInstance) character);

That's how it's supposed to be. Also, you don't need any broadcast or anything like that, lol... UserInfo and CharInfo it's just VISUAL.

Thanks for lesson, topic updated.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.




×
×
  • Create New...