// This script is used for a dialog box, // which is used for interaction of objects // and talking in Role Playing Games. //----------------------------------- // argument0: The text to be in the dialog -- be sure to include ' and ' or " and " before and after the text. //----------------------------------- // argument1: the x of the background // argument2: the y of the background //----------------------------------- // argument 3: the x of the text // argument 4: the y of the text //----------------------------------- // argument 5: the dialog boxe's background //----------------------------------- // Place in DRAW event!! //----------------------------------- // Be sure to set the COLOR and set the FONT // in the DRAW event BEFORE you put in the script!! //----------------------------------- // Font should not be TrueType, and should be around 6 - 7 pt if the dialog box is no larger than 80 px tall!! //----------------------------------- { draw_background (argument5, argument1, argument2); draw_text(argument3,argument4,argument0) } //----------------------------------- // Dialog box Copyright (c) 2008 //Ultisoft Gaming Co. // All Rights Reserved. //-----------------------------------