Advertisement
ereinion

Check hidden city

Feb 7th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. void main() {
  2.     string choiceAdv = "choiceAdventure787";
  3.     int previousChoice = to_int(get_property(choiceAdv));
  4.     location whereToCheck = $location[An Overgrown Shrine (Southeast)];
  5.    
  6.     if (previousChoice != 6) {
  7.         set_property(choiceAdv, 6);
  8.     }
  9.    
  10.     adv1(whereToCheck, -1, "");
  11.    
  12.     if (to_int(get_property(choiceAdv)) != previousChoice) {
  13.         set_property(choiceAdv, previousChoice);
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement