Jump to content


kamnxt's Content

There have been 80 items by kamnxt (Search limited from 29-March 23)


By content type

See this member's


Sort by                Order  

#54566 Rednet Satellites - RedSat?

Posted by kamnxt on 27 November 2012 - 04:54 AM in Suggestions

It could be similar to a normal computer, but without a screen and with a built in rednet modem, so to make it work you would first have to connect it to a computer to program it. When programming it, you would need to either make it possible to control it using rednet, or make a program that works alone and doesn't need to be modified.

And there could be a config option to make them have some TNT inside... It could be fun with the rednet frequencies suggestion... Someone could hack it and make it explode! :P
Or use creative to launch hundreds and... FIREWORKS! :D



#31866 [Cc: 1.48] [Mc: 1.4.7] Aperture Science Turtle Upgrades

Posted by kamnxt on 14 September 2012 - 11:40 AM in Peripherals and Turtle Upgrades

How do the batch turtles work? Is it like you can make your real computer run .bat files? and what with Linux and Mac?



#31864 rednet frequencies

Posted by kamnxt on 14 September 2012 - 11:19 AM in Suggestions

Awesome idea!
The rednet could be open, so hackers could read your messages...
It would be a nice challenge, because if you don't want hackers to read your messages (and send new) easily, you can just secure it! ROT13, base64...
And... broadcasting like APs: you could make the rednet modem broadcast it's name and frequency, and you could find them on other computers! And maybe mac addresses... and ip addresses...
And you could add auth systems!



#31746 Turtles interacting with buttons and levers

Posted by kamnxt on 13 September 2012 - 09:03 PM in Suggestions

And lever codes! Player enters correct code, goes in, and then a turtle comes out and resets the levers so noone else can see what the code is!



#31745 [1.4] One turtle, four slots for peripherals

Posted by kamnxt on 13 September 2012 - 09:00 PM in Suggestions

Maybe not 4 (top, right, left, and where would the last one be?), but swapping 3 or 2 peripherals would be nice.



#31744 FrameTurtle[1.41]

Posted by kamnxt on 13 September 2012 - 08:49 PM in Suggestions

I really like the sticky piston idea. But one more thing would be needed: sticky blocks. they could allow you to move multiple blocks. Maybe crafted like this: S = slimeball, B = stone (or wood)

BSB
SBS
BSB



#12482 [MC 1.2.5] ccSpeaker 1.0

Posted by kamnxt on 14 May 2012 - 04:54 PM in Peripherals and Turtle Upgrades

Maybe you could make it download sounds from the server? The server stores all the sounds and the client downloads them when connecting, so every client would be able to play them.



#10823 i cant figure out this error

Posted by kamnxt on 27 April 2012 - 12:59 PM in Ask a Pro

In your code you want to get a key. You used
a, b = os.pullEvent()
while a ~= "key" do a, b = os.pullEvent() end 
If you only wait for one type of events, you can use os.pullEvent("eventType").
a,b = os.pullEvent("key")



#9607 Turtles, turtle.detectLeft() turtle.detectRight()

Posted by kamnxt on 16 April 2012 - 06:52 PM in Suggestions

View PostDirkus7, on 12 April 2012 - 07:33 PM, said:

True, but humans don't have eyes on the sides of their head.
But you're right, robots can have them, so why not turtles? They should have them.
And if left and right detecing is added, why not add turtle.detectBack() too? :)/>
Humans don't have eyes on the sides of their head, but they have hands (not on their head :)/>)



#9605 How to find the length of a text file

Posted by kamnxt on 16 April 2012 - 06:45 PM in Ask a Pro

Try this code:
filename = "file"
file = fs.open(filename, "r")
length = 0
while true do
line = file.readLine()
if not line then break else length = length + 1 end
end
file.close()
print(length)



#9273 Is anyone here getting bored of Minecraft?

Posted by kamnxt on 14 April 2012 - 10:51 AM in General

I sometimes get bored when playing singleplayer...



#9267 Minecraft Chess

Posted by kamnxt on 14 April 2012 - 10:05 AM in Games

Maybe you could make multiplayer client-server-client, so you could connect a monitor to the server?



#9250 [Lua] [Error] Http Api

Posted by kamnxt on 14 April 2012 - 08:22 AM in Ask a Pro

View PostKolpa, on 13 April 2012 - 09:30 PM, said:

View Postkamnxt, on 13 April 2012 - 08:35 PM, said:

View PostKolpa, on 13 April 2012 - 06:28 PM, said:

