View Single Post
  #5  
Old 04-10-2006, 05:23 AM
napo_p2p napo_p2p is offline
oh snaps
napo_p2p's Avatar
Join Date: Sep 2003
Location: Pismo Beach, California
Posts: 2,118
napo_p2p has a spectacular aura aboutnapo_p2p has a spectacular aura about
Send a message via AIM to napo_p2p Send a message via MSN to napo_p2p
Quote:
Originally Posted by Prozac
hmm .. no access to the player's comments through a player

Also, a very simple example of getting comments:

PHP Code:
//#CLIENTSIDE
function onPlayerChats() {
  if (
player.chat.starts("/comments")) {
    
requesttext("comments"player.chat.substring(10).trim());
  }
}

function 
onReceiveText(texttypetextoptionstextlines) {
  if (
temp.texttype == "comments") {
    echo(
"Comments for: " temp.textoptions);
    for (
temp.linetemp.textlines) {
      echo(
temp.line);
    }
  }

Comments will appear on the console/log (F2).
Command: /comments account

Note: This only works if you have rights to view comments.
__________________
Scito hoc super omnia.
Haec vita est tua una sola.
Dum vita superest, utere maxime quoque puncto, momento, et hora quae habes.
Tempus neminem non manet.
Noli manere tempus.
Carpe Diem

Seize the Day.
Reply With Quote