Skip to content
Snippets Groups Projects
Commit 61536f49 authored by Zoey76's avatar Zoey76
Browse files

BETA: TvT Manager implementation.

Reviewed by: Nos, UnAfraid, St3eT
parent d3ddc021
No related branches found
No related tags found
No related merge requests found
Showing
with 51 additions and 38 deletions
<html><head><title>TvT Event</title></head><body>Cursed weapon owners are not allowed to participate.</body></html>
\ No newline at end of file
<html><head><title>TvT Event</title></head><body>Maximum %max% participant(s) per IP address is allowed.</body></html>
\ No newline at end of file
<html><head><title>TvT Event</title></head><body>Chaotic players are not allowed to participate.</body></html>
\ No newline at end of file
<html><head><title>TvT Event</title></head><body>Only players from level %min% to level %max% are allowed tro participate.</body></html>
\ No newline at end of file
<html><head><title>TvT Event</title></head><body>You can not participate when registered for Olympiad.</body></html>
\ No newline at end of file
<html><title>TvT Event</title><body>
Registration for TvT Event:<br><br><center>
%playercount% players in<br>
Participation Fee: %fee%<br>
<button value="Participate" action="bypass -h npc_%objectId%_tvt_event_participation" width=50 height=15 back="L2UI_ct1.button_df" fore="L2UI_ct1.button_df">
<button value="Close" action="bypass -h npc_%objectId%_Close" width=50 height=15 back="L2UI_ct1.button_df" fore="L2UI_ct1.button_df">
</center></body></html>
\ No newline at end of file
<html><head><title>TvT Event</title></head><body>You need %fee% for participation.</body></html>
\ No newline at end of file
<html><head><title>TvT Event</title></head><body>You are on the registration list now.</body></html>
\ No newline at end of file
<html><title>TvT Event</title><body>
Cancel Registration yourself for TvT Event:<br1>
You are already registered for this event. Do you wish to cancel your participation in this Event?<br><center>
Participation fee is not returned!<br>
<button value="Yes" action="bypass -h npc_%objectId%_tvt_event_remove_participation" width=40 height=15 back="L2UI_ct1.button_df" fore="L2UI_ct1.button_df">
<button value="No" action="bypass -h npc_%objectId%_Close" width=40 height=15 back="L2UI_ct1.button_df" fore="L2UI_ct1.button_df">
</center></body></html>
\ No newline at end of file
<html><head><title>TvT Event</title></head><body>Your team won the event. Look in your inventory, there should be your reward.</body></html>
\ No newline at end of file
<html><title>TvT Event</title><body>
Status:<br><br><center>
%team1name% with %team1playercount% players and %team1points% points.<br1>
%team2name% with %team2playercount% players and %team2points% points.<br>
</center></body></html>
\ No newline at end of file
<html><head><title>TvT Event</title></head><body>The event is full! Only %max% players are allowed per team.</body></html>
\ No newline at end of file
<html><head><title>TvT Event</title></head><body>You are not longer on the registration list.</body></html>
\ No newline at end of file
......@@ -327,6 +327,7 @@ custom/Validators/SubClassSkills.java
custom/events/Elpies/Elpies.java
custom/events/Rabbits/Rabbits.java
custom/events/Race/Race.java
custom/events/TvT/TvTManager/TvTManager.java
# Vehicles
vehicles/BoatTalkingGludin.java
......
......@@ -88,16 +88,17 @@ public final class WarriorFishingBlock extends AbstractNpcAI
if ((obj == null) || !obj.isPlayer())
{
npc.decayMe();
return super.onSpawn(npc);
}
final L2PcInstance target = obj.getActingPlayer();
broadcastNpcSay(npc, Say2.NPC_ALL, NPC_STRINGS_ON_SPAWN[getRandom(NPC_STRINGS_ON_SPAWN.length)], target.getName());
((L2Attackable) npc).addDamageHate(target, 0, 2000);
npc.getAI().notifyEvent(CtrlEvent.EVT_ATTACKED, target);
npc.addAttackerToAttackByList(target);
startQuestTimer("DESPAWN", DESPAWN_TIME * 1000, npc, target);
else
{
final L2PcInstance target = obj.getActingPlayer();
broadcastNpcSay(npc, Say2.NPC_ALL, NPC_STRINGS_ON_SPAWN[getRandom(NPC_STRINGS_ON_SPAWN.length)], target.getName());
((L2Attackable) npc).addDamageHate(target, 0, 2000);
npc.getAI().notifyEvent(CtrlEvent.EVT_ATTACKED, target);
npc.addAttackerToAttackByList(target);
startQuestTimer("DESPAWN", DESPAWN_TIME * 1000, npc, target);
}
break;
}
case "DESPAWN":
......
<html>
<head>
<title>TvT Event</title>
</head>
<body>
Cursed weapon holders are not allowed to participate.
</body>
</html>
\ No newline at end of file
<html>
<head>
<title>TvT Event</title>
</head>
<body>
Maximum of %max% participant(s) per IP address is allowed.
</body>
</html>
\ No newline at end of file
<html>
<head>
<title>TvT Event</title>
</head>
<body>
Chaotic players are not allowed to participate.
</body>
</html>
\ No newline at end of file
<html>
<head>
<title>TvT Event</title>
</head>
<body>
Only players from level %min% to level %max% are allowed to participate.
</body>
</html>
\ No newline at end of file
<html>
<head>
<title>TvT Event</title>
</head>
<body>
You can not participate while registered for Olympiad.
</body>
</html>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment