Advertisement
Sandsky0

sheep100.asl

May 22nd, 2016
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. state("i wanna sheep 100 final")
  2. {
  3. int RoomID : "i wanna sheep 100 final.exe", 0x002C73C8;
  4. }
  5.  
  6. start
  7. {
  8. return current.RoomID == 152;
  9. }
  10.  
  11. split
  12. {
  13. return
  14. (old.RoomID != 169 && current.RoomID == 169) || // 15
  15. (old.RoomID != 182 && current.RoomID == 182) || // 30
  16. (old.RoomID != 192 && current.RoomID == 192) || // 40
  17. (old.RoomID != 202 && current.RoomID == 202) || // 50
  18. (old.RoomID != 212 && current.RoomID == 212) || // 60
  19. (old.RoomID != 222 && current.RoomID == 222) || // 70
  20. (old.RoomID != 232 && current.RoomID == 232) || // 80
  21. (old.RoomID != 242 && current.RoomID == 242) || // 90
  22. (old.RoomID != 256 && current.RoomID == 256) // Finish
  23. ;
  24. }
  25.  
  26. reset
  27. {
  28. return current.RoomID == 2;
  29. }
  30.  
  31. isLoading
  32. {
  33. return false;
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement