Guest User

Untitled

a guest
Jan 17th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. WHOX support for UnrealIRCD 4.
  2.  
  3. To install:
  4. 1. Add m_whox.c to your src/modules/third directory
  5. 2. Run `make`
  6. 3. Run `make install`
  7. 4. Add `loadmodule "third/m_whox"` to your conf
  8. 5. /rehash
  9.  
  10. This adds the token WHOX to the ISUPPORT reply and allows for specifying WHOX fields in /WHO commands.
  11.  
  12. To use:
  13. `/WHO [+|-][acghimnsuMRI][%tcuihsnfdlar[,querytype]] [args] [mask]` OR `/WHO [mask] [+|-][acghimnsuMRI][%tcuihsnfdlar[,querytype]] [args]`
  14.  
  15. For a description of the flags (the parts before the %), see the built-in /WHO documentation. This module _replaces_ the built-in /WHO command, but retains its functionality in that regard. If the % character and fields are not specified, it operates exactly like the built-in /WHO command (returning a 352 numeric for each who reply).
  16.  
  17. Optionally, a % followed by fields can be specified in order to customize the output of /WHO. If a field is not specified, it is omitted from the output. When % and fields are specified, The ordering is fixed, and is in the order listed below:
  18. - t: outputs the number in querytype in reply
  19. - c: channel
  20. - u: username
  21. - i: IP address (255.255.255.255 if the IP is unknown, for example if the target is usermode +x and you are not an oper)
  22. - h: host
  23. - s: server
  24. - n: nickname
  25. - f: status
  26. - d: hop count
  27. - l: idle time (0 for users on other servers)
  28. - a: services account name (0 if none)
  29. - r: realname
Add Comment
Please, Sign In to add comment