Jump to content


Zer0t3ch's Content

There have been 32 items by Zer0t3ch (Search limited from 10-February 22)


By content type

See this member's


Sort by                Order  

#95405 Advanced Programs: Orefinder, Tunnel.

Posted by Zer0t3ch on 10 March 2013 - 08:21 AM in Turtle Programs

The scrolling words at the startup of the Advanced Updater, it says Advaced, not Advanced.



#10156 Modmaker

Posted by Zer0t3ch on 22 April 2012 - 06:48 AM in Programs

Sounds interesting! PM me after you update the OP with screenshots.



#8815 World Crasher

Posted by Zer0t3ch on 10 April 2012 - 04:17 PM in Programs

Interesting find!



#8814 TNT Team's programs [1.31][cc get][vandie's programs]

Posted by Zer0t3ch on 10 April 2012 - 04:17 PM in Programs

View PostGurkenmaster, on 10 April 2012 - 12:06 PM, said:

os.shutdown(nil)
or
shutdown = os.shutdown
shutdown()
Still work
I would recommend searching for os.shutdown instead of os.shutdown().

Great idea. In case he doesn't see this, I will mention it to him later.



#8813 [APIs][Programs][Utilities]Mad's Programs

Posted by Zer0t3ch on 10 April 2012 - 04:15 PM in Programs

All of these look AWESOME! I will most definitely be trying this later. These will definitely make a lot of things easier.

Also, would you be okay with me possibly implementing some of this INTO my code so that people don't have to download your APIs as well, provided I give you full credit for your work on the post and in the program? This is all theoretical right now, but please shoot me a PM and lemme know what you think.



#7478 Zer0t3ch's Programs & Tuts [1 Program - 2 zAPI Functions]

Posted by Zer0t3ch on 02 April 2012 - 04:01 PM in Programs

Am I allowed to bump? (Bump...) :)/>



#7477 [API][BIOS][Programs] Matchlighter's Programs: Fire BIOS, PVars

Posted by Zer0t3ch on 02 April 2012 - 03:55 PM in Programs

Looks awesome! +1 Rep for you!



#5836 [1.3] Security Terminal

Posted by Zer0t3ch on 24 March 2012 - 04:44 AM in Programs

Yes I am using tekkit

while true do
pullEvent = os.pullEvent()
os.pullEvent = os.pullEventRaw()
os.pullEvent = pullEvent
end
After key press it instantly crashes, I have tried multiple variations, with and without parens, and this is what it is now. Any ideas?



#5833 Cube Digger + Quarry Frame Destroyer

Posted by Zer0t3ch on 24 March 2012 - 03:53 AM in Turtle Programs

Looks cool! Might make my own little modifications and repost, with your permission, of course! :3 Anyway, looks cool!



#5832 Ironsmith123's Turtle Track Layer

Posted by Zer0t3ch on 24 March 2012 - 03:51 AM in Turtle Programs

Only his first script give him a break. IronSmith, are you new to LUA? Just wondering.



#5830 Stronghold cords finding.

Posted by Zer0t3ch on 24 March 2012 - 03:32 AM in Programs

View Postcoolblockj, on 24 March 2012 - 02:33 AM, said:

Im sorry also, i replied to that thinking you were a person that didnt know much about these forums or lua, then i looked at your other posts :(/>
My apologies

Is all cool. I'm tired right now so I'm kinda being a jackass.



#5829 Zer0t3ch's Programs & Tuts [1 Program - 2 zAPI Functions]

Posted by Zer0t3ch on 24 March 2012 - 03:30 AM in Programs

Added the LogicAPI, check it out! (As usual, still untested) :-P



#5821 [1.3] Security Terminal

Posted by Zer0t3ch on 24 March 2012 - 02:42 AM in Programs

View Postcoolblockj, on 24 March 2012 - 02:25 AM, said:

View PostZer0t3ch, on 24 March 2012 - 02:10 AM, said:

View PostEspen, on 24 March 2012 - 01:52 AM, said:

@hamish1001:
At the current state of the program, it won't actually work, since the loop doesn't contain a break-condition, i.e. it will run indefinitely.
*derp* Kinda hard to match the end's with their counterparts sometimes with non-indented code. My bad. :(/>
But it will reboot in both cases (access denied/granted), so you'd at least have to replace the reboot on "access granted" with a break.

@Kolpa:
I hope you don't mind, just tried to compress the code a little to make it more efficient.
local function clear()
  term.clear()
  term.setCursorPos(1, 1)
end

clear()
write("Kolpa s Privacy Terminal")
term.setCursorPos(2, 5)
write("Password: ")

while true do
  local pass = read("*")

  if pass == "test" then
	clear()
	write("acces granted")
	os.sleep(2)
	break;  -- Break out of loop.
  else
	clear()
	write("acces denied")
	os.sleep(2)
	os.reboot()
  end
end

Note: Didn't test it ingame, but should work. If it doesn't, give me a holler.
Cheers :)/>

