CleanSera

Anniv Autosplitter + Load Remover Script

Jan 31st, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. state("Fable Anniversary") {
  2. int questsCompleted : 0x322FD00, 0x6C, 0x44, 0x14, 0xc4;
  3. int LoadScreen : 0x322139C, 0x1DC, 0x130
  4. }
  5.  
  6. startup {
  7. vars.quests = new string[] {
  8. "",
  9. "Guild Training/Childhood PACKAGE DEAL",
  10. "Wasp Menace/Beetles PACKAGE DEAL",
  11. "Talk to Maze in Bowerstone South",
  12. "Orchard Farm",
  13. "Trader Escort",
  14. "Talk to Maze in Oakvale",
  15. "Find the Bandit Seeress",
  16. "Talk to Maze in the Guild",
  17. "Find the Archaeologist",
  18. "White Balverine",
  19. "Arena",
  20. "Talk to Theresa at the Gray House",
  21. "Rescue the Archaeologist",
  22. "Graveyard Path",
  23. "Imprisoned!",
  24. "Prison Escape",
  25. "Gateway to Hook Coast (Book in Maze's Tower)",
  26. "Return to Hook Coast (Kill Maze)",
  27. "Try to Stop Jack of Blades",
  28. "Battle Jack of Blades",
  29. "Prophets of the Fire Heart",
  30. "Ship of the Drowned",
  31. "Necropolis",
  32. "Talk to Scythe in Snowspire",
  33. "Collecting an Arena Soul",
  34. "Collecting a Heroine's Soul",
  35. "Collecting the Oldest Soul",
  36. "Souls of Heroes (Open the Bronze Gate)",
  37. "The Final Battle"
  38. };
  39. for (int i = 1; i <= 29; i++) {
  40. settings.Add("split"+i, true, vars.quests[i]);
  41. }
  42. }
  43.  
  44. isLoading {
  45. return (current.LoadScreen > 0);
  46.  
  47. }
  48.  
  49. split {
  50. return old.questsCompleted < current.questsCompleted && settings["split"+current.questsCompleted];
  51. }
Advertisement
Add Comment
Please, Sign In to add comment