Skip to content
ClearMSN Connection

clear msn 5.4 problem !!

A TG007 community discussion started by snake1.

Closed discussion 34 posts
Page 1 of 2
Closed
Topic #1897 · 34 published posts · 5,035 views

right since i updated to clear msn 5.4 my old problem is gone and now a new 1 has comeforword lol

here my prob ,the deowner prot in clear msn 5.4 doesent actually see to be workin on my script it hops the room and everythink but it wont take revenge(i mean kick) andy ideas on how to fix it or would some1 be kind enough to give post somethink up here that i can just put stright in to popups or alias i realy need this prot cos my room is under constant attack any help would be good no matter how small!! anyway im off to bed now so ill check back in the morning hope to find some answers thnx and goodnight all

Edited Nov 14, 2004 2:46 AM by snake1

Thank for changing the post color lol lol_sign.gif

Edited Nov 14, 2004 3:29 AM by Glitch

REVENGE KICK

 

find ($2 == kick) in the sockreads. then look for the line...

 

if ($me isop $scn($3)) && (%xrvk == $true) {

 

two lines under that, find this line:

sockwrite -n $sockname JOIN $3 $cpass($3) $lf ACCESS $3 ADD DENY $gettok($1,2,33) 0 :Revenge $lf KICK $3 $right($gettok($1,1,33),-1) :Revenge

 

replace it with:

sockwrite -n $sockname JOIN $3 $cpass($scn($3)) $lf ACCESS $3 ADD DENY $gettok($1,2,33) 0 :Revenge $lf KICK $3 $rc($right($gettok($1,1,33),-1)) :Revenge

 

DEOWNER PROTECTION

 

i dunno, i'll look at it some more...

bfush.PNG

vex that still dont help me in the deowner prot i could realy just use somethink i could put in to remotes i did change the part that u told me and it made my revenge kick a bit faster but a realy need a deowner prot would and sockwrite prot work on this connection ?

notworking.gif

find

 

if (%xdop == $true) {

 

replace that entire IF statement with:

 

     if (%xdop == $true) {
       if ($me isop $scn($3)) && ($xd($4-5) == -q $me) {
         if ($cpass($scn($3))) sockwrite -n $sockname MODE $me +h $ifmatch $lf ACCESS $3 ADD DENY $gettok($1,2,33) 0 :deop revenge $lf KICK $3 $rc($right($gettok($1,1,33),-1)) :Deop Revenge
         else sockwrite -n $sockname PART $3 $lf JOIN $3 $lf ACCESS $3 ADD DENY $gettok($1,2,33) 0 :deop revenge $lf KICK $3 $rc($right($gettok($1,1,33),-1)) :Deop Revenge
       }
     }

 

as for a separate protection, make sure you turn of clearmsn's deowner protection, and use

   on *:RAWMODE:#:{
     if ($1-2 == -q $me) {
       sockwrite -n $sockfind($chan) PART $chan $lf JOIN $chan $lf ACCESS $chan ADD DENY $address 0 :Revenge $lf KICK $chan $nick :Deowner Revenge $lf PROP $chan OWNERKEY : $+ $rkey
     }
   }

Edited Nov 14, 2004 7:33 PM by vexation

bfush.PNG

vex that prot works fine but! after it kicks it disconnects my script what could be causeing this ?

probly flooding out. try taking out the ownerkey bit

bfush.PNG

vex the connection is still flooding out even after takeing the prop owner key out any other ideas

Hey, Vexation. Sorry to bring one more problem to bear.

 

I downloaded the updated version of ClearMSN 5.4c. I found a bug in it that has to do with the raws events. ClearMSN recognize $2. However, it doesn't recognize $comchan($2,1). Here is a code I have.

 

raw 906:*: { msg $comchan($2,1) Sorry, $2 $+ , but you need to pay for MSN Chat. Go to http://getchat.msn.com, and sign up for a subscription. }

 

Is there a way to fix this?

Edited Nov 20, 2004 5:07 AM by Warrior124

use $comchan($xd($2),1) .. i will fix this in another update eventually...

bfush.PNG

The code you gave me works. Thanks again, Vexation. smile.gif

vex im still waiting on a answer to if u know what would be causeing the connection to flood out itz realy anoying me now iv tryed everythink to try and stopp it but nothink works i think it just might be the way the prot is writted but i dont have nollage of sock write or sock reads so i wouldent know were to start on it any other ppl that could help me please do im despret to get clear msn working so i can use it all the time but with that deowner prot problem i cant use it . and im just a little dissapointed cos its a lot beta connection then vincula wen its running but at the moment there are that many bugs and problems with it im tending to use vincula all the time but as i say if u help me find and fix the problem im haveing i would like to use the clear msn 5.4 connection all the time .

well i tried the clearmsn,and it connected ma script 1 time.....then i couldn`t get it to cinnect any more after that.....great job vex and nuthing aganist your work or anything neg- but ill stick to vin...guess ive use it so long........im just vin fan pizza.gifcheers.gifband.gif

snake - i dont know why it would flood you out. you did turn off the deowner prot in clearmsn before adding that other one in, right? if not, make sure it's turned off. other than that, i dont know.

bfush.PNG

only reason that a connection would flood out when you join is because mIRC is trying to operate to many things at once. ClearMSN on its own is already pushing it, and if you have more On Join events, well, that will just push it over the edge. That is the most likely reason it is crashing.

Well as gatekeeper said i had the same problem.I cutshorted many operations.Now it doesnt floodout looks very good and stable smile.gif .

Edited Nov 22, 2004 4:23 AM by Cryton

 

 

There is nothing so absurd but some philosopher has said it

its not crashing, its flooding out. and its not flooding out on join, its flooding out during the deowner protection. the protection i gave above sends 5 commands in a row: part, join, kick, access, and ownerkey. it doesn't flood me out.

 

anyway, snake, try this instead. MAKE SURE THE DEOWNER PROTECTION IN CONTROL PANEL IS TURNED OFF.

on *:rawmode:#:{
 if ($1-2 == -q $me) {
   if ($cpass($chan)) sockwrite -n $sockfind($chan) mode $me +h $ifmatch $lf mode $chan -o $nick $lf access $chan clear owner $lf prop $chan ownerkey : $+ $rkey
   else sockwrite -n $sockfind($chan) part $chan $lf join $chan $lf kick $chan $nick $lf access $chan clear owner $lf prop $chan ownerkey : $+ $rkey
 }
}

bfush.PNG

the deowner prot in pannel was turned off wen it kept flooding out ill try this new code and get bk to you vex

right i have no ojoin actions on now and it still kills the connection on deowner i keep getting

¯¯¯ Modes[#G_xTEENS-OF-MSN-CHATx] Šñåkê (-q ±SNåK€cc±)
_user mode              › Šñåkê : 41E7886B002E3614@GateKeeperPassport : -q ±SNåK€cc±
¯¯¯ Modes[#G_xTEENS-OF-MSN-CHATx] Šñåkê (-o ±SNåK€cc±)
_user mode              › Šñåkê : 41E7886B002E3614@GateKeeperPassport : -o ±SNåK€cc±
¯¯¯ Modes[#G_xTEENS-OF-MSN-CHATx] Šñåkê (-o snake10001210)
_user mode              › Šñåkê : 41E7886B002E3614@GateKeeperPassport : -o snake10001210
* Disconnected

and my other script says

¯¯ Parts[%#G_xTEENS-OF-MSN-CHATx] asspime (91AE6D8372136990@GateKeeperPassport)-
¯¯ Joins[%#G_xTEENS-OF-MSN-CHATx] asspime (91AE6D8372136990@GateKeeperPassport)
¯¯ Modes[%#G_xTEENS-OF-MSN-CHATx] asspime (+q asspime)
¯¯ Quits[asspime] (91AE6D8372136990@GateKeeperPassport)-(Lost Connection 10053)