You're edit looks nice. Has anyone figured out a way to make programs non-terminate-able? (not a word, I know) Without editing the actual OS?
You can set os.pullEvent to os.pullEventRaw, like this :
nos.pullEvent = os.pullEvent
os.pullEvent = os.pullEventRaw
Yourcodehere
os.pullEvent = nos.pullEvent --Resets it back to normal after you're done.
I tried out that code as you said it, exactly, it crashes and shuts down but I managed to print screen it.

http://www.zer0t3ch....03/Untitled.png



#5819 [1.3] Security Terminal

Posted by Zer0t3ch on 24 March 2012 - 02:31 AM in Programs

Cool! (BTW, your post is f'ed up)



#5818 Stronghold cords finding.

Posted by Zer0t3ch on 24 March 2012 - 02:29 AM in Programs

My apologies for that, didn't realize that. Really am sorry, I tried it out and it works most of the time! It's good, thanks.



#5814 The KJV Bible Reader v1 - The Bible in Minecraft!

Posted by Zer0t3ch on 24 March 2012 - 02:19 AM in Programs

Not to be rude, and this is a cool program at all and could have some more practical uses, but what exactly is the objective of this program?



#5812 Stronghold cords finding.

Posted by Zer0t3ch on 24 March 2012 - 02:15 AM in Programs

So, where's the program? Us coders would like to not see stuff like this in the 'Programs Library' ESPECIALLY when it is not even mildly related to ComputerCraft.

My apologies



#5811 [1.3] Security Terminal

Posted by Zer0t3ch on 24 March 2012 - 02:10 AM in Programs

View PostEspen, on 24 March 2012 - 01:52 AM, said:

@hamish1001:
At the current state of the program, it won't actually work, since the loop doesn't contain a break-condition, i.e. it will run indefinitely.
*derp* Kinda hard to match the end's with their counterparts sometimes with non-indented code. My bad. :(/>
But it will reboot in both cases (access denied/granted), so you'd at least have to replace the reboot on "access granted" with a break.

@Kolpa:
I hope you don't mind, just tried to compress the code a little to make it more efficient.
local function clear()
  term.clear()
  term.setCursorPos(1, 1)
end

clear()
write("Kolpa s Privacy Terminal")
term.setCursorPos(2, 5)
write("Password: ")

while true do
  local pass = read("*")

  if pass == "test" then
	clear()
	write("acces granted")
	os.sleep(2)
	break;  -- Break out of loop.
  else
	clear()
	write("acces denied")
	os.sleep(2)
	os.reboot()
  end
end

Note: Didn't test it ingame, but should work. If it doesn't, give me a holler.
Cheers :)/>

You're edit looks nice. Has anyone figured out a way to make programs non-terminate-able? (not a word, I know) Without editing the actual OS?



#5761 TNT Team's programs [1.31][cc get][vandie's programs]

Posted by Zer0t3ch on 23 March 2012 - 09:40 PM in Programs

Also, I would love to help on the antivirus. I like the table idea, but I don't know a lot about tables, but I could learn. Also, you can test on my server. All of us coders could attempt to create a virus that the antivirus can't protect against. Sound good? PM me and lemme know what you think of me helping and/or using my server.



#5760 TNT Team's programs [1.31][cc get][vandie's programs]

Posted by Zer0t3ch on 23 March 2012 - 09:36 PM in Programs

As for TurtleBomb, rather than making people waste a redstone torch, just use

redstone.setOutput('forward', true)



#5553 TNT Team's programs [1.31][cc get][vandie's programs]

Posted by Zer0t3ch on 22 March 2012 - 09:34 PM in Programs

You should also add a block for anything that starts with os.reboot() in the first five lines. Also, might be better not to make HOW you do it public, makes it too easy for people to work around. Knowing how you currently blocks will allow me to make my first line a comment then do os.shutdown() and your antivirus wouldn't stop it. Preventing os.reboot() would also be especially useful to prevent massive server lag on a server with multiple rebooting computers.



#5477 Zer0t3ch's Programs & Tuts [1 Program - 2 zAPI Functions]

Posted by Zer0t3ch on 22 March 2012 - 03:54 PM in Programs

@Everyone - Gonna update zAPI again soon. Currently, it mostly is just here for making ordinary every-day tasks easier, but I would like to expand, so what else do you want?



#4908 Zer0t3ch's Programs & Tuts [1 Program - 2 zAPI Functions]

Posted by Zer0t3ch on 18 March 2012 - 05:23 PM in Programs

View Postironsmith123, on 17 March 2012 - 03:02 AM, said:

I love it lol. Aww who gives a **** about this "prepositional phrase" crap! Im gonna code computer craft programs for minecraft! XD
Do you like it, is it useful? What else should I add?



#4528 Mine Manager for turtle fleet

Posted by Zer0t3ch on 16 March 2012 - 03:59 PM in Programs

Looks awesome! I will try it out with some friends on my server after school!



#4365 Zer0t3ch's Programs & Tuts [1 Program - 2 zAPI Functions]

Posted by Zer0t3ch on 15 March 2012 - 03:52 PM in Programs

I have updated zAPI to v0.2 with one new function. So far, the tunneler seems to be a bit too much like a single program to me, so should I simplify it down a little bit so it can be used a bit more flexibly in programs or is it okay the way it is? I would really like to know from the community.
Also, has anyone tried this out yet? I would like some input from the community.