Chaos Project

RPG Maker => RPG Maker Scripts => Script Requests => Topic started by: Guilink on September 14, 2010, 03:49:57 am

Title: [Resolved] Little edit in REMEMBER_LOGIN function / RMX-OS.
Post by: Guilink on September 14, 2010, 03:49:57 am
Hi sexy guys...

I need that on the login screen... the "REMEMBER_LOGIN" function just to show me only the last "username"  ... and not username and Password.


Thanks!

Srry for bad english

Edit: Resolved.
Thanks Wizered67 and Blizzard !
Title: Re: [REQUEST]Little edit in REMEMBER_LOGIN function / RMX-OS.
Post by: Wizered67 on September 16, 2010, 11:57:56 pm
I can't guarentee any results, but I found these lines in RMX-OS
if RMXOS::Options::REMEMBER_LOGIN
     # create data stream
     stream = "#{@username_window.text}\t#{@password_window.text}"


You should play around with it and try changing that last part to somehting like
stream = "#{@username_window.text}"


You might want to try it on a test game first because it might mess up your game.....

edit: I tested it and it didn't work. When I did that it didn't remember anything, so I don't think I can help you. sorry.
Title: Re: [REQUEST]Little edit in REMEMBER_LOGIN function / RMX-OS.
Post by: Blizzard on September 17, 2010, 02:49:24 am
There's another place where you need to edit it because this part is only for saving. You need to disable the reading as well.
Title: Re: [REQUEST]Little edit in REMEMBER_LOGIN function / RMX-OS.
Post by: Guilink on September 17, 2010, 03:27:54 am
I got it!  :)

The tips were very useful, thanks Wizered67 and Blizzard !