Skip to content
Snippets Groups Projects
Commit ed43306b authored by rswindell's avatar rswindell
Browse files

New user list JavaScript module - example use of User class.

parent aee8da5e
No related branches found
No related tags found
No related merge requests found
load("sbbsdefs.js");
var lastuser=system.stats.total_users;
var user = new User(1);
for(i=1;i<=lastuser;i++) {
user.number=i;
if(user.settings&USER_DELETED)
continue;
printf("%d/%d ",i,lastuser);
printf("%-30s %-30s %s\r\n"
,user.alias
,user.location
,user.connection
);
if(bbs.sys_status&SS_ABORT)
break;
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment