RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
[request] input text

0 Members and 1 Guest are viewing this topic.

***
Rep:
Level 82
We learn by living...
instead of input number, input text, similar to the name change thing. Would be used for assigning non numerical passwords, answering riddles, and so forth.

I seem to recall seeing something like this somewhere.

******
Rep:
Level 91
Just make a character which isn't in the party and never will be and all the user input will become it's name which you could then use to check whatever you want.
holy shit my sig was big!

***
Rep:
Level 82
We learn by living...
well I thought of that but I can't figure out how to store those temp names in multiple variables. I want to have the ability to store lists of "input" values.

******
Rep:
Level 91
Well if memory serves you can make as many characters as you wish.
just treat each of them as a variable.
If you want to know the password entered for X, go to say character 8, if you want to check the answer to riddle 10a go to character 201.
Really as simple as that.
holy shit my sig was big!

***
Rep:
Level 82
We learn by living...
ok, this is what I got:

Code: [Select]
@>Show choices: Memorize, Recall
 : When [Memorize]
 @>Name Input Processing: memory, 16 characters
 @>Script: $game_variables[415] =
 : : $game_actors[9].name
 @>Text; The expression:
 : : \v[415]
 : : has been memorized.
 @>
 : When [Recall]
 @>Text: \v[415]
 @>
 : Branch End
@>

using UMS of course. I figure I can just repeat similar codes for multiple memorization. Thanks :)