Top 10 Trucks tips

Before You Buy Your First Truck, Have Some Excess Cash

Now let's get into getting your own truck- one of the game's first big milestones. It can be exciting and tempting to want to buy a truck right away; you can design it how you want (check out my pink truck above!), you can go where you want on your own time, and pick a bigger variety of jobs. However, trucks are expensive, and you need to have at least $120,000 before buying one. On top of that, you'll need to give yourself some extra money, for damages, fines, and gas. I'd recommend not buying a truck until you have at least $150,000 saved up. You can also take out a loan (which you will automatically pay back daily at 12:00pm), but just make sure you have some money leftover before making the big purchase.

SharePlay in FaceTime

Another handy iOS 15 tip that will be quite popular once the majority of iPhone owners install the update. By majority, we mean both the consumers and developers. Apple has added a SharePlay function that lets users on a FaceTime call listen to Music via Apple Music, watch shows via Apple TV, etc. Basically, you’ll be able to enjoy watching movies or listening to music with your friends while on a FaceTime call. Expect to see companies like Spotify, Netflix, Disney, etc., offer similar integration with FaceTime. Apple has also added the Screen Share function that allows the user to share the screen with other participants over a FaceTime call. Read our dedicated post to learn about screen sharing on FaceTime. SharePlay is not a part of the initial iOS 15 release but should debut later this fall.

Master Focus Mode

The default Do Not Disturb mode gets a new avatar with the Focus mode in iOS 15. Instead of a single Do Not Disturb mode, you get to choose among Home, Work, Sleep, and more Focus profiles with customized notifications and calls behavior for each. Swipe down from the upper right corner and long-tap on the Focus menu. You can select from one of the default iOS Focus profiles. You can further customize each mode by selecting which apps and contacts are allowed to send notifications.

Upgrade Your Garage, Buy a Truck, Then Hire a Driver

The next big milestones in the game are upgrading your garage and hiring your first driver to work for you! However, these steps have to be done in exact order. You first have to upgrade your garage (which will cost you $180,000 the first time, then $100,000 every time after), then you must buy a spare truck for your driver to use (failing to have a truck for the driver will result in your driving quitting). After that, you can hire a driver and have them working for you! Having drivers is a great way to earn residual income. And eventually, you can have multiple garages and drivers in different states!

Create Custom Focus Profiles

Apple hasn’t stopped with a barebone Focus mode in iOS 15. The company even allows you to create custom Focus profiles based on your usage and convenience. From the Settings > Focus menu, you can create as many Focus profiles such as Writing, Yoga, Meditation, and more. For each Focus profile, you can customize the Home screen and Lock screen as well. The possibilities are endless here. The good news is, all the Focus profiles get synced among all your Apple devices using the same Apple account.

Notification Summary

This one is mighty useful to get you through a busy day. Notification summary combines notifications from irrelevant apps and sends you the summary of it at a specific time. By default, it’s turned off. You can enable the toggle from the Settings > Notifications menu and select the relevant time you want to be reminded about the notifications.

Don't Leave Your Truck Behind

This is my personal tip from a hard lesson learned: if you have your own truck and accept a quick job, just realize that your truck will be left behind wherever you last drove it: it won't follow you to the destination of your quick job. So if you drove your truck to San Diego and then took a quick job from San Diego to Albuquerque, you'll be hopping into the companies' truck and making the trip. When you finish, the game will put you back in San Diego, into your own truck. So don't expect to pick up your own truck in Albuquerque! If you want to always drive your own truck, pick jobs from the Freight Market instead of Quick Jobs.


That's it for now!  Do you have any other tips, tricks or suggestions for new players of American Truck Simulator?  Which tip do you find the most useful?  Let me know in the comments section below!

Increments and Decrements

Instead of this:

1$article = Article::find($article_id);2$article->read_count++;3$article->save();

You can do this:

1$article = Article::find($article_id);2$article->increment('read_count');

Also these will work:

1Article::find($article_id)->increment('read_count');2Article::find($article_id)->increment('read_count', 10); // +103Product::find($produce_id)->decrement('stock'); // -1

Utilize Live Text

Live Text uses on-device intelligence to identify text in a photo or camera viewfinder. You can point the iPhone camera to a business card, scan the email or phone number using Live Text, and directly take action on it. It works in photos as well. Open an image from the gallery and identify the text in the photo. It can be helpful when you want to convert handwritten notes to text on the phone. Live Text works in other apps as well. For example, in the Email app, you can use the Email from Camera option and directly import the email address using Live Text. At launch, Live Text support is limited to 7 languages only.

XorY methods

Eloquent has quite a few functions that combine two methods, like “please do X, otherwise do Y”. Example 1 – findOrFail(): Instead of:

1$user = User::find($id);2if (!$user) { abort (404); }

Do this:

1$user = User::findOrFail($id);

Example 2 – firstOrCreate(): Instead of:

1$user = User::where('email', $email)->first();2if (!$user) {3  User::create([4    'email' => $email5  ]);6}

Do just this:

1$user = User::firstOrCreate(['email' => $email]);