Jump to content




Command Pocket Computer


12 replies to this topic

#1 LewisTehMinerz

  • Members
  • 174 posts
  • LocationMinecraft in Minecraft in Minecraft in ComputerCraft... in Minecraft

Posted 27 July 2015 - 11:44 AM

So, we have command computers, why not command pocket computers?
Again, it would be uncraftable, but use a pocket computer + command block as the recipe. A portable command computer. Also, it should use coordinate tracking so relative coordinates ( ~ ) work (I was thinking about having it placeable so relative coords would work, but that wasn't a good idea). Everyone has seen the fun of command computers, why not a pocket computer that does the same? You could make a program that can play Connect-4 on the pocket computers while it's being done in-game (rednet and a command computer can make this possible, but then that could make for some really advanced code for the rednet). There's computers (non-color) with their pocket computer counterparts, There's advanced computers (color) with their counterparts, there's command computers (color + command execution) but no pocket computer! This could make more things possible!

(I'm sorry for the wall of text :P)

~LewisTehMinerz

#2 SquidDev

    Frickin' laser beams | Resident Necromancer

  • Members
  • 1,427 posts
  • LocationDoes anyone put something serious here?

Posted 27 July 2015 - 04:20 PM

Dan says maybe. Also 5 topics below this one was an identical topic. Search does work :P.

#3 apemanzilla

  • Members
  • 1,421 posts

Posted 27 July 2015 - 06:37 PM

Wasn't there an addon that did this? Or am I getting confused...

#4 SquidDev

    Frickin' laser beams | Resident Necromancer

  • Members
  • 1,427 posts
  • LocationDoes anyone put something serious here?

Posted 27 July 2015 - 07:20 PM

View Postapemanzilla, on 27 July 2015 - 06:37 PM, said:

Wasn't there an addon that did this? Or am I getting confused...

At the bottom of the second topic there was this script. Not actually an addon but close enough. Also, congrats on 1000 posts!

Edited by SquidDev, 27 July 2015 - 07:20 PM.


#5 apemanzilla

  • Members
  • 1,421 posts

Posted 28 July 2015 - 09:28 PM

View PostSquidDev, on 27 July 2015 - 07:20 PM, said:

View Postapemanzilla, on 27 July 2015 - 06:37 PM, said:

Wasn't there an addon that did this? Or am I getting confused...

At the bottom of the second topic there was this script. Not actually an addon but close enough. Also, congrats on 1000 posts!
Ah, alright. I had seen that forum thread before but didn't remember it.

Thanks! If only you could still set custom titles at 1000 posts :(

#6 SquidDev

    Frickin' laser beams | Resident Necromancer

  • Members
  • 1,427 posts
  • LocationDoes anyone put something serious here?

Posted 29 July 2015 - 07:03 AM

View Postapemanzilla, on 28 July 2015 - 09:28 PM, said:

Thanks! If only you could still set custom titles at 1000 posts :(

I wrote a Userscript (You'll need Greasemonkey (Firefox) or Tampermonkey (Chrome)):
// ==UserScript==
// @name		 CustomTitle
// @description  Adds custom titles to people
// @author	   SquidDev
// @include	  http://www.computercraft.info/forums2/index.php?/topic/*
// @require http://code.jquery.com/jquery-latest.js
// ==/UserScript==

$(document).ready(function() {
  $('a[hovercard-ref=member]').each(function() {
	  var this$ = $(this);
	  if(this$.html() == "apemanzilla") {
		  this$.parents('div.post_wrap').find('div.author_info ul.basic_info').prepend('<li class="desc member_title">No clue what to put here.</li>');
	  }
  });
});
No, I don't normally use this :).

Edited by SquidDev, 29 July 2015 - 07:04 AM.


#7 apemanzilla

  • Members
  • 1,421 posts

Posted 29 July 2015 - 11:26 AM

View PostSquidDev, on 29 July 2015 - 07:03 AM, said:

View Postapemanzilla, on 28 July 2015 - 09:28 PM, said:

Thanks! If only you could still set custom titles at 1000 posts :(

I wrote a Userscript (You'll need Greasemonkey (Firefox) or Tampermonkey (Chrome)):
// ==UserScript==
// @name		 CustomTitle
// @description  Adds custom titles to people
// @author	   SquidDev
// @include	  http://www.computercraft.info/forums2/index.php?/topic/*
// @require http://code.jquery.com/jquery-latest.js
// ==/UserScript==

$(document).ready(function() {
  $('a[hovercard-ref=member]').each(function() {
	  var this$ = $(this);
	  if(this$.html() == "apemanzilla") {
		  this$.parents('div.post_wrap').find('div.author_info ul.basic_info').prepend('<li class="desc member_title">No clue what to put here.</li>');
	  }
  });
});
No, I don't normally use this :).

Too bad no one else will see it :P

#8 LuckyLuke

  • Members
  • 52 posts
  • LocationMinecraft

Posted 30 July 2015 - 04:13 AM

Little hint:
--[[ I'm a
Multiline
Comment
:)/>
]]--


#9 flaghacker

  • Members
  • 655 posts

Posted 30 July 2015 - 07:56 AM

View PostLuckyLuke, on 30 July 2015 - 04:13 AM, said:

Little hint:
--[[ I'm a
Multiline
Comment
:)/>/>
]]--

That's not lua, that's Janascript. It's like this:
/*
Multi
Line
Comment
*/


#10 LuckyLuke

  • Members
  • 52 posts
  • LocationMinecraft

Posted 30 July 2015 - 08:07 AM

View Postflaghacker, on 30 July 2015 - 07:56 AM, said:

View PostLuckyLuke, on 30 July 2015 - 04:13 AM, said:

Little hint:
--[[ I'm a
Multiline
Comment
:)/>/>/>
]]--

That's not lua, that's Janascript. It's like this:
/*
Multi
Line
Comment
*/

Damn, mixed it up, sorry.

#11 SquidDev

    Frickin' laser beams | Resident Necromancer

  • Members
  • 1,427 posts
  • LocationDoes anyone put something serious here?

Posted 30 July 2015 - 11:08 AM

View PostLuckyLuke, on 30 July 2015 - 04:13 AM, said:

Little hint:
/* Random multiline comment */
Userscripts require a special header section - which is what you see there. It might work with a multiline comment but I'm really not bothered - this was a fun little script I hacked together. :)

#12 HDeffo

  • Members
  • 214 posts

Posted 30 July 2015 - 09:55 PM

As stated previously above my script for them has all the normal functions of a command computer and doesn't use rednet so it is just as effective as one you would get if it was an actual item. Would still be nice if they were added for real but until then it makes for a good substitute.

#13 Konlab

  • Members
  • 595 posts
  • LocationKerbin

Posted 22 September 2015 - 01:34 PM

I support both command pocket computers and command turtles, because creative only things are just awesome





1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users