On November 29 2009 15:53 Avidkeystamper wrote:
Not even close. 1539. (no sarcasm)
Not even close. 1539. (no sarcasm)
Holy shit T_T! Meeple go for it =O.
Blogs > WheelOfTime |
ketomai
United States2789 Posts
On November 29 2009 15:53 Avidkeystamper wrote: Show nested quote + On November 29 2009 15:17 blue_arrow wrote: holy crap meeple i've seen you post so much in every thread today edit: zomg youve done almost 700posts in the last week, i think you may have broken a couple of kona's records Not even close. 1539. (no sarcasm) Holy shit T_T! Meeple go for it =O. | ||
Equaoh
Canada427 Posts
| ||
TheAntZ
Israel6248 Posts
On November 29 2009 15:17 blue_arrow wrote: holy crap meeple i've seen you post so much in every thread today edit: zomg youve done almost 700posts in the last week, i think you may have broken a couple of kona's records Lol i noticed this too, but I dont think i've seen a single bad/offensive post from him kudos ![]() | ||
koreasilver
9109 Posts
| ||
blue_arrow
1971 Posts
On November 29 2009 15:53 Avidkeystamper wrote: Show nested quote + On November 29 2009 15:17 blue_arrow wrote: holy crap meeple i've seen you post so much in every thread today edit: zomg youve done almost 700posts in the last week, i think you may have broken a couple of kona's records Not even close. 1539. (no sarcasm) O.O; holy shit kona, thats just crazy and yeah meeple you should try breaking it lol, you'd have to like almost double your post count in a week though | ||
RoieTRS
United States2569 Posts
On November 29 2009 15:56 DoctorHelvetica wrote: you lost because you are bad i dont see how this makes it an imbalanced matchup Prove it. | ||
huameng
United States1133 Posts
On November 29 2009 16:00 Grobyc wrote: public static String imba(String opponentrace, String userrace) { if((opponentrace == "zerg") && (userrace == "protoss")) return "GG"; else { return win("1a2a3a"); } } should be if((opponentrace.equals("zerg")) && (userrace.equals("protoss"))) program is logically correct though :D | ||
TheAntZ
Israel6248 Posts
On November 29 2009 16:07 blue_arrow wrote: Show nested quote + On November 29 2009 15:53 Avidkeystamper wrote: On November 29 2009 15:17 blue_arrow wrote: holy crap meeple i've seen you post so much in every thread today edit: zomg youve done almost 700posts in the last week, i think you may have broken a couple of kona's records Not even close. 1539. (no sarcasm) O.O; holy shit kona, thats just crazy and yeah meeple you should try breaking it lol, you'd have to like almost double your post count in a week though just do what kona did, find something to contribute, do that 2 times a day, and in between post 'lol' 'rofl' or other single word replies in EVERY single thread on the entire forum | ||
Grobyc
Canada18410 Posts
On November 29 2009 16:15 huameng wrote: Show nested quote + On November 29 2009 16:00 Grobyc wrote: On November 29 2009 15:11 Crunchums wrote: "hard" != "imbalanced" public static String imba(String opponentrace, String userrace) { if((opponentrace == "zerg") && (userrace == "protoss")) return "GG"; else { return win("1a2a3a"); } } should be if((opponentrace.equals("zerg")) && (userrace.equals("protoss"))) program is logically correct though :D it works for me in java the way I currently have it lol xD | ||
29 fps
United States5724 Posts
| ||
Mastermind
Canada7096 Posts
On November 29 2009 16:27 Grobyc wrote: Show nested quote + On November 29 2009 16:15 huameng wrote: On November 29 2009 16:00 Grobyc wrote: On November 29 2009 15:11 Crunchums wrote: "hard" != "imbalanced" public static String imba(String opponentrace, String userrace) { if((opponentrace == "zerg") && (userrace == "protoss")) return "GG"; else { return win("1a2a3a"); } } should be if((opponentrace.equals("zerg")) && (userrace.equals("protoss"))) program is logically correct though :D it works for me in java the way I currently have it lol xD That is because the Java compiler is very smart. In a general use situation your method will NOT work. I assume you tested it with something like this: public class Silly { public static void main(String[] args) { System.out.println(imba("zerg", "protoss")); } public static String imba(String opponentrace, String userrace) { if((opponentrace == "zerg") && (userrace == "protoss")) return "GG"; else { return "1a2a3a"; } } } A really smart compiler could recognise that the comparison doesnt need to actually be made. There is only one possible execution for this program. This program would actually be reduced down just printing the line "GG". If you instead wrote your program in the following way you will see your mistake. public class Silly { public static void main(String[] args) { Scanner k = new Scanner(System.in); String x = k.nextLine(); System.out.println(imba(x, "protoss")); } public static String imba(String opponentrace, String userrace) { if((opponentrace == "zerg") && (userrace == "protoss")) return "GG"; else { return "1a2a3a"; } } } This second program takes in a string from the user and tries to match it to the string "zerg". Since you are comparing objects instead of the contents of those objects you will not get the intended behaviour. edit: fixed spelling | ||
iamho
United States3347 Posts
On November 29 2009 15:56 DoctorHelvetica wrote: you lost because you are bad i dont see how this makes it an imbalanced matchup | ||
evanthebouncy!
United States12796 Posts
lol my compiler never catches those and I spend long time pulling hair cuz of the dot equals bullshit In anycase, my zvp is still pretty weak :/ | ||
Misrah
United States1695 Posts
| ||
Adeny
Norway1233 Posts
char ImbalanceCheck(string opponentrace) To Misrah, Zerg is by far the easiest race to play endgame. It's impossible to not macro perfectly. | ||
Misrah
United States1695 Posts
On November 29 2009 18:03 Adeny wrote: char ImbalanceCheck(string opponentrace) To Misrah, Zerg is by far the easiest race to play endgame. It's impossible to not macro perfectly. meh i guess that may be true, but try out zerg mid game.... it's crazy multi task! Also meeple i have to agree. You are a freaking post whore. You post to the excessive amount..... i think you only got 1k a bit ago.... but now your almost at what.... over 2 k wtf.... I got 1k before you did, and now you are 1k posts ahead of me lol Actually your symbol should be a mutalisk. But because you haven't been here long enough, it will stay a lurker. LURKER!!!! get it? i hope that i am subtle enough? | ||
Papvin
Denmark610 Posts
| ||
7mk
Germany10157 Posts
| ||
PH
United States6173 Posts
| ||
JFKWT
Singapore1442 Posts
On November 29 2009 21:41 7mk wrote: yea every race has its weak match up I honestly feel like Z do by far the least bitching about it. imho its cuz of savior? not everyone plays like flash and bisu and their styles/mechanics are more recent | ||
| ||
![]() StarCraft 2 StarCraft: Brood War BeSt Dota 2![]() Mini ![]() Larva ![]() Soma ![]() firebathero ![]() Hyun ![]() Pusan ![]() TY ![]() Dewaltoss ![]() Sharp ![]() [ Show more ] League of Legends Super Smash Bros Heroes of the Storm Other Games Organizations Other Games StarCraft: Brood War StarCraft 2 StarCraft: Brood War
StarCraft 2 • Berry_CruncH222 StarCraft: Brood War• AfreecaTV YouTube • intothetv ![]() • Kozan • IndyKCrew ![]() • LaughNgamezSOOP • Migwel ![]() • sooper7s Dota 2 League of Legends |
Epic.LAN
CSO Contender
Sparkling Tuna Cup
Online Event
Esports World Cup
ByuN vs Astrea
Lambo vs HeRoMaRinE
Clem vs TBD
Solar vs Zoun
SHIN vs Reynor
Maru vs TriGGeR
herO vs Lancer
Cure vs ShoWTimE
Esports World Cup
Esports World Cup
Esports World Cup
CranKy Ducklings
|
|