Plot:Begin
From OHRRPGCE-Wiki
(Redirected from Plot:End)
begin,other commands,end
Begin is a synonym for ( and end is a synonym for ). Parenthesis are normally used for bracketing things that all fit on the same line, and begin/end statements are often used to enclose very long things such as whole scripts or long flow control blocks that take up several lines. For example, the following two blocks of code are identical:
[edit] Examples
if (check tag(2)) then (show text box (5),wait for text box)
if (check tag(2)) then begin show text box (5) wait for text box end
