[FREE] Howdy's Hack Minigame

Decided to release on of my hacking minigames. It’s a simple script written in Vue.js (using cdn no npm/yarn needed). Resource displays multiple icons and shuffles the colors, to progress you’ll need to remember the colors of the icons in the state they were shuffled in last.

Video Preview
Try it out on Codepen

image

Use:

-- returns boolean
local success = exports['howdy-hackminigame']:Begin(3, 5000)

--Begin(icons, time)
--icons - how many icons will be displayed for the user to complete.
--time - how much time the user has to input the correct color per icon.

Download: GitHub

19 Likes

Very nice! I like that you included a Codepen link to test with :slight_smile:

2 Likes

Very nice idea, thank you!

This is cool

Very cool idea/resource! Thanks for your contribution to the community ! Hope to see more resources from you in the future.

Great release! Well done.

good soup :ok_hand:

nice minigame :slight_smile:

can u give more examples for how to use?

Wow looks so clean and smooth. Im gonna try now

Currently having an issue where it says Uncaught ReferenceError: Vue is not defined(@Howdy-hackminigame/build/main.js:10) just want to know if there’s a fix or not :slight_smile:

In the html find:
<script src="main.js"></script>

Then paste this above it:
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/3.2.30/vue.global.min.js"></script>.

Should look like this:
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/3.2.30/vue.global.min.js"></script>
<script src="main.js"></script>


Disclaimer: This script is a development version, it’ll spam your client console with some stuff :smile:

2 Likes

This resolve the freezing script! Thx!

1 Like