Advertisement
bonfire

unreal

Oct 10th, 2015
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.98 KB | None | 0 0
  1. loadmodule "src/modules/commands.so";
  2. loadmodule "src/modules/cloak.so";
  3. loadmodule "src/modules/m_admin.so";
  4. loadmodule "src/modules/m_oper.so";
  5. loadmodule "src/modules/m_dccdeny.so";
  6. loadmodule "src/modules/m_globops.so";
  7. loadmodule "src/modules/m_kick.so";
  8. loadmodule "src/modules/m_kill.so";
  9. loadmodule "src/modules/m_whois.so";
  10. loadmodule "src/modules/m_wallops.so";
  11. loadmodule "src/modules/m_help.so";
  12.  
  13. /* FOR Windows, uncomment the following 2 lines: */
  14. //loadmodule "modules/commands.dll";
  15. //loadmodule "modules/cloak.dll";
  16.  
  17. /*
  18. * You can also include other configuration files.
  19. * help.conf contains all the /helpop text. The badwords.*.conf
  20. * files contain all the badword entries for mode +G...
  21. * spamfilter.conf contains some good rules for current trojans.
  22. * You probably want to include them:
  23. */
  24. /*61*/
  25. include "help.conf";
  26. include "badwords.channel.conf";
  27. include "badwords.message.conf";
  28. include "badwords.quit.conf";
  29. /*
  30. * NEW: me {}
  31. * OLD: M:Line
  32. * me {} defines the name, description and unreal server numeric for
  33. * this server. Syntax is as follows:
  34. * me {
  35. * name "server.name";
  36. * info "Server Description";
  37. * numeric (server numeric*);
  38. * };
  39. * If linking, this numeric may not be used by any other server on the network.
  40. */
  41. me
  42. {
  43. name "irc.planetarena.org";
  44. info "Alien Arena Chat Channel";
  45. numeric 1;
  46. };
  47.  
  48. /*
  49. * NEW: admin {}
  50. * OLD: A:Line
  51. * Admin gives information on the server admin. you/*90*/
  52. * may put as many lines under admin { as you wish.
  53. * Syntax is as follows:
  54. * admin {
  55. * "first line";
  56. * "second line";
  57. * [etc]
  58. * };
  59. */
  60. admin {
  61. "bonfire";
  62. "Alienarena@yahoo.com";
  63. };
  64.  
  65. /*
  66. * NEW: class {}
  67. * OLD: Y:line (old was confusing)
  68. * These define settings for classes. A class is a group setting for
  69. * connections. Example, server connections, instead of going to a client's
  70. * class, you direct it to the server class. Syntax is as follows
  71. * class (class name)
  72. * {
  73. * pingfreq (how often to ping a user/server in seconds);
  74. * maxclients (how many connections for this class);
  75. * sendq (maximum send queue from a connection);
  76. * recvq (maximum receive queue from a connection [flood control]);
  77. * };
  78. */
  79.  
  80. class clients
  81. { /*120*/
  82. pingfreq 270;
  83. maxclients 500;
  84. sendq 100000;
  85. recvq 8000;
  86. };
  87. class servers
  88. {
  89. pingfreq 240;
  90. maxclients 10; /* Max servers we can have linked at a time */
  91. sendq 1000000;
  92. connfreq 100; /* How many seconds between each connection attempt */
  93. };
  94. class oper
  95. {
  96. pingfreq 270;
  97. maxclients 25;
  98. sendq 1000000;
  99. recvq 8000;
  100. };
  101. /*
  102. * NEW: allow {}
  103. * OLD: I:Line
  104. * This defines allowing of connections...
  105. * Basically for clients, it allows them to connect so you can have some
  106. * control and/or set a password.
  107. * Syntax is as follows:
  108. * allow {
  109. * ip (ip mask to allow);
  110. * hostname (host mask);
  111. * class (class to send them to [see class {}]);/*150*/
  112. * password "(password)"; (optional)
  113. * maxperip (how many connections per ip); (optional)
  114. * };
  115. */
  116.  
  117. allow {
  118. ip *@*;
  119. hostname *@*;
  120. class clients;
  121. maxperip 5;
  122. options {
  123. useip;
  124. noident;
  125. };
  126. };
  127. listen *:6667 {
  128. options {
  129. clientsonly;
  130. };
  131. };
  132. listen irc4.planetarena.org:6668 {
  133. options {
  134. serversonly;
  135. };
  136. };
  137. listen irc2.planetarena.org:6668 {
  138. options {
  139. serversonly;
  140. };
  141. };/*180*/
  142. link irc2.planetarena.org {
  143. username *;
  144. hostname 68.84.11.36;
  145. bind-ip *;
  146. port 6668;
  147. hub *;
  148. password-connect "somepw";
  149. password-receive "somepw";
  150. class servers;
  151. options {
  152. autoconnect;
  153. zip;
  154. };
  155. };
  156. link irc4.planetarena.org {
  157. username *;
  158. hostname 99.49.250.33;
  159. bind-ip *;
  160. port 6668;
  161. hub *;
  162. password-connect "VaPoRiZeR";
  163. password-receive "VaPoRiZeR";
  164. class servers;
  165. options {
  166. autoconnect;
  167. zip;
  168. };
  169. };
  170. link services.planetarena.org
  171. {/*210*/
  172. username *;
  173. hostname 88.131.39.210;
  174. port *;
  175. bind-ip 88.131.39.210;
  176. password-connect "somepw";
  177. password-receive "somepw";
  178. class servers;
  179. };
  180. ulines {
  181. services.planetarena.org;
  182. };
  183. oper Blindman {
  184. from {
  185. userhost IceChat7@99.49.250.33;
  186. };
  187. password somepw;
  188. class oper;
  189. flags {
  190. netadmin;
  191. can_zline;
  192. can_gkline;
  193. can_gzline;
  194. get_host;
  195. get_umodew;
  196. can_override;
  197. can_setq;
  198. };
  199. snomask cFfkejvGnNqsSo;
  200. };
  201. oper bonfire {
  202. from {/*240*/
  203. userhost IceChat7@88.131.39.210;
  204. };
  205. password somepw;
  206. class oper;
  207. flags {
  208. netadmin;
  209. can_zline;
  210. can_gkline;
  211. can_gzline;
  212. get_host;
  213. get_umodew;
  214. can_override;
  215. can_setq;
  216. };
  217. snomask cFfkejvGnNqsSo;
  218. };
  219. oper botfire {
  220. from {
  221. userhost botfire@88.131.39.210;
  222. };
  223. password somepw;
  224. class oper;
  225. flags {
  226. netadmin;
  227. can_zline;
  228. can_gkline;
  229. can_gzline;
  230. get_host;
  231. get_umodew;
  232. can_override;
  233. can_setq;
  234. };
  235. snomask cFfkejvGnNqsSo;
  236. };
  237. oper AlienCat {
  238. from {
  239. userhost Katt@*;
  240. };
  241. password somepw;
  242. class oper;
  243. flags {
  244. netadmin;
  245. can_zline;
  246. can_gkline;
  247. can_gzline;
  248. get_host;
  249. get_umodew;
  250. can_override;/*270*/
  251. can_setq;
  252. };
  253. snomask cFfknNso;
  254. };
  255. oper animal {
  256. from {
  257. userhost animal@*;
  258. };
  259. password somepw;
  260. class oper;
  261. flags {
  262. netadmin;
  263. can_zline;
  264. can_gkline;
  265. can_gzline;
  266. get_host;
  267. get_umodew;
  268. can_override;
  269. can_setq;
  270. };
  271. snomask cFfknNso;
  272. };
  273. drpass {
  274. restart something { md5; };
  275. die something { md5; };
  276. };
  277. deny channel {
  278. channel "*";
  279. reason "try another server";
  280. };/*300*/
  281. allow channel {
  282. channel "#alienarena";
  283. channel "#aaclan";
  284. channel "#testfire";
  285. channel "#alienarenagm";
  286. channel "#aaops";
  287. channel "#aapub";
  288. channel "#ClanSiNister";
  289. channel "#DucesofOrion";
  290. channel "#mogoil";
  291. channel "#aamaps";
  292. channel "#sharpeye";
  293. channel "#clanvp";
  294. channel "#oldschool";
  295. channel "#666gamers";
  296. };
  297. cgiirc {
  298. type webirc;
  299. hostname 64.62.228.82;
  300. password somepw;
  301. };
  302. cgiirc {
  303. type webirc;
  304. hostname 207.192.75.252;
  305. password somepw;
  306. };
  307. cgiirc {
  308. type webirc;
  309. hostname 78.129.202.38;
  310. password somepw;
  311. };
  312. cgiirc {/*330*/
  313. type webirc;
  314. hostname 109.169.29.95;
  315. password somepw;
  316. };
  317. log connects.log {
  318. maxsize 20MB;
  319. flags {
  320. connects;
  321. };
  322. };
  323. log errors.log {
  324. maxsize 10MB;
  325. flags {
  326. errors;
  327. };
  328. };
  329. log kills.log {
  330. maxsize 10MB;
  331. flags {
  332. kills;
  333. };
  334. };
  335. log tkl.log {
  336. maxsize 10MB;
  337. flags {
  338. tkl;
  339. };
  340. };
  341. log serverconnects.log {
  342. maxsize 10MB;
  343. flags {
  344. server-connects;
  345. };
  346. };
  347. log oper.log {
  348. maxsize 10MB;
  349. flags {
  350. oper;
  351. };
  352. };
  353. log sadmincommands.log {
  354. maxsize 10MB;
  355. flags {
  356. sadmin-commands;
  357. };
  358. };
  359. log chgcommands.log {
  360. maxsize 10MB;
  361. flags {
  362. chg-commands;
  363. };
  364. };
  365. log operoverride.log {
  366. maxsize 10MB;
  367. flags {
  368. oper-override;
  369. };
  370. };
  371.  
  372. deny dcc {
  373.  
  374. filename "*.exe";
  375.  
  376. reason "Executable content";
  377.  
  378. soft yes;
  379. };
  380. set {
  381.  
  382. kline-address alienarena@yahoo.com;
  383.  
  384. options {
  385.  
  386. hide-ulines; // line 660
  387.  
  388. show-connect-info;
  389.  
  390. flat-map;
  391.  
  392. };
  393.  
  394. };
  395.  
  396. set {
  397.  
  398. default-server "irc.planetarena.org";
  399.  
  400. services-server "services.planetarena.org";
  401.  
  402. stats-server "stats.planetarena.org";
  403.  
  404. network-name "planetarena";
  405.  
  406. hiddenhost-prefix "alien"; // line 670
  407.  
  408. help-channel "#alienarena";
  409.  
  410. cloak-keys {
  411.  
  412. "something";
  413.  
  414. "something";
  415.  
  416. "something";
  417.  
  418. };
  419.  
  420. modes-on-connect "+x";
  421.  
  422. modes-on-oper "iHwgspW";
  423.  
  424. # oper-auto-join "#alienarena";
  425.  
  426. hosts { // line 680
  427.  
  428. local "locop.planetarena.org";
  429.  
  430. global "global.planetarena.org";
  431.  
  432. coadmin "coadmin.planetarena.org";
  433.  
  434. admin "admin.planetarena.org";
  435.  
  436. servicesadmin "servicesadmin.planetarena.org";
  437.  
  438. netadmin "netadmin.planetarena.org";
  439.  
  440. host-on-oper-up "yes";
  441.  
  442. };
  443.  
  444. maxchannelsperuser 10;
  445.  
  446. oper-only-stats "okfGsMRUEelLCXzdD"; // line 690
  447.  
  448. throttle {
  449.  
  450. connections 3;
  451.  
  452. period 20s;
  453.  
  454. };
  455.  
  456. anti-flood {
  457.  
  458. nick-flood 3:60;
  459.  
  460. };
  461.  
  462. spamfilter {
  463.  
  464. ban-time 1d; /* standaard duur van een *line gezet door spamfilter */
  465.  
  466. ban-reason "Spam costs you a 1 day ban, but the next time it might be permanent"; // line 700
  467.  
  468. };
  469.  
  470. };
  471.  
  472. set {
  473.  
  474. restrict-usermodes "x";
  475.  
  476. };
  477.  
  478. set {
  479.  
  480. maxbans 90;
  481.  
  482. };
  483.  
  484. set {
  485.  
  486. maxbanlength 3072; // line 710
  487.  
  488. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement