Jump to content


rickydaan's Content

There have been 45 items by rickydaan (Search limited from 30-March 23)


By content type

See this member's


Sort by                Order  

#144483 [1.6.4/1.57][creative][whitelist] "[a][p][i]" - The One Of A Kind

Posted by rickydaan on 12 September 2013 - 10:00 AM in Servers

IGN: rickydaan
How much would you rate yourself as a person (1/10): 8



#144476 [Openpheripherals] How To Use $$ Commands?

Posted by rickydaan on 12 September 2013 - 09:33 AM in Peripheral Help and Discussion

In OpenPheripherals, when you wear glasses, you can have commands. But how do I make these?



#132099 Webinterfaces From Kilobyte's Peripherals

Posted by rickydaan on 08 July 2013 - 07:03 AM in Tutorials

JSONAPI + this.peripheral (Websockets) + Minecraft + Bukkit + CC ==

COMPUTERCRAFT SERVER MANAGEMENT PROGRAM :D



#122506 [WIP] Pokemon Ruby Remake using CCLights2

Posted by rickydaan on 01 June 2013 - 02:55 AM in General

This Is Amazing! You inspired me to make a game using this, but how do you want to do the controls?



#122502 Button API with click handling, click animations, single use buttons, synchro...

Posted by rickydaan on 01 June 2013 - 02:16 AM in APIs and Utilities

Are you really copyrighting a ComputerCraft lua script? I've never seen this before. I dont really get the point of copyrighting a CC Script. Of course, some things are copyrighted but this? I think this goes to far. If everyone would put copyrights on their scripts we cant release anything, because it was made before.

Anyways, it looks good.



#120135 [IDEA] What about a PHP Based Minecraft / CC Server?

Posted by rickydaan on 23 May 2013 - 11:23 AM in General

I will look into this by tomorrow. I might be able to figure out how this all works. I hope this works and that we can use web-hostings as our server hosts! Maybe we are able to write plugins in PhP / Javascript!



#120131 [IDEA] What about a PHP Based Minecraft / CC Server?

Posted by rickydaan on 23 May 2013 - 11:16 AM in General

So, if we would be able to collect some good programmers we might be able to use PhP and Javascript to make our own server, hosted on a website. As far as i know Minecraft works with sockets ect. and im thinking: Cant we receive and send these connections, making a mod and a site?
I'm just started on Java so i dont know a lot about these connections.

- Rickydaan



#69013 Hey guys, check out my new site and forums!

Posted by rickydaan on 04 January 2013 - 11:07 PM in General

Sorry if you feel blamed, but personally I hate sites such as Webs. When I want to make a website I am going to program it myself. It may take a while but you can become proud of yourself.

Drag'nDraw aren't my friends; program it yourself and you could make users upload whole program files WITHOUT you.



#67028 BustedOS V 1.1.0 [Looking for bug finders!] [Color]

Posted by rickydaan on 01 January 2013 - 05:30 AM in Operating Systems

Sigh... Not yet another OS? This seems just a simple file browser with a alert system. Too many people calling their program a OS

If this is a OS, then IRL there would be billions of OS's... PLEASE people, learn the difference between a program and a OS.



#63633 [CommandBlock] More "getters"

Posted by rickydaan on 24 December 2012 - 01:50 AM in Suggestions

Hey!

When you make a adventure map with CC, you will need some more functions, like handle names in the PC, so could you add something like "peripheral.getPlayer( XXX )" (XXX = nearest, all, random, parameters like the real CC blocks?). This will make these things soo easy

