Tuesday, November 19, 2013

Review on Grand Theft Auto 5
GTA V
ThatCanindian


Before a few days ago when I played GTA 5, I thought that the GTA series was extremely stupid. However, I found that GTA 5 is amazingly fun. GTA includes tons of different things to do at different times. Two of those would be the tennis and golf. I, myself, like both those sports, and they were a ton of fun in GTA 5. Grand Theft Auto, in my opinion, is the most fun when racing with cars and coming out of nowhere and ramming your friend. The only problem I have is that it looks just like GTA 4. Overall, though, from what I’ve been able to tell, Grand Theft Auto 5 is a great game.


 Rating 9/10 
Minecraft
ComputerCraft/Feed The Beast Code Tunel 2
THAT CANINDIAN

ComputerCraft is a mod for Minecraft that allows you to program computers called turtles to do work for you. Feed The Beast is a mod pack for Minecraft that has the ComputerCraft mod in it.

This program is kind of like the tunnel program except this one will refuel and place torches. Just place torches in slot 16, and place coal in slot 15. All you have to do is type (program) (length).

local tArgs = {...}
local todo = tonumber(tArgs[1])

function tfuel(amount)
if turtle.getFuelLevel() < 5 then

turtle.select(15)
turtle.refuel(amount)
turtle.select(1)
  end
end

function torch()
turtle.select(16)turtle.turnRight()
turtle.turnRight()
turtle.place()
turtle.select(1)
turtle.turnRight()
turtle.turnRight()
end

local t = 4

for i = 1, todo do

if turtle.detect() == true then
repeat
turtle.dig()
sleep(0.5)
until turtle.detect() == false
tfuel(1)
turtle.forward()

else

tfuel(1)
turtle.forward()
end

if turtle.detectDown() == false then
turtle.select(1)
turtle.placeDown()

end

if turtle.detectUp() == true then
repeat
turtle.digUp()
sleep(0.5)
until turtle.detectUp() == false
tfuel(1)
turtle.up()

else

tfuel(1)
turtle.up()
end

turtle.turnLeft()
if turtle.detect() == true then
turtle.dig()
turtle.turnRight()
turtle.turnRight()

else

turtle.turnRight()
turtle.turnRight()
end

if turtle.detect() == true then
turtle.dig()
tfuel(1)
turtle.down()

else

tfuel(1)
turtle.down()
end

if turtle.detect() == true then
repeat
turtle.dig()
sleep(0.5)
until turtle.detect() == false
turtle.turnLeft()
turtle.turnLeft()

else

turtle.turnLeft()
turtle.turnLeft()
end

if turtle.detect() == true then
repeat
turtle.dig()
sleep(0.5)
until turtle.detect() == false
turtle.turnRight()

else

turtle.turnRight()
end

t = t + 1

if t == 10 then
torch()
t = 0
  end
end

Monday, November 18, 2013

Best Engineer Gun
BattleField 4
THAT CANINDIAN


Recently, I have been using the engineer class instead of the recon class, and after trying out lots of different guns and attachments, I have discovered that the best gun in the objective grinding class is the PDW. The PDW is a gun in the engineer class that consists of great hip-fire  accuracy and a fast fire-rate. The gun is great for close range because of the fast fire-rate and medium damage. The gun is best with a laser sight that exploits its great hip fire accuracy. The PDW is also good with the simple reflex sight for pinpoint accuracy. The PDW is the overall best choice for people who want to play the objective.
Best Recon Class
BattleField 4
THAT CANINDIAN


The recon class is a class that includes snipers and other miscellaneous rifles. The recon class is for those players that have a strategic sense to their gameplay. My choice for the recon class is the M988 sniper rifle. This rifle has a fast bullet speed for less bullet drop. It also has a nice damage so that the high chest shots are one shot kills. Attachment that I would recommend would be the straight pull, the rifle scope 8x, and the 14x zoom. The straight pull under barrel attachment allows you to shoot multiple times while zoomed in. The rifle scope if for medium range, and the 14x zoom lets you shoot well from far range. The M988 is the gun for you if you want to kill people easily from far distances. 
Best Support Class
BattleField 4
THAT CANINDIAN


To find the best gun in the support class, I had to search toward the last unlocks. The LMG that I chose for the best support class is the MG4. The MG4 is the last LMG you unlock in the support class. I picked the MG4 because of its fast fire rate, great feel, and high damage. I probably wouldn’t have picked it just for the damage and the rate of fire because its not necessarily the best with high stats. My recommended attachment is the reflex sight. The other attachments are good too, but they don’t make such a huge impact on the performance of the gun. It’s hard to make the gun much better with its amazing performance. This gun is not only the best performing gun in this class, but maybe the best gun in BattleField 4.
Minecraft
ComputerCraft/Feed The Beast Code
BRANCH MINE / THAT CANINDIAN

