Youtuber Comments

Posted by NeutralReiddHotel on April 29, 2018, 12:37 p.m.

Quote:
Are you even still working on this??

Quote:
I think dabr1dg3 forgot to pay his web rent and no longer has tohjo falls.

Quote:
Hey are you still working on this orrr?

Quote:
Reidd, I noticed that the Tohjo Falls website has become archived (and seems to be inactive), but is Cursed Black still being worked on? I've been a huge fan of your Lost Silver adaptation and am eagerly waiting for Cursed Black to be completed!

If you're interested at all, I'd also like to offer help for a Japanese translation anytime.

Quote:
Reidd, ¿qué tal va el proyecto? ¡Mucho ánimo!

Quote:
Is this still being worked on?

Quote:
Did Reidd die

Quote:
are all the updates part of a demo yet?

I keep seeing these on my youtube channel comments and the answer is yes, I'm still working on this daily. The biggest problem is the re-write I started last year, It's just a lot of work and I suck at programming sometimes. It makes sense, I can't always be pimpin' at this.

I am on day 13 of nocaffeine. Feelsgoodman.

Receiving item from NPC

Adds one to inventory, gives error message if inventory is full.

NPC Confirmation prompt

Asks the player a question, then the NPC has 2 preset responses depending on the answer.

Heal prompt

Asks if player wants to heal. gives 2 responses, different prompt input.

Trainer card

Added to main menu, holds badges, money, trainer name & ID as well as keeps count of how long the save file has been played for. There's also extra functions shown in this one since the trainer card is so short.

and of course, the obvious one…

the textbox!

This took forever to figure out, but I'm glad it did. The above functions actually are activated through a string. Here's what it looks like for the old man one:

Text_Feed="Ahh, I've had my#coffee now and I#feel great!%ntSure you can go#through!%ntAre you in a#hurry?@yn~001~002";

Next_String[1] = "Time is money...#Go along then.";

Next_String[2] = "I see you're using#a POKeDEX.%ntWhen you catch a#POKeMON, POKeDEX#is automatically#updated.%ntWhat? Don't you#know how to catch#POKeMON?%ntI'll show you#how to then."

And here's the item add:

Text_Feed="Hi! I work at a#POKeMON MART.%ntIt's a convenient#shop, so please#visit us in#VIRIDIAN CITY.%ntI know, I'll give#you a sample!#Here you go!@ri~001~001%ntASH got#POTION!";

The "full inventory" text is preset.

So my textbox will have functionality where you can simply add what the script/NPC needs to do and it will do it regardless of the text that's next to it. I wanted to mimic how rom hacks edit text, and I know they have to keep track of functions like this as well. Plus it's a lot easier to script the textbox text for every NPC like this when there's some NPCs that are special and need other functions. Below are all the planned functions (some changes will come soon, but I've done 3 out of the below)

Com[0]               =      "#"; //New line break
Com[1]               =      "%nt"; //New paragraph
Com[2]               =      "@yn"; //Draws yes/no prompt
Com[3]               =      "@hp"; //Draws heal/cancel prompt
Com[4]               =      "@ri"; //Gives item to player
Com[5]               =      "@tb"; //Begins trainer battle
Com[6]               =      "@wb"; //Begins wild battle
Com[7]               =      "@ci"; //Checks if item is in inventory
Com[8]               =      "@ma"; //Begins mart script/object
Com[9]               =      "@mo"; //Shows player money
Com[10]              =      "@fp"; //Flashes Pokemon portrait
Com[11]              =      "@dp"; //Flashes Pokedex entry
Com[12]              =      "@pc"; //Shows regular PC
Com[13]              =      "@pi"; //Shows player's PC
Com[14]              =      "@dl"; //Delays the game text
Com[15]              =      "@sp"; //Shows the player's party
Com[16]              =      "@ne"; //Shows the name entry
Com[17]              =      "@cb"; //Checks if player has badge
Com[18]              =      "@rc"; //Receives coins
Com[19]              =      "@sf"; //Flashes fossil portrait (no cry)
Com[20]              =      "@mom";//Does a quick heal animation
Com[21]              =      "@hl"; //Heal animation @ Pokemon Center
Com[22]              =      "@gp"; //Gives player new Pokemon
Com[23]              =      "@ps"; //Plays specificed sound with delay

Progress is good, just fairly slow.

Comments