Chaos Project

RPG Maker => RPG Maker Scripts => Script Requests => Topic started by: ojp2010 on August 28, 2010, 04:40:38 pm

Title: RMX-OS Character Names [Resolved]
Post by: ojp2010 on August 28, 2010, 04:40:38 pm
1. Addon

2. Scripts I am using and in current order
Spoiler: ShowHide

MapLinks
MOG - Location_Name
MOG - Treasure_Name
MOG - Item Limit
Ton 0f Addons (1)
Ton 0f Addons (2)
Ton 0f Addons (3)
RMX-OS Options
RMX-OS Script
RMX-OS Global Switches & Variables
RMX-OS Versioning
Blizz ABS (1)
Blizz ABS (2)
Blizz ABS (3)
ABS HUD made by nathmatt
Blizz ABS Controller
Critical Sounds for ABS
Auto-Targeting for ABS
Advanced Time and Environment
Global Day-Night System
Mouse Controller
Mouse Controller Enhancement
Mouse Drop Down Menu
RMX-OS Main


3. I am wanting just a simple script that will make a players log in name their characters name in game. So in the HUD where it would display the character's name is will should the players Login name. Or better yet the other way around. Where the character's name is displayed over the avatar instead on the login name, helping with account security. In addition the name over the avatar would have to be able to change after a player have inputed a new character name using the default name_input event.  
Title: Re: RMX-OS Character Names
Post by: Wizered67 on August 28, 2010, 05:03:39 pm
To name a character the same as the login, sue this:
$game_actors[1].name = 
$network.username


Ex. If my username for login was "tester 5", it would change the first actor in the database's name to tester 5.
Title: Re: RMX-OS Character Names
Post by: ojp2010 on August 28, 2010, 09:25:44 pm
Quote from: Wizered67 on August 28, 2010, 05:03:39 pm
To name a character the same as the login, sue this:
$game_actors[1].name = 
$network.username


Ex. If my username for login was "tester 5", it would change the first actor in the database's name to tester 5.


Where do I put or find that part of the code?
Title: Re: RMX-OS Character Names
Post by: Wizered67 on August 28, 2010, 11:43:55 pm
Sorry for not being clear. You can just make a paralel process event that has that as a script command.
Title: Re: RMX-OS Character Names
Post by: ojp2010 on August 29, 2010, 12:01:33 am
On every map or just the starting map?
Title: Re: RMX-OS Character Names
Post by: Wizered67 on August 29, 2010, 12:09:04 am
You only need to do it once, and it will be a permanant effect. It would be like doing name processing event and selecting that as the name.
Title: Re: RMX-OS Character Names
Post by: ojp2010 on August 29, 2010, 12:12:00 am
Thank you!
Title: Re: RMX-OS Character Names [Resolved]
Post by: Ryex on August 29, 2010, 12:29:50 am
do it in a common event set to parallel process and then turn the event off through a condition or something
Title: Re: RMX-OS Character Names [Resolved]
Post by: Blizzard on August 29, 2010, 03:37:37 am
He's right, it's enough if you do it only one time when the a new game is created / new account is registered.