(AGK version: AppGameKit Studio V2)
Submitted: 2020-12-10 21:21:26
SetVirtualResolution(640, 480)
UseNewDefaultFonts(1)
Local strDeviceBaseName As String
strDeviceBaseName = GetDeviceBaseName()

Do
    Select strDeviceBaseName
        Case "html5"
            Print("Please refresh your browser to receive new DLC.")
        EndCase
        
        Case "windows"
            Print("Please reboot your computer to receive new DLC.")
        EndCase
        
        Case "android", "ios" 
            Print("Please ensure your device is fully charged before downloading new DLC.")
        EndCase
        
        Case "mac"
            Print("Please pay $99 for new DLC.")
        EndCase
        
        Case "linux"
            Print("Please process latest pull requests,")
            Print("  run cmake against latest source files,")
            Print("  check for updates on all libraries and repository information,")
            Print("  open a terminal window,")
            Print("  issue command 'sudo update',")
            Print("  enter user password,")
            Print("  review available updates,")
            Print("  press 'y' (for the love of pickles, don't type the quotes!) then slap enter,")
            Print("  wait for updates to complete,")
            Print("  ...aaaaand: 'Hash Sum mismatch'")
        EndCase
    EndSelect
    
    Sync()
Loop
Help make AGK better by submitting an example for this command!
(All examples are subject to approval)
Login to post an example of your own.