Jump to content

Help with stairs...


Matanbuchus

Recommended Posts

How hard can it be to get a stairway to function properly?

 

So far, I have this:

 

Code:
beginstate 20;	// stairway	message_dialog("You walk downstairs.","");	move_to_new_town(2,5,22);break;
I keep getting an error message, "unknown command void on line 11" or something like that. I tried with the void-prefix too, only to get the same result. smirk
Link to comment
Share on other sites

Code:
begintownscript;
variables;
body;

beginstate INIT_STATE;
set_name(6,"Commander Cidius");
set_crime_tolerance(1);
void enable_add_chars(0);
break;

beginstate EXIT_STATE;
break;

beginstate START_STATE;
break;

beginstate 15;
end_scenario(0);
break;

beginstate 20; // stairway
message_dialog("You walk downstairs.","");
move_to_new_town(2,5,22);
break;
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...