Advertisement
Guest User

Untitled

a guest
May 28th, 2022
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. enter
  2. con if (int)currentNight == 1
  3. cmd present add scenes/Living/Room/Descriptions.txt
  4. cmd present add scenes/Living/Room/2C/Descriptions.txt
  5. con if (bool)haveClothes == false
  6. cmd p add items/clothes/desc/InRoom.txt|short|
  7. cmd p show
  8.  
  9. exit
  10. con if (int)currentNight == 1
  11. con if (bool)haveClothes == true
  12. cmd p add scenes/Living/room/2c/LeavingYourRoom.txt
  13. cmd p add ptc
  14.  
  15. execute
  16. con if (int)currentNight == 1
  17. cmd present add scenes/Living/Room/Descriptions.txt
  18. cmd present add scenes/Living/Room/2C/Descriptions.txt
  19. con if (bool)haveClothes == false
  20. cmd p add items/clothes/desc/InRoom.txt|short|
  21. cmd p show
  22.  
  23. action look
  24. cmd present add scenes/Living/Room/Descriptions.txt
  25. cmd present add scenes/Living/Room/2C/Descriptions.txt
  26. con if (bool)haveClothes == false
  27. cmd p add items/clothes/desc/InRoom.txt|short|
  28. cmd p show
  29. con if (bool)haveClothes == false
  30. action go corridor
  31. cmd p add scenes/Living/room/2c/NoClothes.txt
  32. cmd p show
  33. action look clothes
  34. cmd p add items/clothes/desc/InRoom.txt|long|
  35. cmd p show
  36. action get clothes
  37. cmd set (bool)haveClothes true
  38. cmd p add items/clothes/desc/pickup.txt
  39. cmd p show
  40. cmd load Living/Room/2C
  41. con if (int)currentNight == 1
  42. con if (bool)haveClothes == true
  43. action go corridor
  44. cmd load Living/CentralCorridor
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement