Jump to content


Falco's Content

There have been 33 items by Falco (Search limited from 10-February 22)


By content type

See this member's


Sort by                Order  

#64320 LUA HELP

Posted by Falco on 26 December 2012 - 02:28 AM in Ask a Pro

I cant seem to work out how to print text to a monitor.... please help.....



#64244 LUA HELP

Posted by Falco on 25 December 2012 - 09:17 PM in Ask a Pro

omg im derped lool i forgot the () thanks man :)



#64235 LUA HELP

Posted by Falco on 25 December 2012 - 08:30 PM in Ask a Pro

I'm stuck on this peice of code I'm trying to use to print test onto a monitor like alerts and so forth.


But so far i have this and even this dont work :( ......

function testprint
    print("TesTING!...1...2...3...")
end

shell.run("monitor", "right", testprint)
 



#63579 Please help its annoying me!

Posted by Falco on 23 December 2012 - 11:55 PM in Ask a Pro

Thanks for the help guys i relised what the problem was i was saving it to the wrong file so changes i was making wasnt changing when i ran it on the PC HERP A DERP DERP!



#63558 Please help its annoying me!

Posted by Falco on 23 December 2012 - 09:31 PM in Ask a Pro

WAIT!!!! im stil getting an error on line 6..... the "=" is expected...



#63557 Please help its annoying me!

Posted by Falco on 23 December 2012 - 09:29 PM in Ask a Pro

View PostMikk809h, on 23 December 2012 - 09:27 PM, said:

All apis, requirres two () parantheses after the function.it tells you, that it think turtle.dig is a variable, but there is no variable in it..

Just remember the parantheses in the end of all your turtle commands.

I can't belive i missed those... DERP delete this post if needed its a waste of time and thank you very much my good sir :)



#63555 Please help its annoying me!

Posted by Falco on 23 December 2012 - 09:10 PM in Ask a Pro

Okay first off thanks for looking at my post, okay I'm trying to avoid the "LONG" turtle commands for my programs so I decided to create functions insted, example:
function digforward()
turtle.dig
turtle.forward
turtle.digUp
end

Now I'm new to ComputerCraft and I cant understand why this wouldn't work...?

Heres my full code thats in my file currently and im getting the error: '=' expected on line 6.

Spoiler



#62827 Moving Objects!

Posted by Falco on 21 December 2012 - 10:12 PM in Ask a Pro

View PostOrwell, on 21 December 2012 - 09:09 PM, said:

View PostFalco, on 21 December 2012 - 07:38 PM, said:

View Postcmurtheepic, on 21 December 2012 - 07:35 PM, said:

*snip*
Yeah I wanted to ride it.... lol....

So is there anyway I can make a ridable machine? I've seen ships and all that all over the internet...
Those are usually made using RedPower frames. I'm not aware of techniques using turtles that can achieve this.

Thanks Orwell, I guess ill have todo some more research on this after i get back from court lool



#62826 [MC 1.2.5 / CC 1.4.1] CCPortable - And not even overpowerd

Posted by Falco on 21 December 2012 - 10:07 PM in Peripherals and Turtle Upgrades

im finding it very hard to understand exactly what this does... is it a computer controller? is it a computer viewer?

please reply fast it looks great but i dont want to install if im never going to use it... :)



#62787 Moving Objects!

Posted by Falco on 21 December 2012 - 07:38 PM in Ask a Pro

View Postcmurtheepic, on 21 December 2012 - 07:35 PM, said:

it depends on the structure you are trying to make i mean if it is just 3x2x1, 3x3x3, or 2x2x2 i cold be done by turtles removeing blocks moving placing the blocks and then moving again and repeating but if you want to ride it well then no. sorry hope i helped

Yeah I wanted to ride it.... lol....

So is there anyway I can make a ridable machine? I've seen ships and all that all over the internet...



#62785 Moving Objects!

Posted by Falco on 21 December 2012 - 07:32 PM in Ask a Pro

I want to make lets say a car, can i use turtles to move the "car" as a whole object, even though it would be made of more than one block...?



#62782 Turtle Farm

Posted by Falco on 21 December 2012 - 07:20 PM in Ask a Pro

I'm also new to LUA, but this might work.Let me know. :)

num = turtle.getItemCount(3)
while num ~= 32 do
  turtle.place()
  turtle.select(2)
  turtle.place()
  turtle.select(1)
  turtle.dig()
else
print("Wheat has been collected!") -- or whatever you want it to say when its full.
end

or...

num = turtle.getItemCount(3)
while num ~= 32 do
  turtle.place()
  turtle.select(2)
  turtle.place()
  turtle.select(1)
  turtle.dig()
else
if num ~= 32 then
print("Wheat has been collected!") -- or whatever you want it to say when its full.
end
end

Maybe someone could vouch this...?



#62778 UGSD! - New Program

Posted by Falco on 21 December 2012 - 06:58 PM in Turtle Programs

UPDATED VERSION AVAILABLE! Version 0.2



#62768 UGSD! - New Program

Posted by Falco on 21 December 2012 - 06:12 PM in Turtle Programs

View Postbowman70, on 21 December 2012 - 05:32 PM, said:

whats the problem with the 3x3 cuz all i could see from the code was a turtle.dig down and turtle.dig didnt have enough spaces

Enough spaces....?

EDIT* rewriting it now! also going to add comments. :)



#62748 UGSD! - New Program

Posted by Falco on 21 December 2012 - 05:11 PM in Turtle Programs

View PostTheOriginalBIT, on 21 December 2012 - 12:53 PM, said:

Why are you telling me as well as yourself, as though it were me and someone else, to get back onto topic? o.O

I dont know lool... im a n000000000b!! lool

BACK ON TOPIC! :ph34r:



#62567 Optimized Mining Turtle (with ASTU)

Posted by Falco on 21 December 2012 - 10:33 AM in Turtle Programs

View PostAukeXI, on 18 December 2012 - 10:38 AM, said:

I love it, but would you mind putting in a variable length of the tunnel, or is this waaaaay too complicated?
I'm new to this forum so excuse me if i ask stupid questions.
This can be achieved by using a variable and "io.read()".



#62565 Tree Feller program

Posted by Falco on 21 December 2012 - 10:26 AM in Turtle Programs

I like the concept and im currently developing a tree farmer...



#62553 UGSD! - New Program

Posted by Falco on 21 December 2012 - 09:54 AM in Turtle Programs

Lol this has gone way off topic. ONTOPIC PEOPLE



#62368 UGSD! - New Program

Posted by Falco on 21 December 2012 - 01:54 AM in Turtle Programs

View PostTheOriginalBIT, on 21 December 2012 - 01:52 AM, said:

View PostFalco, on 21 December 2012 - 01:44 AM, said:

View PostTheOriginalBIT, on 21 December 2012 - 01:38 AM, said:

Well done. Its good to see that you have finally got it working :)

Thank you friend... :ph34r:

ninja, why ninja? :P

I DONT KNOW MAN JUST LEAVE ME ALONE YOUR A BULLY!!! AND MY DADS GONNA KICK YOUR ASS BUDDY :lol: :ph34r:



#62363 UGSD! - New Program

Posted by Falco on 21 December 2012 - 01:44 AM in Turtle Programs

View PostTheOriginalBIT, on 21 December 2012 - 01:38 AM, said:

Well done. Its good to see that you have finally got it working :)

Thank you friend... :ph34r:



#62354 UGSD! - New Program

Posted by Falco on 21 December 2012 - 01:30 AM in Turtle Programs

UGSD stands for "Underground Shaft Digger".

A brief discription:

UGSD, is a powerful program which will help you achive the best
underground tunnels with little work, this is great for joining one base to another without
having to leave either buliding, or connecting your underground lair to an outpost, or simply
just creating a connection of underground tunnels for transporting goods or people.

Features:
  • Two preloaded tunnel sizes (2x2, 2x3, 3x3).

  • Custom length of tunnel, in meters.

Planned features:
  • Torch placement system.
Screenshots:
Spoiler

Download!
Spoiler

Change Log! READ IT!:
Spoiler

Please Note: This is the first program I've EVER made for release so be nice guys. :)



#62294 LUA HELP!

Posted by Falco on 20 December 2012 - 10:56 PM in Ask a Pro

View PostTheOriginalBIT, on 20 December 2012 - 10:53 PM, said:

the first line is version = 0.1 BETA

make it

version = "0.1 BETA"

DUDE I FUCKING LOVE YOU!!!!

I knew i shoul dof just PM'ed you in the first place :)



#62289 LUA HELP!

Posted by Falco on 20 December 2012 - 10:52 PM in Ask a Pro



I'm also using CC-EMU.

heres a screenshot of the error.....
Spoiler



#62277 LUA HELP!

Posted by Falco on 20 December 2012 - 10:30 PM in Ask a Pro

Please I cant work out whats wrong with this peice of code....

function clear()
shell.run("clear")
print("UGSD (Underground Shaft Digger). Running version:" .. version)
print("--------------------------")
print("")
end

I'm getting an "=" expected on the first line but no matter how many "=" I put there it dosn't work. :(



#59656 Loop thats user defined

Posted by Falco on 15 December 2012 - 03:29 AM in Ask a Pro

View PostTheOriginalBIT, on 15 December 2012 - 01:50 AM, said:

View PostFalco, on 15 December 2012 - 01:41 AM, said:

View PostTheOriginalBIT, on 14 December 2012 - 08:11 PM, said:

View PostFalco, on 14 December 2012 - 08:07 PM, said:

Wow thank you very much for this information, I'll be sure to read it untill it sticks in my head... YOU ARE A GOD!!!
No seriously thank you very much. Is there anyway I can give rep or anything on this forum?

Haha, no problems, anytime, seriously, just PM me (PM through profiles).

Yes there is a way to give rep. As to how, that is something I don't know how to do. I know that there is the "Vote this post up" green arrow. And I think there may be a "star rating" thingy on profiles (Click the persons photo).

Thanks, I'll will try my hardest to give you REP of some sort, you are a fine addition to this very helpful community. :)

Why thank you kind sir or madam :)

Sir :) :P