dcomicboy

possible hack dylib

May 1st, 2014
374
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. # Car Town Streets Hacks
  2.  
  3. # Msg box at the start of the app for credits!
  4.  
  5. %hook FileDownloader
  6.  
  7. -(void) startDownloadQueue {
  8. msgBox "Hack by KaptinBoxxi"
  9. }
  10.  
  11. %end
  12.  
  13. # Unlocks Service Items in Menu
  14.  
  15. %hook CCMenuItem
  16.  
  17. -(BOOL) isEnabled {
  18. return TRUE;
  19. }
  20.  
  21. %hook BuilderShopMenuItemUIKit
  22.  
  23. -(bool) locked {
  24. return FALSE;
  25. }
  26.  
  27. %end
  28.  
  29. # Every Car gets Dream Job Assigned
  30.  
  31. %hook UserCarModel
  32.  
  33. -(BOOL) isDreamJob {
  34. return TRUE;
  35. }
  36.  
  37. %end
Add Comment
Please, Sign In to add comment