sunn-official

Villager
Member
Joined
Oct 26, 2021
Messages
10
Reaction score
4
First Language
English
Primarily Uses
RMMV
so i have a part in my game that you choose an item to put it in trash.So you choose the item and a text will appear says "Trash crumpled paper?" for example.but i don't know how to make the text say the name of the choosen item,how to solve this?
 

Lady_JJ

Veteran
Veteran
Joined
May 6, 2019
Messages
472
Reaction score
383
First Language
English
Primarily Uses
RMMZ
You can use a plugin like one of Yanfly's that allows you to use \item in a textbox or you can simply dedicate a block of variables (a block to keep these variables organized) and then use \v[x] where x is the variable number you stored the item name in.

For instance
Code:
◆Control Variables:#0031 itemName = "crumpled paper"

Then in a text box
Code:
You trash the \v[31].
 

sunn-official

Villager
Member
Joined
Oct 26, 2021
Messages
10
Reaction score
4
First Language
English
Primarily Uses
RMMV
You can use a plugin like one of Yanfly's that allows you to use \item in a textbox or you can simply dedicate a block of variables (a block to keep these variables organized) and then use \v[x] where x is the variable number you stored the item name in.

For instance
Code:
◆Control Variables:#0031 itemName = "crumpled paper"

Then in a text box
Code:
You trash the \v[31].
what's the plugin name?
 

ATT_Turan

Forewarner of the Black Wind
Veteran
Joined
Jul 2, 2014
Messages
7,621
Reaction score
5,376
First Language
English
Primarily Uses
RMMV
I'd use a simple script call for efficiency. Do the choose item event command. Then right after it, do Control Variable on a second variable using: $dataItems[$gameVariables.value(X)].name
where X is the ID of the variable you used in the choose item command.

Then you can use the regular \V[n] escape code on that second variable to display the name of the item you chose.
what's the plugin name?
The Message Core. It doesn't directly do what Lady_JJ suggested, that I can see, you'd have to try to nest them and do \ni[\V[X]]
 

sunn-official

Villager
Member
Joined
Oct 26, 2021
Messages
10
Reaction score
4
First Language
English
Primarily Uses
RMMV
this is how my event page looks like,can you pls explain when i add the commands,i'm new to rpg maker so i can't understand easily
I'd use a simple script call for efficiency. Do the choose item event command. Then right after it, do Control Variable on a second variable using: $dataItems[$gameVariables.value(X)].name
where X is the ID of the variable you used in the choose item command.

Then you can use the regular \V[n] escape code on that second variable to display the name of the item you chose.

The Message Core. It doesn't directly do what Lady_JJ suggested, that I can see, you'd have to try to nest them and do \ni[\V[X]]


watagato.PNG
 

Lady_JJ

Veteran
Veteran
Joined
May 6, 2019
Messages
472
Reaction score
383
First Language
English
Primarily Uses
RMMZ
The Message Core. It doesn't directly do what Lady_JJ suggested, that I can see, you'd have to try to nest them and do \ni[\V[X]]
I've been using MZ so I may be wrong, but I think it does. From Yanfly's website

1635276202865.png

@sunn-official Did you assign the text "crumpled drawing" to variable 5 before opening the textbox?
 

Shaz

Global Moderators
Global Mod
Joined
Mar 2, 2012
Messages
45,495
Reaction score
16,403
First Language
English
Primarily Uses
RMMV
this is how my event page looks like,can you pls explain when i add the commands,i'm new to rpg maker so i can't understand easily

You forgot this after the Select Item command:
Do the choose item event command. Then right after it, do Control Variable on a second variable using:
Code:
$dataItems[$gameVariables.value(X)].name
where X is the ID of the variable you used in the choose item command.

So you'll need 2 variables - one for the item id in the Select Item command (let's say that is 5), and one for the item name (let's say that's 6).

Add a new command right after Select Item, and do this:
Code:
Control Variables: 6 (item name) = Script: $dataItems[$gameVariables.value(5)].name

then in your Text command, do \v[6] to show the item name.
 

ATT_Turan

Forewarner of the Black Wind
Veteran
Joined
Jul 2, 2014
Messages
7,621
Reaction score
5,376
First Language
English
Primarily Uses
RMMV
I've been using MZ so I may be wrong, but I think it does. From Yanfly's website
If you read what I said right after that, I said you'd have to nest escape codes. Whether you use \ii for the name and icon or \ni for just the name (which I gave as an example), they need you to supply the ID of the item (in the picture you pasted, "x").

The OP doesn't have that, he has it stored in a variable. I didn't say you were wrong, just that the syntax would be slightly more complex - I felt it worth giving the warning as he's clearly inexperienced with the software.
 

Latest Threads

Latest Posts

Latest Profile Posts

Today I released one of my favourite tutorials :3 Learn how to make consistent yet interesting towns!
As always, I am very open for feedback!
1679673622425.png
This girl is jealous because I haven't drawn her again in months.
Fr_RrgwaUAAafNa

New sprites in my project!
Updating my stream thumbnail collection here Streaming more game dev in 30 minutes or so. :LZSexcite:

Programming languages are amazing.

Someone needed help with a problem in C#. I've got 0 experience in C#. I read 0 lines of their code. I only knew what they wanted to do. I wrote a completely generic code in Javascript containing the generic answer. But they understood what I was doing and translated that to their code. 20 seconds later, problem solved.

Forum statistics

Threads
129,815
Messages
1,205,447
Members
170,930
Latest member
KendallCotoM
Top