1. class Game_Event
attr_writer :original_pattern
end
You can paste it in its own slot if you want, or at the end of the silver wind addon, or anywhere really, except inside another class. Just paste it into its own slot is the easiest thing to do.
2.new_event.pages[0].graphic.pattern = 1
I did indeed tell you where to paste that line:
Anyway, to fix it, go to line 64 of the addon to see this:
new_event.pages[0].priority_type = 1
Put a new line directly under it with this:
new_event.pages[0].graphic.pattern = 1
3.new_event.pages[0].priority_type = 0
is to go directly underneath
new_event.pages[0].graphic.pattern = 1
4. event.original_pattern = 1
You've pasted that in the correct place.