# Happy Frog Script - Hello World
# Simple educational example demonstrating basic automation
# 
# Educational Purpose: Shows how to create a simple automation script
# that types text and performs basic keyboard operations

# Wait for system to recognize the device
DELAY 1000

#ATTACKMODE HID STORAGE

# Open notepad
MOD r
STRING notepad
ENTER

# Type a greeting message
STRING Hello, World! This is Happy Frog Script in action!
ENTER

# Wait a moment
DELAY 500

# Type another message
STRING This demonstrates basic text input automation.
ENTER

# Wait and type more
DELAY 500
STRING Happy Frog Script makes automation simple and educational!
ENTER

# Final message
DELAY 500
STRING Remember: Use automation responsibly and ethically!
ENTER 