BOSSMAKER'S PROFILE

Search

Filter

[SCRIPTING] [RMMV] Custom name input

I understood that you wanted the simplest possible.

Now the way you want I need three things:

1) an example image of how you would like the field to insert the text, I will use CSS + JAVASCRIPT.

2) I need the Plugin command that modifies the character name, because it might be that the code is large.
But if it does not I'll look in the CORE script.

3) I need to know if the game texts are images or default RpgMV (sources via CSS).
To be sure of how write.

I will create a Plugin to be able to use parameters.

Note: I speak Portuguese if I need to, I am always in "Centro Rpg" and CondadoBraveheart.

Edit:
Is that what you want?

https://gph.is/g/EqJx7Da

[RMMV] [SCRIPTING] Problem with HUD Maker

Try this, when entering the "Show Choices" change the "Background" to Window or Transparent.

[RM2K3] Massive eyestrain when screen scrolls?

I tested full screen on two computers:
1 - Intel Inside CPU with 2Gb Ram
2 - Cpu Core i5 with 6Gb Ram + 2Gb Video (Nvidia G-Force)

Apparently everything normal.

Probably the problem is in the Driver or graphics capability of your card.

[SCRIPTING] [RMMV] Custom name input

Can I try to help you? You said it had to be as simple as possible.

Enter a "Script" event command, paste it into this code:
author=BossMaker
temp_note = prompt("Input note text:","");
if(temp_note == null || temp_note == "") {
/* Opicional */
alert("Canceled!");
}else{
/*Insert command HUD with var "temp_note" */
alert(temp_note); //Example
}
/* Clear var */
temp_note = null;
Pages: first prev 12 last