Difference between revisions of "Turtle.attack"
From ComputerCraft Wiki
(Undo revision 3636 by 204.186.5.98 (talk)) |
|||
| Line 9: | Line 9: | ||
|desc=Tries to attack in front of the turtle and outputs whether it worked or not. | |desc=Tries to attack in front of the turtle and outputs whether it worked or not. | ||
|code=if turtle.attack() then | |code=if turtle.attack() then | ||
| − | [[print]] ("Turtle | + | [[print]] ("Turtle attacked in front.") |
else | else | ||
| − | [[print]] ("Turtle | + | [[print]] ("Turtle could not attack.") |
end | end | ||
|output= Turtle attacked in front. or Turtle could not attack. | |output= Turtle attacked in front. or Turtle could not attack. | ||
Revision as of 07:34, 6 November 2012
| Attempts to attack in front of the turtle. | |
| Syntax | turtle.attack() |
| Returns | boolean whether the turtle succeeded in attacking forward |
| Part of | ComputerCraft |
| API | turtle |
Examples
| Tries to attack in front of the turtle and outputs whether it worked or not. | |
| Code |
if turtle.attack() then print ("Turtle attacked in front.") else print ("Turtle could not attack.") end |
| Output | Turtle attacked in front. or Turtle could not attack. |