ComputerCraft is a mod for Minecraft that allows you to program computers called turtles to do work for you. Feed The Beast is a mod pack for Minecraft that has the ComputerCraft mod in it.

This code is a code that I made myself that branch mines for you. All you have to do after you name it is type (name of program) (length of strip mine). You should also put torches in the 15th and 16th slot.


local tArgs = {...}
local todo = tonumber(tArgs[1])
local t = 1
local p = 2
local h = 8

function goBack()
turtle.turnRight()
turtle.turnRight()
turtle.forward()
turtle.forward()
turtle.forward()
turtle.forward()
turtle.forward()
turtle.forward()
turtle.forward()
torch()
turtle.forward()
turtle.forward()
turtle.forward()

end

function torch()

turtle.select(16)
turtle.getItemCount(16)
if turtle.getItemCount(16) < 1 then
turtle.select(15)
turtle.turnLeft()
turtle.turnLeft()
turtle.place()
turtle.turnLeft()
turtle.turnLeft()
turtle.select(1)

else

turtle.turnLeft()
turtle.turnLeft()
turtle.place()
turtle.turnLeft()
turtle.turnLeft()
turtle.select(1)

  end
end

function branchTime() 

turtle.turnLeft()

for b = 1, 10 do

if turtle.detect() == true then

repeat

turtle.dig()
sleep(0.5)

until turtle.detect() == false

turtle.forward()

else

turtle.forward()

end

if turtle.detectUp() == true then

repeat

turtle.digUp()
sleep(0.50)

until turtle.detectUp() == false

  end
end

goBack()

for f = 1, 10 do

if turtle.detect() == true then

repeat

turtle.dig()
sleep(0.5)

until turtle.detect() == false

turtle.forward()

else

turtle.forward()

end

if turtle.detectUp() == true then

repeat

turtle.digUp()

until turtle.detectUp() == false  

  end
end

goBack()
turtle.turnRight()

end

for i = 1, todo do

if turtle.detect() == true then

repeat

turtle.dig()
sleep(0.5)

until turtle.detect() == false

turtle.forward()

else

turtle.forward()

end

if turtle.detectUp() == true then

repeat

turtle.digUp()
sleep(0.5)

until turtle.detectUp() == false

end

t=t+1

if t == 3 then

branchTime()
t=0

  end
end

turtle.turnRight()
turtle.turnRight()

for o = 1, todo do
turtle.forward()

end

turtle.turnRight()

turtle.turnRight()
Minecraft
ComputerCraft/Feed The Beast Code
FLAT LAND / THAT CANINDIAN

ComputerCraft is a mod for Minecraft that allows you to program computers called turtles to do work for you. Feed The Beast is a mod pack for Minecraft that has the ComputerCraft mod in it.

This code is a code that I did not make myself, but I thought it was useful and very efficient. This program clears out a flat area for you. All you have to do is type (name of program) (length) (width). You should also put coal in the 16th slot


local tArgs = {...}
local todo = tonumber(tArgs[1])
local width = tonumber(tArgs[2])
todo = todo or 1
width = width or todo

function tfuel(amount)
if turtle.getFuelLevel() < 5 then
turtle.select(16)
turtle.refuel(amount)
turtle.select(1)

  end
end

function upuntil()
local upc = 0
for u = 1, 5 do
repeat
tfuel(1)
turtle.digUp()
if turtle.up() == true then
upc = upc + 1
end
sleep(0.25)
until turtle.detectUp() == false
end
for dc = 1, upc do
tfuel(1)
turtle.down()
  end
end

function turnAround()
turtle.turnRight()
turtle.turnRight()
end

for i = 1, width do
for j = 1, todo do

tfuel(1)
if turtle.detect() == true then
repeat
turtle.dig()
sleep(0.5)
until turtle.detect() == false
turtle.forward()
upuntil()

else

turtle.forward()
upuntil()
  end
end

turnAround()

for j = 1, todo do
tfuel(1)
turtle.forward()
end
turtle.turnLeft()
if turtle.detect() == true then
repeat
turtle.dig()
sleep(0.5)
until turtle.detect() == false
end
turtle.forward()
turtle.turnLeft()

end

Minecraft
ComputerCraft/Feed The Beast Code
STRAIGHT HOLE DOWN / THAT CANINDIAN

ComputerCraft is a mod for Minecraft that allows you to program computers called turtles to do work for you. Feed The Beast is a mod pack for Minecraft that has the ComputerCraft mod in it.

I created this code that makes a straight hole downwards while making it secure and filling in any exposed places. I did, though, get the idea from a video I watched. All you have to do is type (name of program) (depth). 

local tArgs = {...}
local todo = tonumber(tArgs[1])
local sslot = 1

function checkSlot()
turtle.getItemCount(sslot)
while turtle.getItemCount(sslot) < 1 do
sslot = (sslot%16)+1
  end
end

for i = 1, todo do

