Skip to content
Sign UpLog In
Profile icon

Gale King

Hacker
@Nanowrimoijk
Yo! You can call me Glace, I like pokémon.
  • COTD calendar

    Cover page
    Made with Node.js
    Recent comments (0)
  • pokemon ruby 2.0

    Cover page
    Made with Ruby

    a custom Pokemon battle simulator built in ruby ;)

    Recent comments (4)
    AUnoReverseCard
    AUnoReverseCard
    2 years ago

    y is there butterfree but not beedrill????? lol nice game

Repls
Community
Nanowrimoijk
Nanowrimoijk
shared a Post
2 years ago
Ruby repl_db
I realized that there wasn't a repldb client for ruby yet, not sure if this qualifies as one, but if anything it makes repldb easier to use. All inst
ruby repl_db
Ruby
DynamicSquid
DynamicSquid
Ooh, nice! You don't see a lot of Ruby projects on here2 years ago
alanchen12
alanchen12
cool lol2 years ago
Zavexeon
Zavexeon
Nice!!2 years ago
Nanowrimoijk
Nanowrimoijk
shared a Post
3 years ago
Ever need a stupid name for your pokémon or a random character in a story your writing? No? Me neither, but that didn't stop me from making this progr
name generator
Node.js
Nettakrim
Nettakrim
"muk" wow these really are like pokemon names!3 years ago
ironblockhd
ironblockhd
haha these names actually are like pokemon names3 years ago
Nanowrimoijk
Nanowrimoijk
shared a Post
3 years ago
So, I've been building a game for a while, and one of the hardest things for me was building the maps, so I started on this project. It's still not as
map engine
Node.js
mwilki7
mwilki7
all rise for the national anthem image3 years ago
Nanowrimoijk
Nanowrimoijk
shared a Post
3 years ago
A simple text-based game I made with @Eddiemundo7
game?
Node.js
Nanowrimoijk
Nanowrimoijk
shared a Post
4 years ago
I added a whole lot to the engine, and it can do a lot more now, from using skills in battle to inventories. Check it out! The instructions are inside
aceprogramer
aceprogramer
Pretty cool game engine. It works great 4 years ago
Nanowrimoijk
Nanowrimoijk
shared a Post
4 years ago
Can we get a console clear command for JavaScript? It would be really nice especially since I am making a text-based game engine and i would like it
vedprad1
vedprad1
Try console.clear();4 years ago
Nanowrimoijk
Nanowrimoijk
shared a Post
4 years ago
This is my second repl I'm sharing on here and I hope it will be used at least a little, I give to you RPG Maker CE beta. For those of you not famili
rediar
rediar
Cool4 years ago
Nanowrimoijk
Nanowrimoijk
shared a Post
4 years ago
I was bored so i made this, I might add to it in the future but it isn't anything serious. How To Use Nano.js comes with only a few functions to try
Nanowrimoijk
Nanowrimoijk
shared a Post
4 years ago
wondering how to set up a JSON database and how to read it in JS
heyitsmarcus
heyitsmarcus
First off, great question! I believe you are talking about NodeJS, just given some of your repls in your profile, so I'm going to show a solution that I use (and love) in NodeJS. A great JSON database is NeDB which makes it a piece of cake to work with JSON data. It is almost a duplicate of MongoDB which means that it is a NoSQL database. You can save, load, query, etc. all kinds of data. Here's a simple example of storing some JSON data into the database and then retrieving it: https://repl.4 years ago
Nanowrimoijk
Nanowrimoijk
shared a Post
4 years ago
this is my game, probably wont win but thought id submit anyways, i added some easter eggs, so try random things to find them! https://guess-the-numbe
Nanowrimoijk
Nanowrimoijk
shared a Post
4 years ago
I would like to know how to use express if you have any suggestions please, comment them down below
Vandesm14
Vandesm14
Having some positive experience with Nodejs, I will first ask the most important question: What is your skill level with Javascript? And I don't mean A+ or 6.5, I mean what programs have you made that you are proud of, what problems or questions do you have with JS? Nodejs is just javascript, but with a bit more complex functions and thought behind it. Not saying it's hard, just saying it will be a bit different. First of all, you'd need some idea of how a web server works. The basics always sh4 years ago
John_WardWard
John_WardWard
Use this codecademy course: https://www.codecademy.com/learn/learn-express4 years ago
Nanowrimoijk
Nanowrimoijk
shared a Post
4 years ago
if you try to get diferent walls for your faction if you look at your faction it will show that you have the walls that you bought but when you try to
Nanowrimoijk
Nanowrimoijk
shared a Post
4 years ago
minecraft factions but texted based! if you have any feedback good or bad will be appreciated!
Nanowrimoijk
Nanowrimoijk
shared a Post
4 years ago
so i have this class called Player and when a function is called i want it to create a new object any suggestions? also you will have to play the game
HappyFakeboulde
HappyFakeboulde
Can you be a bit more specific and give a link to what you've already tried?4 years ago
HappyFakeboulde
HappyFakeboulde
Can you be a bit more specific and give a link to what you've been trying so far?4 years ago
Nanowrimoijk
Nanowrimoijk
shared a Post
4 years ago
https://repl.it/@Nanowrimoijk/NavyblueMuffledDatalog (line 88) so i want Item to be added to inventory amount number of times but i cant get it to wo
Geocube101
Geocube101
You could use a for loop to add the same element over and over until the loop is completed. `for (a=0;a<amounttoadd;a++) { inventory_array.push(item); }`4 years ago