L2shaken Posted November 22, 2016 Posted November 22, 2016 (edited) http://imgur.com/a/1oYgm protected int getWinnerTeam() { ArrayList<EventTeam> t = new ArrayList<>(); for (EventTeam team : teams.values()) { if (t.size() == 0) { t.add(team); continue; } if (team.getScore() > t.getFirst().getScore()) { t.clear(); t.add(team); continue; } if (team.getScore() == t.getFirst().getScore()) t.add(team); } if (t.size() > 1) return 0; return t.getFirst().getId(); } getFirst () must be replaced by what? Edited November 22, 2016 by L2shaken Quote
0 melron Posted November 22, 2016 Posted November 22, 2016 (edited) Bro, im noob too but wait... You cant just look inside of the EventTeam what functions are there and take the correct one? Edit: I am confused, Are you trying to get the score of two teams from a list ? getFirst must be replaced with the wanted team of the list.. t.get() to get the team , 0 should work Edited November 22, 2016 by ⏇Melron⏇℠Abs Quote
0 L2shaken Posted November 22, 2016 Author Posted November 22, 2016 Bro, im noob too but wait... You cant just look inside of the EventTeam what functions are there and take the correct one? /* * This program is free software: you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free Software * Foundation, either version 3 of the License, or (at your option) any later * version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License along with * this program. If not, see <http://www.gnu.org/licenses/>. */ package net.sf.l2j.gameserver.event; public class EventTeam implements Comparable<EventTeam> { private int score; private String name; private int[] nameColor; private int[] startPos; private int id; public EventTeam(int id, String name, int[] color, int[] startPos) { this.id = id; this.name = name; this.startPos = startPos; score = 0; nameColor = color; } @Override public int compareTo(EventTeam second) { if (getScore() > second.getScore()) return 1; else if (getScore() < second.getScore()) return -1; return 0; } protected String getHexaColor() { return (nameColor[0] > 15 ? Integer.toHexString(nameColor[0]) : "0" + Integer.toHexString(nameColor[0])) + (nameColor[1] > 15 ? Integer.toHexString(nameColor[1]) : "0" + Integer.toHexString(nameColor[1])) + (nameColor[2] > 15 ? Integer.toHexString(nameColor[2]) : "0" + Integer.toHexString(nameColor[2])); } protected int getId() { return id; } protected String getName() { return name; } protected int getScore() { return score; } protected int[] getTeamColor() { return nameColor; } protected int[] getTeamPos() { return startPos; } protected void increaseScore() { score++; } protected void increaseScore(int ammount) { score += ammount; } protected void setScore(int ammount) { score = ammount; } } EventTeam.java Quote
0 melron Posted November 22, 2016 Posted November 22, 2016 (edited) I dont rly know what to tell you about how u can fix that Also why are you using list for just 2 teams? Edited November 22, 2016 by ⏇Melron⏇℠Abs Quote
0 bravetobe Posted November 22, 2016 Posted November 22, 2016 (edited) wtf is this trash code... Just tell me that u dont do these things to check the scores of 2 teams.. Edit: There is a whole COMPARETO why make that sh1tty code to get the winner anyway. Edited November 22, 2016 by bravetobe Quote
0 bravetobe Posted November 22, 2016 Posted November 22, 2016 (edited) return t.get(0).getId(); Dont solve his problem and let him code something not sh1tty like he did. He got reported anyway "What to add instead of getFirst() "... tfw he doesnt know how to get(0) and he cant think that he can actually use the code which already exists Edited November 22, 2016 by bravetobe Quote
0 Rootware Posted November 22, 2016 Posted November 22, 2016 This dude want to moved all addons from Frozen to the aCis. :dat: Quote
0 Tryskell Posted November 23, 2016 Posted November 23, 2016 The whole method is trash, rethink it from zero. Quote
0 Elfo Posted November 23, 2016 Posted November 23, 2016 (edited) a Edited October 1, 2021 by Elfocrash Quote
0 Tessa Posted November 23, 2016 Posted November 23, 2016 This community keeps going worse and worse, damn it. :lol: Quote
0 Elfo Posted November 23, 2016 Posted November 23, 2016 (edited) a Edited October 1, 2021 by Elfocrash Quote
0 Versus Posted November 23, 2016 Posted November 23, 2016 ---> HELP SECTION <--- People are supposed to be noobs. Get over it. Quote
0 Tessa Posted November 23, 2016 Posted November 23, 2016 Feel free to spoonfeed him the answer And then another fail server with 100% class balance etc will take place at the private servers section to finish what is left from the l2 community. :lol: Quote
0 Tessa Posted November 23, 2016 Posted November 23, 2016 ---> HELP SECTION <--- People are supposed to be noobs. Get over it. Noobs, but not that much... Quote
Question
L2shaken
http://imgur.com/a/1oYgm
getFirst () must be replaced by what?
Edited by L2shaken87 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.