So I fixed the other error where I kept getting a Xcode command error. So now my new error is my tweak.xm it is saying the first argument must be greater than 0 Here is my tweak.xm. Also tell me if I'm missing anything if I have to add anything #include <substrate.h> %hook PMListeningPersistence -(double) skipDelayAfterTrackStart { return 0; } %end %hook PMListeningPersistence -(BOOL) listenTimeoutEnabled { return FALSE; } %end %hook PMBaseSettings -(BOOL) ignoreSkipLimit { return TRUE; } %end %hook PMRadioConfig -(BOOL) discardAudioAds { return TRUE; } %end %hook TrackDescriptor -(BOOL) allowVisualAds { return FALSE; } %end %hook PMAppPersistence -(int) cellAudioQuality { return 200000000; } %end %hook AudioFileTypes +(double) cellHighQualityBitrate { return 200000000; } %end %hook AudioFileTypes +(double) cellLowQualityBitrate { return 200000000; } %end %hook StationDescriptor -(BOOL) suppressVideoAds { return TRUE; } %end %hook PMRadio -(BOOL) userReceivesVisualAds { return FALSE; } %end %hook PMRadioConfig -(BOOL) enableBannerAds { return FALSE; } %end %hook StationPlayer -(BOOL) skipsAudioAds { return TRUE; } %end