I wrote an mIRC script to generate and echo URLs for players who are !updated in #qlranks.
In menu Tools, select Script Editor, and then select the Remote tab. Append the following starting on a new line if necessary:
Now, when qlr reports that a user has been updated:
[19:39] -> *qlr* !update ins
[19:39] <@qlr> >> ins found in database. Scanning recent games
[19:39] <@qlr> >> ins has been updated. 71 matches scanned. Elo: 1708-->1708 Rank: 218-->218
-
http://www.qlranks.com/duel/player/ins
-
The link to the profile is echoed. This way users can quickly access the player stats page. I hope the link is just added to qlr's update text, so this script becomes obsolete.
Edit: You can substitute your in-game nickname for an asterisk in the first line, such as:
or
This will ensure the script is executed only when that player name is updated.
In menu Tools, select Script Editor, and then select the Remote tab. Append the following starting on a new line if necessary:
on *qlr*:TEXT:*>> * has been updated.*:#qlranks:{
/echo #qlranks -
/echo #qlranks http://www.qlranks.com/duel/player/ $+ $2
/echo #qlranks -
}
Now, when qlr reports that a user has been updated:
[19:39] -> *qlr* !update ins
[19:39] <@qlr> >> ins found in database. Scanning recent games
[19:39] <@qlr> >> ins has been updated. 71 matches scanned. Elo: 1708-->1708 Rank: 218-->218
-
http://www.qlranks.com/duel/player/ins
-
The link to the profile is echoed. This way users can quickly access the player stats page. I hope the link is just added to qlr's update text, so this script becomes obsolete.
Edit: You can substitute your in-game nickname for an asterisk in the first line, such as:
on *qlr*:TEXT:*>> brandan has been updated.*:#qlranks:{
or
on *qlr*:TEXT:*>> ralpha has been updated.*:#qlranks:{
This will ensure the script is executed only when that player name is updated.
Edited by xou at 19:42 GMT, 12 December 2011 - 3348 Hits