]> jfr.im git - irc.git/blame - software/!RELEASES/ircservices/achurch.org/services/lists/ircservices/2000/000920.html
add kvirc releases
[irc.git] / software / !RELEASES / ircservices / achurch.org / services / lists / ircservices / 2000 / 000920.html
CommitLineData
3bd189cb
JR
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
2<HTML>
3 <HEAD>
4 <TITLE> [IRCServices] umode or services option
5 </TITLE>
6 <LINK REL="Index" HREF="index.html" >
7 <LINK REL="made" HREF="mailto:ircservices%40ircservices.za.net?Subject=%5BIRCServices%5D%20umode%20or%20services%20option&In-Reply-To=">
8 <META NAME="robots" CONTENT="index,nofollow">
9 <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
10 <LINK REL="Previous" HREF="000919.html">
11 <LINK REL="Next" HREF="000922.html">
12 </HEAD>
13 <BODY BGCOLOR="#ffffff">
14 <H1>[IRCServices] umode or services option</H1>
15 <B>Ciar&#225;n Reilly</B>
16 <A HREF="mailto:ircservices%40ircservices.za.net?Subject=%5BIRCServices%5D%20umode%20or%20services%20option&In-Reply-To="
17 TITLE="[IRCServices] umode or services option">Ciaran.Reilly at ntlworld.com
18 </A><BR>
19 <I>Thu Oct 19 09:07:14 PDT 2000</I>
20 <P><UL>
21 <LI>Previous message: <A HREF="000919.html">[IRCServices] umode or services option
22</A></li>
23 <LI>Next message: <A HREF="000922.html">[IRCServices] umode or services option
24</A></li>
25 <LI> <B>Messages sorted by:</B>
26 <a href="date.html#920">[ date ]</a>
27 <a href="thread.html#920">[ thread ]</a>
28 <a href="subject.html#920">[ subject ]</a>
29 <a href="author.html#920">[ author ]</a>
30 </LI>
31 </UL>
32 <HR>
33<!--beginarticle-->
34<PRE>Aha, soz :-)
35
36
37----- Original Message -----
38From: &quot;Andrew Kempe&quot; &lt;<A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">andrewk at icon.co.za</A>&gt;
39To: &lt;<A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">ircservices at snow.shadowfire.org</A>&gt;
40Sent: Thursday, October 19, 2000 5:01 PM
41Subject: Re: [IRCServices] umode or services option
42
43
44&gt;<i> ircservices-coding list please :)
45</I>&gt;<i>
46</I>&gt;<i> Thanks guys.
47</I>&gt;<i>
48</I>&gt;<i> Andrew
49</I>&gt;<i>
50</I>&gt;<i> ----- Original Message -----
51</I>&gt;<i> From: &quot;David Blanchard&quot; &lt;<A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">dblanch at home.com</A>&gt;
52</I>&gt;<i> To: &lt;<A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">ircservices at snow.shadowfire.org</A>&gt;
53</I>&gt;<i> Sent: Thursday, October 19, 2000 5:32 PM
54</I>&gt;<i> Subject: Re: [IRCServices] umode or services option
55</I>&gt;<i>
56</I>&gt;<i>
57</I>&gt;<i> &gt; Wow, where to begin... lol
58</I>&gt;<i> &gt;
59</I>&gt;<i> &gt; Well, at one point I had to modify 'configure' to compile specifically
60</I>for
61&gt;<i> &gt; Elite (#define IRC_ELITE) as there is an option in the ircd to prevent
62</I>&gt;<i> &gt; colors from being sent to the channel (like Bahamut) but is not
63</I>supported
64&gt;<i> in
65</I>&gt;<i> &gt; Dal_4_4_15. I have also kept compatibilty with Andrew's code, in case
66</I>he
67&gt;<i> &gt; might ask to incorporate some of this into the next version of
68</I>services...
69&gt;<i> &gt; (hint, hint!) Actually, the one flag I added in NickServ flags is prolly
70</I>&gt;<i> &gt; going to have to change (NI_FORCEID 0x00001000) as I don't know if
71</I>Andrew
72&gt;<i> &gt; has plans to use a flag there or not in future versions... hmmm maybe I
73</I>&gt;<i> need
74</I>&gt;<i> &gt; to get with him on this as a request :) I was planning on adding that
75</I>&gt;<i> mlock
76</I>&gt;<i> &gt; to Chanserv for +O channels, but haven't done it yet... it's easy
77</I>&gt;<i> enough...
78</I>&gt;<i> &gt;
79</I>&gt;<i> &gt; first add a CMODE_O to the services.h (0x00000800 perhaps?)
80</I>&gt;<i> &gt;
81</I>&gt;<i> &gt; then basically have this code in chanserv.c
82</I>&gt;<i> &gt;
83</I>&gt;<i> &gt; #if defined(IRC_BAHAMUT) || defined(IRC_ELITE)
84</I>&gt;<i> &gt; (ci-&gt;mlock_off &amp; CMODE_O) ? &quot;O&quot; : &quot;&quot;,
85</I>&gt;<i> &gt; #else
86</I>&gt;<i> &gt; &quot;&quot;,
87</I>&gt;<i> &gt; #endif
88</I>&gt;<i> &gt;
89</I>&gt;<i> &gt; BTW, here's what I changed in chanserv.c for the color mode:
90</I>&gt;<i> &gt;
91</I>&gt;<i> &gt; #if defined(IRC_BAHAMUT) || defined(IRC_ELITE)
92</I>&gt;<i> &gt; #ifdef IRC_BAHAMUT
93</I>&gt;<i> &gt; (ci-&gt;mlock_off &amp; CMODE_C) ? &quot;c&quot; : &quot;&quot;,
94</I>&gt;<i> &gt; #else
95</I>&gt;<i> &gt; (ci-&gt;mlock_off &amp; CMODE_C) ? &quot;x&quot; : &quot;&quot;,
96</I>&gt;<i> &gt; #endif
97</I>&gt;<i> &gt;
98</I>&gt;<i> &gt; #else
99</I>&gt;<i> &gt; &quot;&quot;,
100</I>&gt;<i> &gt; #endif
101</I>&gt;<i> &gt;
102</I>&gt;<i> &gt; There are a few places this needs to be modified, but you get the
103</I>idea...
104&gt;<i> &gt;
105</I>&gt;<i> &gt;
106</I>&gt;<i> &gt; David
107</I>&gt;<i> &gt;
108</I>&gt;<i> &gt; ----- Original Message -----
109</I>&gt;<i> &gt; From: &quot;Ciar&#225;n Reilly&quot; &lt;<A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">Ciaran.Reilly at ntlworld.com</A>&gt;
110</I>&gt;<i> &gt; To: &lt;<A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">ircservices at snow.shadowfire.org</A>&gt;
111</I>&gt;<i> &gt; Sent: Thursday, October 19, 2000 7:48 AM
112</I>&gt;<i> &gt; Subject: Re: [IRCServices] umode or services option
113</I>&gt;<i> &gt;
114</I>&gt;<i> &gt;
115</I>&gt;<i> &gt; &gt; Yeah, I used that umode myself when I was running Elite, it can be
116</I>quite
117&gt;<i> &gt; &gt; handy.... are you using it ? If so, may I ask what tweaks you've made
118</I>to
119&gt;<i> &gt; &gt; optimize it more for Services ?
120</I>&gt;<i> &gt; &gt;
121</I>&gt;<i> &gt; &gt; Ciar&#225;n.
122</I>&gt;<i> &gt; &gt;
123</I>&gt;<i> &gt;
124</I>&gt;<i> &gt;
125</I>&gt;<i> &gt;
126</I>&gt;<i> &gt; ---------------------------------------------------------------
127</I>&gt;<i> &gt; To unsubscribe, send email to <A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">majordomo at snow.shadowfire.org</A>
128</I>&gt;<i> &gt; with &quot;unsubscribe ircservices&quot; in the body, without the quotes.
129</I>&gt;<i> &gt;
130</I>&gt;<i>
131</I>&gt;<i>
132</I>&gt;<i> ---------------------------------------------------------------
133</I>&gt;<i> To unsubscribe, send email to <A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">majordomo at snow.shadowfire.org</A>
134</I>&gt;<i> with &quot;unsubscribe ircservices&quot; in the body, without the quotes.
135</I>
136
137---------------------------------------------------------------
138To unsubscribe, send email to <A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices">majordomo at snow.shadowfire.org</A>
139with &quot;unsubscribe ircservices&quot; in the body, without the quotes.
140
141
142</PRE>
143
144<!--endarticle-->
145 <HR>
146 <P><UL>
147 <!--threads-->
148 <LI>Previous message: <A HREF="000919.html">[IRCServices] umode or services option
149</A></li>
150 <LI>Next message: <A HREF="000922.html">[IRCServices] umode or services option
151</A></li>
152 <LI> <B>Messages sorted by:</B>
153 <a href="date.html#920">[ date ]</a>
154 <a href="thread.html#920">[ thread ]</a>
155 <a href="subject.html#920">[ subject ]</a>
156 <a href="author.html#920">[ author ]</a>
157 </LI>
158 </UL>
159
160</body></html>