Hi all,

well i need a little (big) help for my mIRC Server ...

I've a server made in mIRC that is compatible with the OCX of MSN and i've got that error message in status window :

Code:
 * /sockwrite: 'ppr.%#Magia_do_Amor.*' queue would exceed 16384 bytes (line 342, aliases.txt) 


my problem is that i dont understand nothing on write and read sock's so im gonna paste you the code of alias who as the problem.

The Alias code is:

Code:
 alias sendtoroom { 
  if ($sock($2)) {
    var %a = $2
    var %b = sockwait. $+ $iif($gettok($2,3,46),$gettok($2,3,46),$gettok($2,2,46))
    sockrename %a %b
    if ($sock(ppr. $+ $1 $+ .*,0) >= 1) { sockwrite -tn ppr. $+ $chr(37) $+ $chr(35) $+ $right($1,-2) $+ .* : $+ $iif(*!*@* iswm $2,$2,$gna($2)) $3- }
    sockrename %b %a
  }
  else {
    if ($sock(ppr. $+ $1 $+ .*,0) >= 1) { sockwrite -tn ppr. $+ $1 $+ .* : $+ $iif(*!*@* iswm $2,$2,$gna($2)) $3- }
  }
} 


and the line 342 of aliases.txt is:

Code:
  if ($sock(ppr. $+ $1 $+ .*,0) >= 1) { sockwrite -tn ppr. $+ $chr(37) $+ $chr(35) $+ $right($1,-2) $+ .* : $+ $iif(*!*@* iswm $2,$2,$gna($2)) $3- }


so ...

I dont see nothing that speack on "queue would exceed 16384 bytes" confused

Can somebody who understand of mIRC Scripting help me with that please?

Thanks and sorry for my english
Bye all

Neo

Moved to Scripts & Popups. Threads usually answered quicker when posted in the right forum

Last edited by Mentality; 14/10/05 12:48 PM.