12345678910111213141516171819202122232425262728293031323334 |
- var user = function(){
- this.name = null;
- this.TS = null;
- this.ident = null;
- this.host = null;
- this.account = null;
- this.umodes = null;
- this.vhost = null;
- this.cloakedHost = null;
- this.ip = null;
- this.realname = null;
- this.uid = null;
- this.distance = null;
- this.uplink = null;
- this.introduce = function(nick, distance, TS, ident, host, uid, account, umodes, vhost, cloakedHost, ip, realname, uplink){ // nick, distance, TS, ident, host, uid, account, umodes, vhost, cloakedHost, ip, realname, uplink
- this.name = nick;
- this.distance = distance;
- this.TS = TS;
- this.ident = ident;
- this.host = host;
- this.uid = uid;
- this.account = account;
- this.umodes = umodes;
- this.vhost = vhost;
- this.cloakedHost = cloakedHost;
- this.ip = ip;
- this.realname = realname;
- this.uplink = uplink;
- }
- }
- module.exports = user;
|