Group: Member
Posts: 71
Type: None
RM Skill: Undisclosed
This is a very small script that automatizes the start and end of X type of scenes. You have a start and end scene that call commons events, and active a optional switch, that you can use to know if in scene or not.
text
CODE
=begin #============================================================================== # Functions to start and end scenes # By gerkrt/gerrtunk # Version: 1.1 # License: MIT, credits # Date: 30/09/2011 # Look here for updates or more scripts: # [url="http://usuarios.multimania.es/kisap/english_list.html"]http://usuarios.multimania.es/kisap/english_list.html[/url] #==============================================================================
This is a very small script that automatizes the start and end of X type of scenes. You have a start and end scene that call commons events, and active a optional switch, that you can use to know if in scene or not.
Example call script:
st_scene 7
Call common event configurated to start scene and active switch 7
end_scene 7
Call common event configurated to end scene and desactive switch 7
-You can use the short alias for each one: s_s and e_s, work equals. -Note that the switch id is optional. If no pased don touch nothing.
end_scene
=end
module Wep Event_start_scene = 6 # Common event id that start scene Event_end_scene = 7 # Common event id that end scene end