yuhsing

Untitled

Feb 23rd, 2013
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. prontera,155,181,4 script Sample 757,{
  2. query_sql( "SELECT COUNT(`char_id`),`char_id`,`account_id`,`name` FROM `char` WHERE `char_id` IN ( SELECT `friend_id` FROM `friends` WHERE `char_id`='"+getcharid(0)+"' )",.@total,.@char_id,.@account_id,.@name$ );
  3. if( .@total ){
  4. for( .@i = 0; .@i < .@total; .@i++ )
  5. mes .@name$[.@i]+" "+( ( isloggedin( .@account_id[.@i],.@char_id[.@i] ) )?"^0055FFOnline":"^FF0000Offline" )+"^000000";
  6. .@i = select( implode( .@name$,":" ) ) - 1;
  7. if( isloggedin( .@account_id[.@i],.@char_id[.@i] ) ){
  8. getmapxy( .@map$,.@x,.@y,0,.@name$[.@i] );
  9. warp .@map$,.@x,.@y;
  10. }else{
  11. mes "Your friends is not online.";
  12. }
  13.  
  14. }else{
  15. mes "You dont have any friends.";
  16. }
  17. close;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment