user.js 842 B

12345678910111213141516171819202122232425262728293031323334
  1. var user = function(){
  2. this.name = null;
  3. this.TS = null;
  4. this.ident = null;
  5. this.host = null;
  6. this.account = null;
  7. this.umodes = null;
  8. this.vhost = null;
  9. this.cloakedHost = null;
  10. this.ip = null;
  11. this.realname = null;
  12. this.uid = null;
  13. this.distance = null;
  14. this.uplink = null;
  15. 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
  16. this.name = nick;
  17. this.distance = distance;
  18. this.TS = TS;
  19. this.ident = ident;
  20. this.host = host;
  21. this.uid = uid;
  22. this.account = account;
  23. this.umodes = umodes;
  24. this.vhost = vhost;
  25. this.cloakedHost = cloakedHost;
  26. this.ip = ip;
  27. this.realname = realname;
  28. this.uplink = uplink;
  29. }
  30. }
  31. module.exports = user;