Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Cursor in the Title
#1
This is a locked, single-post thread from Creation Asylum. Archived here to prevent its loss.
No support is given. If you are the owner of the thread, please contact administration.


In the Scene_Title add this:

Code:
@cursor = Sprite.new
   @cursor.bitmap = RPG::Cache.title("TitleCommand")
   @cursor.x = @command_window.x - 16
   @cursor.y = @command_window.indexposition + @command_window.y + 22
   @cursor.z = @command_window.z + 10



below this:

Code:
@command_window.y = 288
   @continue_enabled = false
   for i in 0..3
     if FileTest.exist?("Save#{i+1}.sav")
       @continue_enabled = true
     end
   end


Then, below Graphics.freeze add this:


Code:
@cursor.dispose



Then, below this:
Code:
def update
   @command_window.update



add this:
Code:
@cursor.update
   @cursor.y = @command_window.indexposition + @command_window.y + 20



Add this in the end:
Code:
#-----------------------------------------------------------------
class Window_Command < Window_Selectable
#-----------------------------------------------------------------
alias slipknot_command_initialize initialize
def initialize(width,commands)
   slipknot_command_initialize(width,commands)
   @index = index
end
#-----------------------------------------------------------------
def indexposition
   indexpos = 32*@index
   return indexpos
end
#-----------------------------------------------------------------
end



And don't forget import the cursor (24*24)(If you don't have one, use the mine).


¬|Note|¬ If you want a Title Command Window with only the letters below:


Code:
@command_window = Window_Command.new(192, [s1,s2,s3])


add this:


Code:
@command_window.opacity = 0
}


Possibly Related Threads…
Thread Author Replies Views Last Post
  Pre-Title menu Tony 0 2,205 08-04-2006, 01:00 PM
Last Post: Tony
  Use an Indicator instead of a Cursor Tsunokiette 0 2,070 06-28-2006, 01:00 PM
Last Post: Tsunokiette
  Change Cursor with differend commands in Battle Divinity 0 2,209 06-22-2006, 01:00 PM
Last Post: Divinity
  Transparent command box in title ryujijitei 0 1,896 04-29-2006, 01:00 PM
Last Post: ryujijitei
  Cursor Command Tsunokiette 0 2,115 01-07-2006, 01:00 PM
Last Post: Tsunokiette
  introtexte in menu title, Berith 0 2,404 12-28-2005, 01:00 PM
Last Post: Berith
  Advanced Title Screen 2 kaito 0 2,316 09-19-2005, 01:00 PM
Last Post: kaito
  Title Script RPG Fan 0 2,141 09-12-2005, 01:00 PM
Last Post: RPG Fan
  Bypass Title Only If There Are No Saves Eccid 0 2,241 08-22-2005, 01:00 PM
Last Post: Eccid
  Title Screen Mod Hadriel 0 2,129 02-19-2005, 01:00 PM
Last Post: Hadriel



Users browsing this thread: