December 26, 20159 yr looking through a FLIR scope, the guy on the left has regular camo and the guy on the right has the DICE LA CAMO
December 27, 20159 yr Just a tip - when you have the camo, have it equipped, and you are sneaking up around a pesky FLIR sniper to say hello with your bayonet when he easily spots you and kills you and leaves you in a state of WTF?!?!?!?!? Before you respawn in, make sure the camo is equipped - a few people who had equipped it in a previous match, started a new match and it had been replaced by the default camo. It had happened to myself, LadyElric and a couple of others too. (And yes, we had been through all our kits and changed the camo on all classes.)
December 28, 20159 yr Video of locations: 1. Solve the puzzle by lighting all 20 lamps in an unranked server. Here is a notepad template I made that will make it much easier. Download it by pressing the download button at the top - https://drive.google.com/open?id=0B6pVyNYOdxumZHp0TC1HSi0wSnc 2. Go to the original light and find the keypad on the right side of the post behind the one with the skull on it. 3. Enter this code on the keypad: 83980800000 4. Translate the morse code on the light. (I recommend using the Morse Talk app and recording the light with a 40x sniper scope zoomed in on the light. Apps are linked below) 5. Join a Ranked Conquest Large server (Empty or full, it doesn't matter) and stand directly against the middle of the water tower at A on the West side. 6. Wait two minutes, and another button will pop up. Press the button and enter in your unique code. Once you press the button and a number on the number pad, you only have about 3-4 seconds to press the next number before the keypad disappears and you have to wait for two more minutes. 7. You now have the DICE LA camo unlocked. NOTES: - One person has their own unique code, so each time you solve the puzzle, the morse code will only work for the person who input the code on the keypad. - If you cannot press buttons at some point, check to see if the numberpad is there. Sometimes it glitches and shows up even when all 20 lights are not illuminated. - If the app gives you a dot, try replacing it with a 0 (Credit: WhiteMilk_ on Reddit) LINKS: Android Morse Talk app: https://play.google.com/store/apps/details?id=com.blueta.morsetransmitter Apple Morse Code app: https://itunes.apple.com/nl/app/text-light/id862884172?l=en&mt=8 Other Apps: Light Conversation JackFrags detailed video: Map / Guide http://i.imgur.com/Y6Wv4Ez.jpg H Flag under the first tree on the left when facing North Temple - 1 http://i.imgur.com/r24XDWZ.png C Flag back building on left when facing East Furnace - 2 http://i.imgur.com/VDICvN1.png In between A and B, Closer to B. One of the only two dead trees. Tree - 3 http://i.imgur.com/J0Uqdg7.png Under the pier at G on the far right when facing West. Pier - 4 http://i.imgur.com/zdTlwJx.png On the left side of the waterfall when facing South where the two rock colors meet (one brighter one darker) Waterfall - 5 http://i.imgur.com/obi7T8j.png Smaller rock next to the large rock on E. Button is on the North side of the rock. Rock - 6 http://i.imgur.com/YGl9lYy.png On the second level of the Pagoda at B. Pagoda - 7 http://i.imgur.com/9SVGHrQ.png End Result - DICE LA camo unlocked http://i.imgur.com/aX7Domq.png
December 28, 20159 yr Have an R script for calculating button configurations, but I didn't fix it to account for certain lights being stuck on after the last button is flipped. If anyone can fix it, let me know. Base = rep(0,20);A = rep(0,20);B = rep(0,20);C = rep(0,20);D = rep(0,20);E = rep(0,20);G = rep(0,20);H = rep(0,20) #Input lit lanterns below Base[c(3,4,12,16,17)] = 1 A[c(2,7)] = 1 B[c(5,8,9,11,12,17,18,20)] = 1 C[c(11,12,13,15,17,18,20)] = 1 D[c(1,6,12,14,17,19)] = 1 E[c(2,6,7,10,12,13,15,17)] = 1 G[c(1,14,19)] = 1 H[c(2,3,4,5,7,8,9,12,16,17)] = 1 bigmatrix = cbind(Base, A, B, C, D, E, G, H) combinationmatrix = t(expand.grid(1,c(0,1),c(0,1),c(0,1),c(0,1),c(0,1),c(0,1),c(0,1))) attempts = (bigmatrix %*% combinationmatrix) %% 2 attempttot = colSums(attempts) x = as.matrix(combinationmatrix[,match(max(attempttot),attempttot)]) rownames(x) = c("N/A", "A", "B", "C", "D", "E", "G", "H") bigmatrix cat("Button configuration:") x cat("Max lanterns: ", max(attempttot)) # If max lanterns < 20 then something went wrong Output looks something like this: http://i.imgur.com/BW9dFWC.png
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.