Chaos Project

RPG Maker => RPG Maker Scripts => Script Requests => Topic started by: d_a_renoir on July 12, 2019, 11:33:38 am

Title: [RMVX] Changing a map name with script?
Post by: d_a_renoir on July 12, 2019, 11:33:38 am
I have a map display script, and I want the map name to say "???" until you talk to somebody who tells you where you are. I browsed all over but I can't find anything?
I saw modern algebra's script that allows you to manually rename maps, but that's not what I want to do, and I don't know enough about RGSS2 to know how to modify it.
Title: Re: [RMVX] Changing a map name with script?
Post by: Blizzard on July 14, 2019, 02:05:11 pm
You can probably do something like "$game_variables[ID_HERE] = $game_map.name" or however the map name was implemented in that script. Then you just display the variable with \v[ID_HERE] in the event text. I suggest you pick one variable for this and don't use it for anything else.
Title: Re: [RMVX] Changing a map name with script?
Post by: KK20 on July 14, 2019, 02:15:52 pm
He also posted on RM forums
https://forums.rpgmakerweb.com/index.php?threads/rename-a-map-with-script.110982/

So we'll see what his reply is then.