Group: Local Mod
Posts: 1,346
Type: Scripter
RM Skill: Skilled
Rev Points: 5
Is something along the lines of what you're looking for?
Modified Script
CODE
#------------------------------------------------------------------------------ #============================================================================== #============================================================================== #==========================*Law's Custom Name Screen*========================== #=============================Author: The Law G14 ============================= #=================================Version 1.0================================== #============================================================================== #------------------------------------------------------------------------------ #============================================================================== # ** Window_NameInput #------------------------------------------------------------------------------ # This window is used to select text characters on the input name screen. #==============================================================================
#============================================================================== # ** Window_Base #------------------------------------------------------------------------------ # This class is for all in-game windows. #==============================================================================
class Window_Base < Window #-------------------------------------------------------------------------- # * Draw Actor Face Graphic #-------------------------------------------------------------------------- def draw_actor_face_graphic(actor, x, y) bitmap = RPG::Cache.picture(actor.id.to_s) self.contents.blt(x, y, bitmap, Rect.new(0, 0, bitmap.width, bitmap.height)) end end
#============================================================================== # ** Window_NameEdit #------------------------------------------------------------------------------ # This window is used to edit your name on the input name screen. #==============================================================================
class Window_NameEdit < Window_Base #-------------------------------------------------------------------------- # * Refresh #-------------------------------------------------------------------------- def refresh self.contents.clear # Draw name name_array = @name.split(//) for i in 0...@max_char c = name_array[i] if c == nil c = "_" end x = 320 - @max_char * 14 + i * 28 self.contents.draw_text(x, 32, 28, 32, c, 1) end # Draw graphic draw_actor_face_graphic(@actor, 250 - @max_char * 14 - 40, 0) end end
"When you first come, no one knows you. When help them out, they all know you. When you leave, they all love you. When you come back, they've already forgotten you." -- copy into your sig if you think this quote speaks true!
If you are one of the very few teenagers that know what real rap is and don't blindly listen to the hate statements (rap is crap), then put this in your sig. I say this in the name of Common, Mos Def, Lupe Fiasco, 2Pac, Nas, Talib Kweli, Eminem, and many others. -Exiled One