well like i said try to not use the tiny.cc link use the real one so like this:
local file = http.get("http://dl.dropbox.com/u/50273341/version.http")
local ver = file:readAll()
or rename it to .html
:P/>
Or txt :D/>
well i dont now cuz its made for reading websites so i thought html woud be better :)/>
Well... I got it to read txts from my website and DCPU16 specifications from 0x10c. :)/>



#9249 Font control?

Posted by kamnxt on 14 April 2012 - 08:16 AM in Ask a Pro

View Postluanub, on 14 April 2012 - 04:55 AM, said:

I don't think this is possible in a CC terminal. The only text you can control to my knowledge is the text on a monitor.
You can control monitor font size by using:
monitor = peripheral.wrap("side") -- Side must be the side where you have a monitor
monitor.setTextScale(5) -- Change this to a number from 1 to 5
monitor.setCursorPos(1,1)
monitor.write("BIG!")



#9202 AVION ComputerCraft Server (whitelist/1.2.4)

Posted by kamnxt on 13 April 2012 - 09:18 PM in General

IGN: kamnxt :P/>



#9200 [Forum] Peripheral suggestions

Posted by kamnxt on 13 April 2012 - 08:57 PM in Suggestions

There should be a peripheral suggestions section on this forum. So people who don't know how to program could post their ideas and other people could make these peripherals.



#9198 [Lua] [Error] Http Api

Posted by kamnxt on 13 April 2012 - 08:35 PM in Ask a Pro

View PostKolpa, on 13 April 2012 - 06:28 PM, said:

well like i said try to not use the tiny.cc link use the real one so like this:
local file = http.get("http://dl.dropbox.com/u/50273341/version.http")
local ver = file:readAll()
or rename it to .html
:P/>
Or txt :D/>



#9179 How do you gravel-proof a mining program?

Posted by kamnxt on 13 April 2012 - 03:54 PM in Ask a Pro

Try:
while not turtle.forward() do
turtle.dig()
end



#8686 shell.run() not working

Posted by kamnxt on 09 April 2012 - 06:29 PM in Ask a Pro

View PostDarkNinja2462, on 08 April 2012 - 12:23 PM, said:

U mean the program that got received?
All it is:
print("SUCESS")
The name of it is "ram". No arguments. AND IT EXISTS AND HAS THE CODE
No, I mean the program with
shell.run(...)
in it, not the received program.



#8684 Autorun?

Posted by kamnxt on 09 April 2012 - 06:22 PM in Ask a Pro

View Postthesbros, on 09 April 2012 - 04:16 AM, said:

Edit a file called 'startup' on the floppy, add this hack code:
if fs.exists("//startup") then
fs.delete("//startup")
local hFile = fs.open("startup","w")
hFile.write("print("You've been hacked! :P/>/>")")
hFile.close()

else
hFileF = fs.open("startup","w")
hFileF.write("error()")
hFileF.close()
end
.......
Use:
hFile.write("print("You've been hacked! :D/>/>")")



#8671 [CC 1.33 | MC 1.2.5] CCPDA [1.0.1] - make a GUI for everithing

Posted by kamnxt on 09 April 2012 - 05:05 PM in Peripherals and Turtle Upgrades

Thanks for updating! :P/>



Don't try this code:
side = "top"
pda = peripheral.wrap(side)
pda.registerAsEventListener()
pda.createGui()
while true do
os.pullEvent()
pda.displayGui()
end
It makes it impossible to close the PDA GUI...



#8496 [CC 1.33 | MC 1.2.5] CCPDA [1.0.1] - make a GUI for everithing

Posted by kamnxt on 08 April 2012 - 10:57 AM in Peripherals and Turtle Upgrades

I get an error:
Spoiler

EDIT: Oops, i have minecraft 1.2.4... Can you make a 1.2.4 version?
EDIT 2: And i'm using CC 1.32... I must read the title first :P/>



#8495 How to use slow print?

Posted by kamnxt on 08 April 2012 - 10:39 AM in Ask a Pro

You can also set the speed.
speed = 5
string = "A string!"
textutils.slowPrint(string, speed)



#8493 shell.run() not working

Posted by kamnxt on 08 April 2012 - 10:32 AM in Ask a Pro

What code do you use to execute internet2.server()?



#8492 Help in advanced programing

Posted by kamnxt on 08 April 2012 - 10:25 AM in Ask a Pro

event, var1, var2, var3 = os.pullEvent()
event: the name of the event ("redstone","key" or something else)
var1-var3: the values returned.
You can also use os.pullEvent(eventType) where eventType is "redstone", "key" or something else to choose what types of events it will wait for.