Trophy Checker

Crowther

Active member
Ok, this is a really lame script, but one I wish I'd been running. I had a chance to discover a new trophy, but I never checked the trophy store. Scripting to the rescue! BTW, it returns false to cause an abort if run alone.
Code:
boolean main()
{
    if (contains_text(visit_url("trophy.php"), "entitled to the")) {
        print("You have a trophy waiting!!!!!!!!", "red");
        print("You have a trophy waiting!!!!!!!!", "red");
        print("You have a trophy waiting!!!!!!!!", "red");
        return false;
    }
    print("No trophy for you.");
    return true;
}
 
Top