Jump to content


YuvonDovah's Content

There have been 26 items by YuvonDovah (Search limited from 10-February 22)


By content type

See this member's


Sort by                Order  

#147925 The Ctrl+V Game

Posted by YuvonDovah on 05 October 2013 - 04:03 AM in Forum Games

_____ _ _____ __ _
/ ____| | | / ____| / _| |
| | ___ _ __ ___ _ __ _ _| |_ ___ _ __| | _ __ __ _| |_| |_
| | / _ \| '_ ` _ \| '_ \| | | | __/ _ \ '__| | | '__/ _` | _| __|
| |___| (_) | | | | | | |_) | |_| | || __/ | | |____| | | (_| | | | |_
\_____\___/|_| |_| |_| .__/ \__,_|\__\___|_| \_____|_| \__,_|_| \__|
| |
|_|



#147819 Long Os - [v1.2 Released] Multitasking Multilocalized Windowed Open-source Os

Posted by YuvonDovah on 04 October 2013 - 03:00 PM in Operating Systems

There is a typo in the text near the top, second line you have put 'he ' instead of 'The'. But it's look really really good although I think you need to touch up on the art and colours, I feel they colours you use don't belong together.



#147692 Flowos (Open Source) - 13.9.27Dp

Posted by YuvonDovah on 03 October 2013 - 01:50 PM in Operating Systems

Sorry to bother but how would I implement that into my code, it's not very advanced and there are some things that i've probabley done wrong. It's the basic gui for my Os.
Spoiler



#147665 Flowos (Open Source) - 13.9.27Dp

Posted by YuvonDovah on 03 October 2013 - 12:01 PM in Operating Systems

View Postsvdragster, on 03 October 2013 - 11:47 AM, said:

View PostYuvonDovah, on 03 October 2013 - 10:19 AM, said:

No clock? I think that should be implemented!

But make the clock changeable from reallife time or ingame time ^^

Ingame time with the os.time() also maybe the day (in game), i've tried to do this but I need to get it to refresh every second and if I do that it refreshes the whole of my os screen meaning every time I press a button (in the os) it refreshes and gone; hope you might be able to figure it out though.



#147654 [Open Source] PearOS (Preview 2) - OS X Inspired OS

Posted by YuvonDovah on 03 October 2013 - 10:27 AM in Operating Systems

This puts everything i've done in computercraft to shame! It's amazing! Also I would like to ask what is the best way of learning lua?



#147653 Flowos (Open Source) - 13.9.27Dp

Posted by YuvonDovah on 03 October 2013 - 10:19 AM in Operating Systems

No clock? I think that should be implemented!



#147196 How To Refresh A Clock

Posted by YuvonDovah on 29 September 2013 - 01:07 PM in Ask a Pro

View PostEpicCenter, on 23 September 2013 - 04:55 PM, said:

You simply need to tell it to clear the top right and then redo the function if this is the case and sleep for 1 second.
How would one do that? I mean set it to refresh only the top corner?



#146292 How To Refresh A Clock

Posted by YuvonDovah on 23 September 2013 - 12:07 PM in Ask a Pro

View PostBigTwisty, on 23 September 2013 - 11:48 AM, said:

First off, it would be EXTREMELY helpful to see the rest of your code, as you may be overwriting your clock output elsewhere.

Second, it is a good idea to not hard code your screen locations, just in case your position is off or you decide to run code on a monitor.
function time()
  local time = textutils.formatTime(os.time(), true)
  local w = term.getSize()
  term.setCursorPos(w - #time + 1, 1)
  print(time)
end

3rd, you need to check the rest of your code to ensure this function is being called regularly. This is why we need to see the rest of your code.

Okay, that is done now.



#146285 How To Refresh A Clock

Posted by YuvonDovah on 23 September 2013 - 11:08 AM in Ask a Pro

Spoiler

So my problem is that when I have the time on my OS, in the top right hand of the screen in the picture, it doesn't refresh. Whenever I click it does refresh but I would like it to refresh automatically every second. I know that I can do this with the os.startTimer(3) command but am not sure how to implement it into my code and I have no idea how to use it.

function Time()
local time = os.time()
time = textutils.formatTime(time, true)
term.setCursorPos(47,1)
print(""..time)
end


Spoiler



#144853 How To Improve My Lock?

Posted by YuvonDovah on 14 September 2013 - 12:10 PM in Ask a Pro

View PostZudoHackz, on 14 September 2013 - 12:04 PM, said:

View PostCranium, on 13 September 2013 - 03:45 PM, said:

print("Unable to authenticate!/nPlease contact a system administrator!")

This would not be visible, unless you had a ridiculously laggy PC.

I realized that after I tried it which is a shame, is there a way to fix that? Also when I tried the authentication disk it didn't unlock the computer.



#144784 How To Improve My Lock?

Posted by YuvonDovah on 14 September 2013 - 02:51 AM in Ask a Pro

Thank you both very much!



#144727 Cinema

Posted by YuvonDovah on 13 September 2013 - 03:22 PM in Media

Ich auch finde ist Idee gut.

Sorry my german isn't amazing, but thats really cool i've been trying to something similar myself.



#144722 How To Improve My Lock?

Posted by YuvonDovah on 13 September 2013 - 03:02 PM in Ask a Pro

Is there a way to improve this lock code? Also how would I add a counter, so say you get it wrong 3 times it shuts down for a hour? And is there a way to stop people hacking it via a disk drive?

Lock

os.pullEvent = os.pullEventRaw
local done = false
while done == false do
  term.clear()
  term.setCursorPos(1,1)
  write("Password:")
  local password = read('*')
  term.clear()
  term.setCursorPos(1,1)
  if password == "PASSWORD" then
	done = true
  elseif password == "PASSWORD" then
		  print("Access Granted")
		  redstone.setOutput("right",true)
		  sleep(5)
		  redstone.setOutput("right",false)
		  sleep(2)
		  redstone.setOutput("back",true)
		  sleep(1)
		  redstone.setOutput("back",false)
   else
	print("Access Denied")
	sleep(2)
	term.clear()
	term.setCursorPos(1,1)
   end
end

Startup

os.run({}, "lock")



#144517 Colour Coded Cables [1.5/1.6]

Posted by YuvonDovah on 12 September 2013 - 11:50 AM in Suggestions

It's a cool idea, and don't really know why it hasn't implemented in the past.



#144281 [1.51+] Using Network Cables (for dummies)

Posted by YuvonDovah on 10 September 2013 - 01:21 PM in Tutorials

Thanks for the tutorial, I really wanted to know how to connect a monitor via wired cable.



#143998 How To Add Cc Code Into A Server

Posted by YuvonDovah on 08 September 2013 - 12:33 PM in Media

View PostLBPHacker, on 08 September 2013 - 07:33 AM, said:

View PostYuvonDovah, on 07 September 2013 - 05:48 PM, said:

-snip-
*sigh* He didn't ask what to do if he disabled the HTTP API. He stated that you should have covered the config file as well, since the HTTP API can be disabled in the config. Suppose somebody has totally no experience of CC. He watches your video, he does exactly what you do, but hell, pastebin won't work for them, since the HTTP API is not enabled by default, and said person has not enough knowledge of CC to figure that out. When you make a start-from-nothing tutorial, really start it from nothing and don't assume people who watch it know how to enable the HTTP API. Actually, enabling the HTTP API is more important than using pastebin. The usage of pastebin can be learnt in two minutes (at least it took me two minutes to learn it), while without the HTTP API pastebin and tons of other programs are worth nothing.
I'm sorry if it isn't the best tutorial I was just trying to help and to be honest I thought I was helping. I also thought HTTP API was enabled by default - and disabled on some servers - because I did nothing, I didn't have to enable the HTTP API to make it work, which would imply (on my computer at .least) it was enabled by default. Also I didn't fully understand what he said and I agree with you I should have made the tutorial showing everything



#143892 Variable Size Quarry (now with Super Ore Quarry™)

Posted by YuvonDovah on 07 September 2013 - 05:50 PM in Turtle Programs

View Postcivilwargeeky, on 07 September 2013 - 01:32 PM, said:

View PostYuvonDovah, on 06 September 2013 - 07:45 PM, said:

Is it possible to control it via rednet like making it stop with a computer, unload and such on command, just a thought and it would add a nice touch to the program.
Yeah, I was considering doing something like that and have the framework set up for it, but it just never took off. What I was planning on doing was having the computer sending a message back every time the turtle sent it a message, and it would usually be like "Good", but if you wanted, it could be "stop" or "return" or something. Now, the idea should have worked, but the whole turtle waiting for a message thing was having a bunch of trouble and I got frustrated. I will definitely consider adding it when I restructure the rednet program.

Also, on the pace of updates, I'm really sorry but Rome II is fun and school is annoying. I will attempt to schedule some time for myself to work on theses programs.
Damn you got Rome II i've been wanting that just wait for the price to drop and maybe till I get a new computer. Also is there a way to make it remember we it was and pick up where it left off after the world is closed?



#143891 How To Add Cc Code Into A Server

Posted by YuvonDovah on 07 September 2013 - 05:48 PM in Media

View PostEngineer, on 07 September 2013 - 06:30 AM, said:

View PostYuvonDovah, on 07 September 2013 - 06:17 AM, said:

I'm sorry about that but almost all other servers have outgoing internet connections for cc, and sorry if the title wasn't precise, but it works for most people.
Still, then the title is still misleading. What if I disabled HTTP in the config? Make a full tutorial, or at least change your title to pastebin tutorial or something.
Enableing http api in the computercraft config would allow pastebin to work I believe.



#143835 How To Add Cc Code Into A Server

Posted by YuvonDovah on 07 September 2013 - 06:17 AM in Media

I'm sorry about that but almost all other servers have outgoing internet connections for cc, and sorry if the title wasn't precise, but it works for most people.



#143781 How Can I Make Two Texts On A Monitor Different Sizes?

Posted by YuvonDovah on 06 September 2013 - 07:51 PM in Ask a Pro

How can I make two texts on a monitor different sizes? As in a large piece of text at the top, the title and a smaller text underneath as extra info.



#143779 Variable Size Quarry (now with Super Ore Quarry™)

Posted by YuvonDovah on 06 September 2013 - 07:45 PM in Turtle Programs

Is it possible to control it via rednet like making it stop with a computer, unload and such on command, just a thought and it would add a nice touch to the program.



#143748 How To Add Cc Code Into A Server

Posted by YuvonDovah on 06 September 2013 - 03:00 PM in Media

I had fixed the audio but i could change the volume for this video all my others are a lot better volume and yes it's basically a tutorial for pastebin but many people don't know about pastebin and want to copy and paste codes easily into servers.



#142142 How To Add Cc Code Into A Server

Posted by YuvonDovah on 28 August 2013 - 06:43 PM in Media




PasteBin: http://pastebin.com/

The Code I Used In The Video: (not working for some reason)

Sorry that it's so quiet i've fixed that now!

Please like and comment with any questions or advice.

Subscribe if you wish to see more!

Only works if your server allows outgoing internet.




#142139 Variable Size Quarry (now with Super Ore Quarry™)

Posted by YuvonDovah on 28 August 2013 - 06:35 PM in Turtle Programs

That code is AWESOME dude keep it up! It would be cool if a ladder option was built in and you could choose where to enable it like with the inverted option.



#141958 [1.51+] Using Network Cables (for dummies)

Posted by YuvonDovah on 27 August 2013 - 02:34 PM in Tutorials

Thanks Really Helpful.