@Carter-Brewer, good question. TRIGGERcmd runs a command on your computer. That command can run a script or program you've written with code. These are some common types of code, and an example command to run them:

Batch script - built into Windows: c:\scripts\mybatchfile.bat
Powershell script - built into Windows: powershell -file c:\scripts\emailmydocs.ps1
Visual Basic script - built into Windows: cscript c:\scripts\myscript.vbs
AutoIT - requires a download: c:\scripts\mycompiledscript.exe
Python script - requires a download: python c:\scripts\test.py

Try this:
Create a c:\scripts folder, open Notepad, and copy/paste the two lines below into it, then save it in your c:\scripts folder as OpenGoogle.bat.

timeout 10 start www.google.com

Then create a TRIGGERcmd command like this:

0df11239-d55d-4518-975f-84d20735f9b5-image.png

It's a simple example batch script that will open Google 10 seconds after you run it.