if turtle.detectDown() == true then
turtle.digDown()
turtle.down()

else

turtle.down()

end

for k = 1, 4 do

if turtle.detect() == true then
checkSlot()
turtle.turnRight()

else

checkSlot()
turtle.place()
turtle.turnRight()

    end
  end
end

for j = 1, todo do
turtle.up()


end

Minecraft
ComputerCraft/Feed The Beast Code
MAKE A FLOOR / THAT CANINDIAN


ComputerCraft is a mod for Minecraft that allows you to program computers called turtles to do work for you. Feed The Beast is a mod pack for Minecraft that has the ComputerCraft mod in it.

I made this program from scratch that makes a floor for you out of any type of material. All you have to do is type (name of program) (length) (width)


local tArgs = {...}
local todo = tonumber(tArgs[1])
local width = tonumber(tArgs[2])
local sslot = 1

function checkSlot()

turtle.getItemCount(sslot)

while turtle.getItemCount(sslot) < 1 do
sslot = (sslot%16)+1

  turtle.select(sslot)
  end
end

for j = 1, width / 2 do
for i = 1, todo do

if turtle.detectDown() == true then

turtle.dig()
checkSlot()
turtle.digDown()
turtle.placeDown()
turtle.forward()

else

turtle.dig()
checkSlot()
turtle.placeDown()
turtle.forward()
  end
end

turtle.turnRight()

if turtle.detect() == true then

turtle.dig()
turtle.forward()
turtle.turnRight()
turtle.dig()
turtle.forward()

else

turtle.forward()
turtle.turnRight()
turtle.dig()
turtle.forward()

end

for i = 1, todo do

if turtle.detectDown() == true then

turtle.dig()
checkSlot()
turtle.digDown()
turtle.placeDown()
turtle.forward()

else

turtle.dig()
checkSlot()
turtle.placeDown()
turtle.forward()

  end
end

turtle.turnLeft()

if turtle.detect() == true then

turtle.dig()
turtle.forward()
turtle.turnLeft()
turtle.dig()
turtle.forward()

else

turtle.forward()
turtle.turnLeft()
turtle.dig()
turtle.forward()

  end
end

turtle.turnLeft()

for i = 1, width do

turtle.forward()

end


turtle.turnRight()        
Minecraft
ComputerCraft/Feed The Beast Code
BUILD A WALL THAT CANINDIAN


ComputerCraft is a mod for Minecraft that allows you to program computers called turtles to do work for you. Feed The Beast is a mod pack for Minecraft that has the ComputerCraft mod in it.

This program is one that I made myself that lets you build a wall. The only hold back though is that the width has to be an even number. All you have to do is type (name of program) (hight) (width).


local tArgs = {...}
local todo = tonumber(tArgs[1])
local width = tonumber(tArgs[2])
local sslot = 1

function checkSlot()

turtle.getItemCount(sslot)

while turtle.getItemCount(sslot) < 1 do
  sslot = (sslot%16)+1

turtle.select(sslot)
  end
end


for j = 1, width / 2 do       

if turtle.detect() == true then

checkSlot()
turtle.dig()
turtle.place()

else

checkSlot()
turtle.place()

end

for i = 1, todo - 1 do

turtle.up()
  
if turtle.detect() == true then 
repeat
checkSlot()
turtle.dig()
sleep(0.5)
until turtle.detect() == false

turtle.place()

else

checkSlot()
turtle.place()


   end
 end
  
turtle.turnRight()
turtle.forward()
turtle.turnLeft()

if turtle.detect() == true then

turtle.dig()
checkSlot()
turtle.place()

else
checkSlot()
turtle.place()

end

for i = 1, todo - 1 do

turtle.down()

if turtle.detect() == true then

checkSlot()
turtle.dig()
turtle.place()

else

checkSlot()
turtle.place()

end
    end
 turtle.turnRight()
 turtle.forward()
 turtle.turnLeft()
end        
Minecraft
ComputerCraft/Feed The Beast Code
ONE WIDE STRIP THAT CANINDIAN

ComputerCraft is a mod for Minecraft that allows you to program computers called turtles to do work for you. Feed The Beast is a mod pack for Minecraft that has the ComputerCraft mod in it.

This program is a custom made program that does the simple job of making a 1 wide strip of any length. All you have to do is type (name of program) (hight).


local tArgs = {...}
local todo = tonumber(tArgs[1])
local sslot = 1

function checkSlot()

turtle.getItemCount(sslot)

while turtle.getItemCount(sslot) < 1 do

sslot = (sslot%16)+1

turtle.select(sslot)

  end
end

for i = 1, todo do

if turtle.detect() == true then
repeat
checkSlot()
turtle.dig()
sleep(0.5)
until turtle.detect() == false

turtle.place()
turtle.up()

else

checkSlot()
turtle.place()
turtle.up()

  end
end

for i = 1, todo do
turtle.down()

end