hecter wrote:But greasemonkey can pull information from other pages, can it not?
The short answer is NO.
The long answer is, yes it's possible but it would be severely convoluted.
Here is how you would have to do it for the long answer:
1) loop through all the players in the game
2) while looping through
a. check against your name so you know the score you want to calculate against
b. copy the target link to the profile page for that player.
c. open a new browser window to the profile page for that player.
d1.) Either write the player's score to a cookie saved on conquer club that the games pages and the profile pages both have access to [I believe you could use the same cookie that is used for Saved Searches and Map Opacity]
d2.) OR you send the player's score back as the result of the function that opened the new browser window [player profile browser window].
e. close the player profile browser window.
f. save this value to an array - making sure to note which one was YOURS
3) compare the values in the array against your score [from the array]
4) display a message box with how many points you would lose against each of the other players and how many you would win total
That's a lot of processing and code to handle basically 6 clicks and a calculator.
* - if this is a teams game - the loop in step 2 would have also needed to identify your teammates so as to average your team score and your opps team score.
* - Step 2d requires that the player's score always be in the same place on the page relative to other easily distinguished markers/identifiers. I'm not 100% sure that method d2 would even work.