@-[ Rickdaan



#63630 ComputerCraft 1.48 has been released!

Posted by rickydaan on 24 December 2012 - 01:38 AM in General

Add a Command Block explanation please?



#63629 [1.4.8][CommandBlocks] How to?

Posted by rickydaan on 24 December 2012 - 01:33 AM in Ask a Pro

Hey, i was wondering how to use the new Command Block api, as i can't find the functions


@-[ Rickydaan



#62847 Luaforge Pre2: Write Forge Mods In Lua!

Posted by rickydaan on 21 December 2012 - 11:36 PM in General

Any more progress?



#60035 Luaforge Pre2: Write Forge Mods In Lua!

Posted by rickydaan on 16 December 2012 - 12:40 AM in General

Yeah



#60002 [READ] Edited read function to be able to receive Rednet Messages.

Posted by rickydaan on 15 December 2012 - 10:45 PM in Ask a Pro

yeah, but i made my own read function! So sorry :3



#59307 [READ] Edited read function to be able to receive Rednet Messages.

Posted by rickydaan on 14 December 2012 - 01:44 AM in Ask a Pro

Hello Everyone!

I got a quick question. I need a read function so i can use it in a parallel function to receive rednet messages. Thank you VERY much if i can have this function without needing to put credits or something :3

Rickydaan



#59306 1lann's Rescue Disk/Antivirus (v0.5)

Posted by rickydaan on 14 December 2012 - 01:41 AM in Programs

To prevent errors, add at the top of the script:

if http == false then print("HTTP API required. Please change this in the config.") error() end

Might help you :P



#59300 Luaforge Pre2: Write Forge Mods In Lua!

Posted by rickydaan on 14 December 2012 - 12:46 AM in General

What will be the average date of the entities system. Also, please add more functions to items, so you can select what it does (item.setMiningSpeed( <SPEED>, <ITEMVAR> ), item.setDamage( <DMG>, <ITEMVAR> ), item.setDurability( <Dur>, <Itemvar>)
On this way you can make new pickaxes. or make new swords, or even multitools!

Rickydaan



#58808 ALLBIOS - An actually-protective BIOS replacement.

Posted by rickydaan on 12 December 2012 - 05:47 AM in Programs

Awesome! Keep going on.



#57721 [API] Scroll menu -How to make more "Pages"

Posted by rickydaan on 08 December 2012 - 09:26 PM in Ask a Pro

I dont really understand that, the selection is fine, but if theres space for only 5 entries, and you got 10 entries, then how to make it scroll?



#57538 [API] Scroll menu -How to make more "Pages"

Posted by rickydaan on 08 December 2012 - 05:50 AM in Ask a Pro

Hello!

I've got a question: At this code, when there are more entries then possible (like you got 9 lines left and got 16 selections to list) how to make it scroll in different "pages"

function menu( table )
 local selected = 1
 local nx,ny = term.getCursorPos()
 local stop = false
 while not stop do
 for _,content in ipairs(table) do
  term.setCursorPos(nx,ny+_-1)
  if _ == selected then print("-> "..content)
   else
   print("   "..content)
  end
 end
  event,char = os.pullEvent()

  if event == "key" and char == 208 then if selected ~= #table then selected = selected+1 end end
  if event == "key" and char == 200 then if selected ~= 1 then selected = selected-1 end end 
  if event == "key" and char == 28 then stop = true return table[selected] end
 end
end

Thank you!
Rickydaan



#57534 [GAME] Shipper - Become a space pionere! [v1.2]

Posted by rickydaan on 08 December 2012 - 05:40 AM in Programs

Error on line 396



#56935 Luaforge Pre2: Write Forge Mods In Lua!

Posted by rickydaan on 06 December 2012 - 03:38 AM in General

Your domain has expanded and OMFG Peripheral and Entities OMFG Man u are AWESOME dude.
There is one small thing: Build 58 (A recommended one) is incompatible with Computercraft... eh?



#55870 [MC 1.2.5 | CC 1.33/1.4] Digital Rail Reader. Monitor those carts!

Posted by rickydaan on 02 December 2012 - 02:22 AM in Peripherals and Turtle Upgrades

Update please?



#55868 [CC: 1.48] CCLan 1.2, lan cables!

Posted by rickydaan on 02 December 2012 - 02:19 AM in Peripherals and Turtle Upgrades

Im having that problem on other things too, Ben