It would be nice to add your own options in the playerlist. There's the warpto in the playerlist, but it would nice to be able to script a summon option that could show up in the drop down menu as well, and whatever else you might want to add (reconnect, disconnect, etc). This would be a really great feature to have.
There could be an option in the serverops where you would put the name of the weapon that has the special function for playerlist options. The function could go like this:
PHP Code:
public function playerlistOptions(selection, selector) {
//selection is the account name being selected
//selector is the account name that's doing the selecting
new PlayerListOption("Summon") {
doSummon(selection,selector);
}
}
function doSummon(selection, selector) {
//do summon stuff here
}