Jump to content
  • 0

TvT addon


Question

Posted

I dont remember if its requested again, searched didnt found anything so i had to make the topic, the addon i am asking for is for interlude tvt (L2j) and i want only the players with at least 1 kill to get rewarded. Is this shared? or any ideas?

5 answers to this question

Recommended Posts

  • 0
Posted

Ok so, look at L2JFree TvT Engine, there is config for your request:

 

Code part:

 

public static void rewardTeam(String teamName)

{

for (L2PcInstance player : _players)

{

if (player != null && player.isOnline() != 0 && player.isInEvent(TvTPlayerInfo.class))

{

if (player.as(TvTPlayerInfo.class)._teamNameTvT.equals(teamName) && (player.as(TvTPlayerInfo.class)._countTvTkills > 0 || Config.TVT_PRICE_NO_KILLS))

{

player.addItem("TvT Event: " + _eventName, _rewardId, _rewardAmount, player, true, true);

 

_playerWon = 1;

 

NpcHtmlMessage nhm = new NpcHtmlMessage(5);

TextBuilder replyMSG = new TextBuilder("");

 

replyMSG.append("<html><body>Your team wins the event. Look in your inventory for the reward.</body></html>");

 

nhm.setHtml(replyMSG.toString());

player.sendPacket(nhm);

 

// Send a Server->Client ActionFailed to the L2PcInstance in order to avoid that the client wait another packet

player.sendPacket(ActionFailed.STATIC_PACKET);

}

}

}

}

 

L2JFree TvT

 

  • 0
Posted

Ok so, look at L2JFree TvT Engine, there is config for your request:

 

Code part:

 

L2JFree TvT

 

i tried to fix it with this but i use l2j not l2j free and it was kinda hard, any other suggestions?

  • 0
Posted

i tried to fix it with this but i use l2j not l2j free and it was kinda hard, any other suggestions?

 

You just have to add few lines, whats wrong.

 

And one more thing, you're quite old member so next time fallow mxc rules before posting.

  • 0
Posted

You just have to add few lines, whats wrong.

 

And one more thing, you're quite old member so next time fallow mxc rules before posting.

what i did wrong?

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