Jump to content
  • 0

Advertisement aCis


l2jkain

Question

Hello, I'm trying to add the area where the death was, well it says where was the death wanted to put asssim Player1 was defeated by Player2 in Imperial Tomb
but in this code that to so doing he announces thus: Imperial Tomb Player1 was defeated by Player2

	if (Config.ANNOUNCE_PVP_KILL)
                {
                    msg = Config.ANNOUNCE_PVP_MSG.replace("$killer", targetPlayer.getName()).replace("$target", getName());
                    SystemMessage sm = new SystemMessage(SystemMessageId.S1_S2);
                    sm.addZoneName(targetPlayer.getPosition());
                    sm.addString(msg);
                    Broadcast.toAllOnlinePlayers(sm);
                }
                else
                    Broadcast.announceToOnlinePlayers(msg);
	

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

you can do something like this 

            SystemMessage sm = new SystemMessage(SystemMessageId.getSystemMessageId(1983));
            sm.addString(targetPlayer.getName() + " has killed from " + getName() +" in the areas ");

and put ragion name

Link to comment
Share on other sites

  • 0

Bcs you first use zone name and then msg? Use proper order. 

BTW, zone name use getPosition, targetPlayer is useless. 

Edited by SweeTs
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   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...

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