creative scoreboard team. and fixed npe in tutorials
This commit is contained in:
parent
0dceca5cfc
commit
d8ae035f84
@ -116,4 +116,12 @@ public enum Rank
|
|||||||
{
|
{
|
||||||
return _donor;
|
return _donor;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getRawTag()
|
||||||
|
{
|
||||||
|
if (Name.equalsIgnoreCase("ALL"))
|
||||||
|
return "";
|
||||||
|
|
||||||
|
return Name;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -106,4 +106,8 @@ public class UtilText {
|
|||||||
return x <= 0 ? true : x > 1;
|
return x <= 0 ? true : x > 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static String trim(int maxLength, String s) {
|
||||||
|
return s.length() <= maxLength ? s : s.substring(0, maxLength);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package mineplex.game.clans.clans.scoreboard;
|
package mineplex.game.clans.clans.scoreboard;
|
||||||
|
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
|
import org.bukkit.ChatColor;
|
||||||
import org.bukkit.GameMode;
|
import org.bukkit.GameMode;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.bukkit.scoreboard.DisplaySlot;
|
import org.bukkit.scoreboard.DisplaySlot;
|
||||||
@ -11,6 +12,7 @@ import org.bukkit.scoreboard.Team;
|
|||||||
import net.minecraft.server.v1_8_R3.ScoreboardTeam;
|
import net.minecraft.server.v1_8_R3.ScoreboardTeam;
|
||||||
|
|
||||||
import mineplex.core.common.util.C;
|
import mineplex.core.common.util.C;
|
||||||
|
import mineplex.core.common.util.UtilText;
|
||||||
import mineplex.core.scoreboard.PlayerScoreboard;
|
import mineplex.core.scoreboard.PlayerScoreboard;
|
||||||
import mineplex.core.scoreboard.ScoreboardManager;
|
import mineplex.core.scoreboard.ScoreboardManager;
|
||||||
import mineplex.game.clans.clans.ClanInfo;
|
import mineplex.game.clans.clans.ClanInfo;
|
||||||
@ -76,18 +78,15 @@ public class ClansPlayerScoreboard extends PlayerScoreboard
|
|||||||
{
|
{
|
||||||
if (otherPlayer.getGameMode().equals(GameMode.CREATIVE))
|
if (otherPlayer.getGameMode().equals(GameMode.CREATIVE))
|
||||||
{
|
{
|
||||||
String teamName = getTeamName(clanInfo, relation, ownScore);
|
String teamName = UtilText.trim(16, _clansManager.getClientManager().Get(otherPlayer).GetRank().getRawTag() + "CREATIVE");
|
||||||
Team team = scoreboard.getTeam(teamName);
|
Team team = scoreboard.getTeam(teamName);
|
||||||
if (team == null)
|
if (team == null)
|
||||||
{
|
{
|
||||||
team = scoreboard.registerNewTeam(teamName);
|
team = scoreboard.registerNewTeam(teamName);
|
||||||
if (clanInfo != null)
|
team.setPrefix(UtilText.trim(16, _clansManager.getClientManager().Get(otherPlayer).GetRank().getTag(true, true) + ChatColor.RESET + " "));
|
||||||
team.setPrefix(relation.getColor(true) + clanInfo.getName() + relation.getColor(false) + " ");
|
team.setSuffix(C.cRed + " CREATIVE");
|
||||||
else
|
|
||||||
team.setPrefix(relation.getColor(false).toString());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
Objective domObjective;
|
Objective domObjective;
|
||||||
if ((domObjective = scoreboard.getObjective(DisplaySlot.BELOW_NAME)) == null)
|
if ((domObjective = scoreboard.getObjective(DisplaySlot.BELOW_NAME)) == null)
|
||||||
{
|
{
|
||||||
|
@ -0,0 +1,32 @@
|
|||||||
|
package mineplex.game.clans.tutorials;
|
||||||
|
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
|
import mineplex.core.task.TaskManager;
|
||||||
|
|
||||||
|
public class TutorialClient
|
||||||
|
{
|
||||||
|
public Player Player;
|
||||||
|
public TutorialTask<?> CurrentTask;
|
||||||
|
public long LastDescriptionSentTime = 0;
|
||||||
|
|
||||||
|
public TutorialClient(Player player, Tutorial tutorial)
|
||||||
|
{
|
||||||
|
Player = player;
|
||||||
|
|
||||||
|
CurrentTask = tutorial._tasks.get(1);
|
||||||
|
|
||||||
|
for (TutorialTask<?> task : tutorial._tasks.values())
|
||||||
|
{
|
||||||
|
if (TaskManager.Instance.hasCompletedTask(player, String.format(
|
||||||
|
Tutorial.TASK_COMPLETE_TASK,
|
||||||
|
task.getTutorial().getTechnicalName(), task.getTechnicalName())))
|
||||||
|
{
|
||||||
|
if (CurrentTask.getID() <= task.getID())
|
||||||
|
{
|
||||||
|
CurrentTask = task.getTutorial().getTasks().get(Math.min(task.getTutorial().getTasks().size(), task.getID() + 1));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user