Jump to content




HaxType -- HackerTyper in ComputerCraft!


16 replies to this topic

#1 biggest yikes

  • Members
  • 573 posts

Posted 16 March 2015 - 11:24 PM

Yeah, yeah, we all love our friend hackertyper.com so we can pretend to be fabulous hackers. Why not bring it to CC? That's what I've done. It's called "HaxType", and it's probably not the best thing made, but it's fun.

What's it do?
If you don't know what hackertyper.com does already, it lets you spam random keys and instead of the keys you type being shown, code appears. I've recreated exactly that in ComputerCraft.

Installation
Type "pastebin get ZhesVbCi haxtype" into your shell and run the file "haxtype". Spam keys to your heart's content.

Customizing
If you don't want to be stuck with Firewolf, you can modify the file "haxtype.txt" to edit what text is shown!
Furthermore, you can set it to a file directly with the command:
haxtype set <file>
For example:
haxtype set rom/programs/shell

I can't install haxtype.txt!
Enable the HTTP API, it should already be enabled when you download the program. If you have it enabled and it still doesn't work, copy the code at http://pastebin.com/raw/A7wGH3ty and paste it in the file "haxtype.txt".
If you're on 1.63, you'll have to whitelist "raw.githubusercontent.com" in your config file.
If all else fails, check your internet connection.

Screenshots
Spoiler

Changelog
Spoiler

Credits
Spoiler

Edited by Atenefyr, 19 December 2015 - 09:08 PM.


#2 Lupus590

  • Members
  • 2,029 posts
  • LocationUK

Posted 18 March 2015 - 04:26 PM

Cool, slightly useless, but cool none the less.

Edited by Lupus590, 18 March 2015 - 04:27 PM.


#3 biggest yikes

  • Members
  • 573 posts

Posted 18 March 2015 - 04:38 PM

View PostLupus590, on 18 March 2015 - 04:26 PM, said:

Cool, slightly useless, but cool none the less.
It's not supposed to be useful, but thanks! :D

#4 Creator

    Mad Dash Victor

  • Members
  • 2,168 posts
  • LocationYou will never find me, muhahahahahaha

Posted 18 March 2015 - 09:16 PM

I just wasted around 5 mins of my life, doing absolutely nothing.

Cool program

#5 biggest yikes

  • Members
  • 573 posts

Posted 18 March 2015 - 10:01 PM

View PostCreator, on 18 March 2015 - 09:16 PM, said:

I just wasted around 5 mins of my life, doing absolutely nothing.

Cool program
Thanks! :D

#6 RoD

  • Members
  • 313 posts

Posted 24 November 2015 - 02:46 AM

Cool, just one quick suggestion:
Add diferent speeds.
Instead of the constant 3 chars per type speed:
	  dex = dex + 1
	  if dex <= len then
	    write(string.sub(code,dex,dex))
	  end
dex = dex + 1
    if dex <= len then
	  write(string.sub(code,dex,dex))
    end
dex = dex + 1
    if dex <= len then
	  write(string.sub(code,dex,dex))
    end
    dex = dex + 1
    if dex <= len then
	  write(string.sub(code,dex,dex))
    end

Having a customizable speed:
speed = 4
for i = 1, speed do
	  dex = dex + 1
	  if dex <= len then
	    write(string.sub(code,dex,dex))
	  end
end


#7 Creator

    Mad Dash Victor

  • Members
  • 2,168 posts
  • LocationYou will never find me, muhahahahahaha

Posted 24 November 2015 - 05:55 AM

Or randomizable.

#8 Waitdev_

  • Members
  • 432 posts
  • LocationAdelaide

Posted 24 November 2015 - 05:57 AM

so like... this?

#9 Creator

    Mad Dash Victor

  • Members
  • 2,168 posts
  • LocationYou will never find me, muhahahahahaha

Posted 24 November 2015 - 09:58 AM

That's where thebidea came from

#10 CORGIDOG

  • New Members
  • 2 posts

Posted 26 November 2015 - 07:14 PM

doesnt work for me i downloaded the paste bin ran the program it said
haxtype.txt does not exist, creating
haxtype :39: attempt to index ? (a nil value)

#11 biggest yikes

  • Members
  • 573 posts

Posted 19 December 2015 - 09:08 PM

View PostCORGIDOG, on 26 November 2015 - 07:14 PM, said:

doesnt work for me i downloaded the paste bin ran the program it said
haxtype.txt does not exist, creating
haxtype :39: attempt to index ? (a nil value)
Fixed! Thanks!

#12 Creator

    Mad Dash Victor

  • Members
  • 2,168 posts
  • LocationYou will never find me, muhahahahahaha

Posted 19 December 2015 - 09:10 PM

I actually showed the web version to one of my friends in IT class and he fell for it. Was pretty fun.

#13 LeDark Lua

  • Members
  • 369 posts
  • LocationLeLua

Posted 25 December 2015 - 10:00 PM

Forgot one thing: deleting stuff, I know its unnecessary but still, would be cool to have, or you could randomize some errors for the user to have and then if he saw it, he could delete it and rewrite the code :D And at the end error count :)

EDIT: Hellah awesome!

Edited by LeDark Lua, 25 December 2015 - 10:02 PM.


#14 D4rkSol1tud3

  • Members
  • 5 posts

Posted 27 December 2015 - 10:39 AM

This is pretty cool, would be nice if it maintained the color highlighting of code in the advanced computer.

#15 Creator

    Mad Dash Victor

  • Members
  • 2,168 posts
  • LocationYou will never find me, muhahahahahaha

Posted 27 December 2015 - 10:40 AM

View PostD4rkSol1tud3, on 27 December 2015 - 10:39 AM, said:

This is pretty cool, would be nice if it maintained the color highlighting of code in the advanced computer.

Highlighting like edit?

#16 D4rkSol1tud3

  • Members
  • 5 posts

Posted 27 December 2015 - 07:46 PM

View PostCreator, on 27 December 2015 - 10:40 AM, said:

View PostD4rkSol1tud3, on 27 December 2015 - 10:39 AM, said:

This is pretty cool, would be nice if it maintained the color highlighting of code in the advanced computer.

Highlighting like edit?

Yeah but I think it would be complicated to do

#17 Creator

    Mad Dash Victor

  • Members
  • 2,168 posts
  • LocationYou will never find me, muhahahahahaha

Posted 27 December 2015 - 07:51 PM

View PostD4rkSol1tud3, on 27 December 2015 - 07:46 PM, said:

View PostCreator, on 27 December 2015 - 10:40 AM, said:

View PostD4rkSol1tud3, on 27 December 2015 - 10:39 AM, said:

This is pretty cool, would be nice if it maintained the color highlighting of code in the advanced computer.

Highlighting like edit?

Yeah but I think it would be complicated to do

It would not. It would be like the edit highlighting engine. Literally like it.





1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users