My First CMS

Started by C.C. rOyAl, November 22, 2009, 11:38:21 am

Previous topic - Next topic

C.C. rOyAl

November 22, 2009, 11:38:21 am Last Edit: November 22, 2009, 11:45:25 am by C.C. rOyAl
Ok so I'm going to try my hand at scripting a Two-Man CMS for my game. Here is the mock-up

Spoiler: ShowHide


Now like the tag  said I want those smaller menus to pop up after you press the action key on one of the names, how would i do this?
Spoiler: ShowHide

G_G

So say the window is called
@actor_window
use this to hide it in the beginning of the script
@actor_window.active = false
@actor_window.visible = false

Then use those same lines to bring the window up but change false to true

C.C. rOyAl

sorry but could be a little more clear?
Spoiler: ShowHide

G_G

okay the window that says Equip Status Skills and Summons
just say the window that has those options is called
@actor_window

You don't want it visible right away so to do this in the beginning of Scene_Menu you want to make it invisible and unactive so you would do this
@actor_window.active = false
@actor_window.visible = false

Then when you click Aluxes you want the window to be active and visible again so you would do this
@actor_window.active = true
@actor_window.visible = true

C.C. rOyAl

oh ok thanks, don't close this window just yet i want to be able to come back here for any other questions, thanks
Spoiler: ShowHide