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.
On April 11 at 18:00 server time (GMT +2), the open beta test of our upcoming Chronicle 2 update will begin!
We invite everyone to join, explore the world of C2 ahead of the official launch, and share your feedback.
📌 Players who find bugs during OBT will receive CoL as a reward:
- 1 CoL for each staticmeshes bug For example, passing through textures, stairs, etc.
- 2 CoL or more for server-side bugs (depending on severity).
You can report bugs via support on Discord or on the forum.
Open beta testing will last approximately until 15.04 20:00 (GMT +2).
Your activity and input will help us improve the game!
The download links will be available later.
Question
sherlockholmes
public static String calculateRewards()
{
TreeSet<DMPlayer> players = orderPosition(_dmPlayer.values());
String _htmlPrefix = null;
for (int j = 0; j < Config.DM_REWARD_FIRST_PLAYERS; j++)
{
if (players.isEmpty())
break;
DMPlayer player = players.first();
if (player.getPoints() == 0)
break;
rewardPlayer(player, j + 1);
players.remove(player);
{
for (L2PcInstance Player : L2World.getInstance().getAllPlayers().values())
Player.sendPacket(new ExShowScreenMessage("The Hunter Killer is " + player.getPlayer().getName() + " whit " + player.getPoints()+ " kills.", 12000));
}
int playerPointPrev = player.getPoints();
if (!Config.DM_REWARD_PLAYERS_TIE)
continue;
while (!players.isEmpty())
{
player = players.first();
if (player.getPoints() != playerPointPrev)
break;
rewardPlayer(player, j + 1);
players.remove(player);
}
}
{
// Set state REWARDING so nobody can point anymore
setState(EventState.REWARDING);
return "";
}
}
hi, wanted to know if you can help me with this ....
I want the last line that says this:
{
/ / Set state point rewarding dog anymore so nobody
setState (EventState.REWARDING)
return "";
}
not exit in the form of general notice. I want to eliminate this form or directly that it is not announced anything.
return true removing fails me!
2 answers to this question
Recommended Posts
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.