Advertisement
Mechalico

Goal Issues

Oct 21st, 2017
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. -- THE MAJOR TYPES OF GOAL GLITCHES --
  2.  
  3. If you're making an SMB2 level you may encounter a type of goal glitch where the points you get fail to match up with the score. This is a resource for advice regarding these issues and what to do to combat them.
  4.  
  5. -- NO EXTRA POINTS GLITCH --
  6.  
  7. - The Symptoms -
  8.  
  9. On Dolphin, when you break a green or red tape on a level with points glitch:
  10. - The text remains green or red, respectively
  11. - No extra points (ie the 10K for green and 20K for red) are granted
  12. On Dolphin, when you break any tape in challenge mode, the game may not progress to the next stage. But this is not definite in all cases.
  13. On console, the game will CRASH if you break ANY tape. That's bad.
  14.  
  15. - The Issue -
  16.  
  17. This is caused when the first collision header has no offset for goals.
  18.  
  19. - The Fix -
  20.  
  21. Make sure that the first collision header has an offset pointing to the start of the goal list.
  22.  
  23. -- FALSE COLOUR POINTS GLITCHES --
  24.  
  25. These occur on stages with more than one colour of goal.
  26.  
  27. - The Symptoms -
  28.  
  29. On Dolphin and probably console, when you break a goal tape, the points you receive have the wrong colour and extra points granted.
  30.  
  31. - The Issues -
  32.  
  33. This can be caused by up to two things.
  34.  
  35. - Type One -
  36.  
  37. The "flipped colours" issue.
  38. This is caused in situations where multiple goals have different collision headers.
  39. The cause here is that the order of collision headers' goals is not the same as the order of goals in the goal list.
  40.  
  41. - Type Two -
  42.  
  43. The "many goals" issue.
  44. If there are more than either three or four goals (currently unknown which value is the cutoff), all the following goals will grant the same points pattern as the third or fourth goal.
  45.  
  46. - The Fixes -
  47.  
  48. - Type One -
  49.  
  50. Reorder either the goal list or the collision headers to make sure that the list of goals is the same as when they appear in the collision headers.
  51.  
  52. - Type Two -
  53.  
  54. Change the order of the goals so that the troublesome goals are before the other goals.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement