xxx_thunder

Untitled

Mar 14th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.19 KB | None | 0 0
  1. # ,============================================================================.
  2. # | ____ __ __ |
  3. # | /\ _`\ /\ \ /'\_/`\ /\ \ |
  4. # | \ \ \L\ \\ \ \____ /\ \ ___ \_\ \ |
  5. # | \ \ , / \ \ '__`\\ \ \__\ \ / __`\ /'_` \ |
  6. # | \ \ \\ \ \ \ \L\ \\ \ \_/\ \ /\ \L\ \/\ \L\ \ |
  7. # | \ \_\ \_\\ \_,__/ \ \_\\ \_\\ \____/\ \___,_\ |
  8. # | \/_/\/ / \/___/ \/_/ \/_/ \/___/ \/__,_ / |
  9. # | |
  10. # | RbMod (Responsive Bot Modification) |
  11. # | Copyright (C) 2013, Matthew Weyrich - Scor9ioN |
  12. # | (admin@rbmod.presension.com) |
  13. # | ᒥ ʀbmod.pʀesension.com ᒣ |
  14. # | v3.2.3 |
  15. # `============================================================================`
  16.  
  17.  
  18. #
  19. # Prerequisites:
  20. # Time::HiRes (E.g. perl-Time-HiRes),
  21. # LWP::Simple (yum install -y perl-libwww-perl ..OR..
  22. # perl -MCPAN -e 'install Bundle::LWP'),
  23. # Win32::Console::ANSI (For Windows O/S)
  24.  
  25. # Out of the box RbMod should run most features with the above cpan modules
  26. # installed. If you would like to download the free Geo-IP database from MaxMind;
  27. # http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz, placing the
  28. # included GeoLiteCity.dat at the root of RBMod, you can further enable RBMods
  29. # 'Package_GeoIP_On' flag and subsequently the temperature feature and a few other
  30. # features will also pick-up on the newly obtained City/Region information.
  31.  
  32. # Optional Packages:
  33. # Geo::IP::PurePerl, Weather::Underground, XML::Parser
  34.  
  35.  
  36.  
  37. # __________________________________________________________ RBMOD CONNECT SETUP
  38. # + Choose the IP or DNS address to your Teamspeak3 server.
  39. Query_Address = 127.0.0.1
  40. # + Select the virtual ts3 server instance RbMod will be running on.
  41. Query_Virtual_Server_Port = 9987
  42. # + Select the query port running on the TS3 server.
  43. Query_Port = 10011
  44. # + Select the log-in name for the query port.
  45. Query_Login = adasdasdasdasd
  46. # + Select the password for the query port.
  47. Query_Password = asdadsdada
  48. # + Choose a Nickname to display to your clients.
  49. Query_Bot_Name = AGL TS Bot
  50. # + Choose a second nickname for our child query bot.
  51. Query_Bot_Name2 = AGL TS Bot Child
  52. # + Select the max re-connections to attempt.
  53. Query_Connect_Retry = 5
  54. # + Select the delay in seconds between retry attempts.
  55. Query_Connect_Retry_Delay = 4
  56. # + Select the limit of queries to send from RbMod -> TS3 Server.
  57. Query_Limit = 15
  58.  
  59.  
  60. # ____________________________________________________________ RBMOD GROUP SETUP
  61. # + (Default) Select the Default Guest group ID on your TS3 virtual server.
  62. Guest_Group_ID = Default
  63. # + Choose a name for RBMods replicated guest group.
  64. Guest_Group_Name = Gɛst
  65. # + Select the Sort order for the guest group.
  66. Guest_Group_Sort_Order = 13
  67. # + Select group IDs that will remain exempt from this guest group assignment.
  68. Guest_Group_Exempt_Group_IDs = 2,6,7
  69. # + Which groups remain exempt from chat/name/description etc. language filters?
  70. All_Language_Filters_Exempt_Group_IDs = 2,6,7
  71.  
  72.  
  73. # _________________________________________________________ RBMOD INTERNAL SETUP
  74. # + Choose a text color for RBMod terminal output.
  75. # + Red, Green, Yellow, Blue, Magenta, Cyan & White.
  76. Console_Text_Color = Yellow
  77. # + Choose how long in seconds before extinguishing stored client information
  78. # + in RbMods database.
  79. Database_Active_Clients_Cache_Time = 5256000
  80. # + Stream log information to the terminal.
  81. Debug = 0
  82. # + Check online for RBMod updates and download the latest archive
  83. # + release directly to the root of your RBMod directory.
  84. Check_For_Updates_On = 0
  85.  
  86. # ________________________________________________________________ RBMOD LOGGING
  87. # + (ON=1/OFF=0) Log each boot-up session to rbm_logs/
  88. Logging_On = 1
  89. # + Choose how long in seconds before extinguishing stored log files.
  90. Logging_Cache_Time = 604800
  91.  
  92.  
  93. # ______________________________________________________________ RBMOD GUI SETUP
  94. # [NOTE] This Mod feature may or may not be updated, as an alternative
  95. # to a GUI application may be in the works for the future.
  96. # + Bind ourselves to an IP, example: 0.0.0.0 for all.
  97. WebServer_On = 1
  98. WebServer_Address = 127.0.0.1
  99. WebServer_Port = 7000
  100. WebServer_Client_Limit = 100
  101. WebServer_Client_WhiteList = 192.168.1.1
  102. WebServer_Login = Admin
  103. WebServer_Password = RbMod
  104.  
  105.  
  106. # ________________________________________________________________ CPAN MODULE 1
  107. # [DEPENDENCIES] CPan Module Geo::IP::PurePerl
  108. # + Binary database GeoLiteCity.dat 'http://dev.maxmind.com/geoip/legacy/geolite'
  109. # + Place the database at the root of rbmod.
  110. # + (ON=1/OFF=0) Requires cpan package 'Geo::IP::PurePerl' module.
  111. Package_GeoIP_On = 1
  112.  
  113.  
  114. # ________________________________________________________________ CPAN MODULE 2
  115. # [DEPENDENCIES] CPan Module Weather::Underground and Package_GeoIP_On=1
  116. # + (ON=1/OFF=0) Requires cpan package 'Weather::Underground' module.
  117. Package_Weather_Underground_On = 0
  118.  
  119.  
  120.  
  121. #¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  122. #------------------------- FEATURES - ADJUST ACCORDINGLY --------------------------
  123. #__________________________________________________________________________________
  124. Automove_Client_AFK_On = 0
  125. Automove_Client_AFK_Channel_ID = 75
  126. Automove_Client_AFK_Exempt_Group_IDs = 2,6,7
  127. Automove_Client_AFK_Exempt_Channel_IDs = 3
  128. Automove_Client_AFK_Return_To_Channel_On = 1
  129. Automove_Client_AFK_Time_Requirement = 2700
  130.  
  131.  
  132. #__________________________________________________________________________________
  133. Automove_Client_OnJoin_On = 0
  134. Automove_Client_OnJoin_DBIDs = 11->975
  135. Automove_Client_OnJoin_Group_IDs = 2->2,6->2,1297->156
  136. Automove_Client_OnJoin_Notice_On = 0
  137. Automove_Client_OnJoin_Notice = Default
  138. Automove_Client_OnJoin_Existing_CCode_On = 1
  139. Automove_Client_OnJoin_Geo_Channel_On = 1
  140. Automove_Client_OnJoin_Geo_Channel_Sort_Order = 916
  141.  
  142.  
  143. #__________________________________________________________________________________
  144. Autofill_Empty_CCode_Slots_On = 0
  145. Autofill_Empty_CCode_Slots_Sort_Order = 1100
  146.  
  147.  
  148. #__________________________________________________________________________________
  149. Channel_Delete_Dormant_On = 0
  150. Channel_Delete_Dormant_Exempt_IDs = [0-3631]
  151. Channel_Delete_Dormant_Interval = 60
  152. # + Time in seconds a channel is considered dormant before deleting.
  153. Channel_Delete_Dormant_Requirements = 43200
  154. # + Time in seconds required before applying a trash icon beside a channel.
  155. # + Indicating the channel will be cleaned up soon.
  156. Channel_Delete_Dormant_Trash_Icon_Requirements = 36000
  157.  
  158.  
  159. #__________________________________________________________________________________
  160. Channel_Flood_Detection_On = 1
  161. Channel_Flood_Detection_Ban = 0
  162. Channel_Flood_Detection_Ban_Duration = 3600
  163. Channel_Flood_Detection_CID_Move_Unstuck = 1
  164. Channel_Flood_Detection_Channel_ID = Default
  165. Channel_Flood_Detection_Channel_Name = Default
  166. Channel_Flood_Detection_Channel_Sort_Order = 501
  167. Channel_Flood_Detection_Exempt_Group_IDs = 2,6,7
  168. Channel_Flood_Detection_Kick = 0
  169. Channel_Flood_Detection_Punish_Duration = 120
  170. Channel_Flood_Detection_Punish_Reason = Default
  171. Channel_Flood_Detection_Time_Limit = 60
  172. Channel_Flood_Detection_Tolerance = 5
  173.  
  174.  
  175. #__________________________________________________________________________________
  176. Channel_Punish_Detection_On = 0
  177. Channel_Punish_Detection_Channel_ID = 81
  178.  
  179.  
  180. #__________________________________________________________________________________
  181. Channel_Info_Switching_On = 0
  182.  
  183.  
  184. #__________________________________________________________________________________
  185. # + (ON=1/OFF=0) Monitor channel conversations.
  186. Channel_Watch_On = 0
  187. # + Select how many additional query bots to connect to your server.
  188. Channel_Watch_Bot_Count = 1
  189. # + (<ChanID1>,<ChanID2>,etc.) Select the Channel ID(s) in which to move each
  190. # + channel bot into, to watch for channel messages.
  191. Channel_Watch_Channel_IDs = 3
  192. # + (<DBID1>,<DBID2>,etc.) Select the client DBIDs RbMod will append your
  193. # + 'Channel_Watch_Channel_IDs' channel ID conversations beside.
  194. Channel_Watch_Append_ChannelText_To_Tag_Client_DBIDs = 7
  195.  
  196.  
  197. #__________________________________________________________________________________
  198. # + (ON=1/OFF=0) Monitor channel names for bad language? (rbm_badwords.cf)
  199. Channel_Name_Language_Filter_On = 1
  200. # + How often should Rb process the channellist information for changes?
  201. Channel_Name_Language_Filter_Interval = 4
  202.  
  203.  
  204. #__________________________________________________________________________________
  205. # + (ON=1/OFF=0) Monitor client descriptions for bad language? (rbm_badwords.cf)
  206. Client_Description_Language_Filter_On = 1
  207.  
  208.  
  209. #__________________________________________________________________________________
  210. # + (ON=1/OFF=0) Monitor client away messages for bad language? (rbm_badwords.cf)
  211. Client_Away_Status_Language_Filter_On = 1
  212.  
  213.  
  214. #__________________________________________________________________________________
  215. Clone_Detection_On = 0
  216. Clone_Detection_Sort_Order = 24
  217.  
  218.  
  219. #__________________________________________________________________________________
  220. Distance_Calculator_On = 0
  221. Distance_Calculator_Server_Longitude = -18.445139199999970000
  222. Distance_Calculator_Server_Latitude = 9.030094600000000000
  223.  
  224.  
  225. #__________________________________________________________________________________
  226. Dynamic_Banner_On = 0
  227. Dynamic_Banner_URL_Links = rbmod.presension.com,www.presension.com
  228. Dynamic_Banner_URL_Links_Interval = 3600
  229. Dynamic_Banner_URLs = http://rbmod.presension.com/rb4.png,rbmod.presension.com/rb5.png,rbmod.presension.com/rb3.png
  230. Dynamic_Banner_URLs_Interval = 3600
  231.  
  232.  
  233. #__________________________________________________________________________________
  234. Exclamation_Triggers_On = 0
  235. Exclamation_Triggers_Admin_Group_IDs = 2,9
  236. Exclamation_Triggers_Flood_Time_Limit = 10
  237. Exclamation_Triggers_Flood_Tolerance = 3
  238.  
  239.  
  240. #__________________________________________________________________________________
  241. Group_Protected_On = 0
  242. Group_Protected_Ban = 0
  243. Group_Protected_Ban_Duration = 28800
  244. Group_Protected_Ban_Reason = Default
  245. Group_Protected_GroupID_MemberIDs = 2->[4],6->[6,57,200,242,737],1188->[4]
  246. Group_Protected_Kick = 0
  247. Group_Protected_Kick_Reason = Default
  248.  
  249.  
  250. #__________________________________________________________________________________
  251. IRC_Bot_On = 0
  252. IRC_Bot_Label = EFNet
  253. IRC_Bot_Server = irc.arcti.ca
  254. IRC_Bot_Port = 6667
  255. IRC_Bot_Nick = RbmAdmin
  256. IRC_Bot_Nick_Alternative = RbmAdmin2
  257. IRC_Bot_Login = RbMod
  258. IRC_Bot_Channels = RbMod,RbMod-Help-Desk
  259. IRC_Bot_AutoOp = 180.7.22.6
  260. IRC_Bot_AutoVoice = 180.7.22.6
  261.  
  262.  
  263. #__________________________________________________________________________________
  264. MOTD_On = 0
  265.  
  266.  
  267. #__________________________________________________________________________________
  268. Military_Rank_On = 1
  269. Military_Rank_Globally_Announce = 0
  270. Military_Rank_Icon_Pack = 1
  271. Military_Rank_Interval = 360
  272. Military_Rank_Privately_Announce = 1
  273. Military_Rank_Privileged_Client_DBIDs =
  274. Military_Rank_Privileged_Group_IDs =
  275. Military_Rank_Requirements = 10800
  276. Military_Rank_Sort_Order = 1006
  277.  
  278.  
  279. #__________________________________________________________________________________
  280. Nickname_Protected_On = 0
  281. Nickname_Protected_Ban = 1
  282. Nickname_Protected_Ban_Time = 1800
  283. Nickname_Protected_Group_IDs = 2,9
  284. Nickname_Protected_Interval = 3
  285. Nickname_Protected_Punish_All = 0
  286. Nickname_Protected_Punish_Reason = Default
  287.  
  288.  
  289. #__________________________________________________________________________________
  290. Nickname_Language_Filter_On = 1
  291. Nickname_Language_Filter_Ban = 1
  292. Nickname_Language_Filter_Ban_Time = 120
  293. Nickname_Language_Filter_Exempt_On = 0
  294. Nickname_Language_Filter_Punish_Reason = Default
  295.  
  296.  
  297. #__________________________________________________________________________________
  298. # + (ON=1/OFF=0) Choose whether or not to monitor the amount of re-connections
  299. # + a client makes to your virtual server. Each connection will be compared to
  300. # + the 'OnJoin_Reconnect_Gauge_Requirements' variable.
  301. OnJoin_Reconnect_Gauge_On = 0
  302. # + Choose in seconds the window in which a client's allowed to reconnect. Each
  303. # + reconnect will escalate to a warning / kick & eventually a ban.
  304. OnJoin_Reconnect_Gauge_Requirements = 180
  305.  
  306.  
  307. #__________________________________________________________________________________
  308. OS_Detection_On = 1
  309. OS_Detection_Sort_Order = 1007
  310.  
  311.  
  312. #__________________________________________________________________________________
  313. Ping_Meter_On = 0
  314. Ping_Meter_Sort_Order = 1009
  315. # + Choose in seconds how often each client gets pinged.
  316. Ping_Meter_Interval = 120
  317.  
  318.  
  319. #__________________________________________________________________________________
  320. RBL_Check_On = 0
  321. RBL_Ban_Punish_Reason = Your IP Address is flagged!
  322. RBL_Check_Cache = 300
  323. RBL_Check_WhiteList = 180.7.22.6,
  324. RBL_Server = xbl.spamhaus.org,bl.spamcop.net,psbl.surriel.com,combined.rbl.msrbl.net
  325.  
  326.  
  327. #__________________________________________________________________________________
  328. Recording_Detect_On = 1
  329. Recording_Detect_Exempt_Group_IDs = 2,1644,12
  330.  
  331.  
  332. #__________________________________________________________________________________
  333. Reverse_DNS_On = 1
  334. Reverse_DNS_Display_Privately = 0
  335.  
  336.  
  337. #__________________________________________________________________________________
  338. # [DEPENDENCIES] LWP::Simple, XML::Parser.
  339. # Example: perl -MCPAN -e 'install libwww-perl'
  340. # + (ON=1/OFF=0) Display RSS data to your virtual server.
  341. RSS_Feed_On = 0
  342. # + Choose the location in which to monitor for feed updates.
  343. RSS_Feed_URL = http://www.gamespot.com/rss/game_updates.php?platform=5
  344. # + Choose the length in seconds to wait between outgoing URL reloads.
  345. RSS_Feed_Interval = 900
  346. RSS_Global_Chat_Feed = 1
  347. RSS_Private_Chat_Feed = 1
  348.  
  349.  
  350. #__________________________________________________________________________________
  351. Status_On = 1
  352. Status_AFK_Detect_TS3_Away = 1
  353. Status_AFK_Time_Requirement = 2700
  354. Status_Idle_Time_Requirement = 180
  355. Status_Sort_Order = 1010
  356. Status_Display_Country_OnJoin = 1
  357. Status_Display_Country_OnJoin_Timeout = 30
  358.  
  359.  
  360. #__________________________________________________________________________________
  361. # [DEPENDENCIES] Package_GeoIP_On=1 and Package_Weather_Underground_On=1.
  362. Temperatures_On = 0
  363. Temperatures_Interval = 600
  364. Temperatures_Sort_Order = 1005
  365. Temperatures_Global_Message = 1
  366.  
  367.  
  368. #__________________________________________________________________________________
  369. TraceClients_On = 0
  370. TraceClients_Cache = 604800
  371. TraceClients_Dual_Trace = 1
  372. TraceClients_Icon_Pack = 1
  373. TraceClients_Sort_Order = 1008
  374. TraceClients_Trace_1_Type = TCP
  375. TraceClients_Trace_2_Type = ICMP
  376. TraceClients_Message_Results_On = 0
  377. TraceClients_Message_Results_Admin_GroupIDs = 2,6
  378.  
  379.  
  380. #__________________________________________________________________________________
  381. Traffic_Meter_On = 0
  382.  
  383.  
  384. #__________________________________________________________________________________
  385. # + (ON=1/OFF=0) Display a global message relaying either each clients custom
  386. # + on-join !tag data or ts3 description field information.
  387. Verbose_Global_Onjoin_Client_Tags = 0
  388.  
  389.  
  390. #__________________________________________________________________________________
  391. # + (ON=1/OFF=0) Display a random global text message color coated from over
  392. # + 1100 hex codes? (rbm_goodbye.cf)
  393. Verbose_Global_Onpart_Random_Goodbye = 0
  394.  
  395. # Add your server to the online list of active RbMod servers at http://rbmod.presension.com/servers
  396. Subscribe_To_Rb_Online_Server_List_On = 0
  397. Subscribe_To_Rb_Online_Server_List_Interval = 300
  398. Subscribe_To_Rb_Online_Server_List_Address_Displayed = My External IP/DNS Of TS3 Server
Add Comment
Please, Sign In to add comment