Difference between revisions of "Cutscript"

From The Broken Dagger Wiki
Jump to: navigation, search
 
Line 1: Line 1:
 
A cutscript is a way to make IRC post more text than it will usually hold in its buffer.  This script will (possibly) only work in mIRC, and handles up to three posts worth of text.  Just put it into your Remote Scripts and load it.
 
A cutscript is a way to make IRC post more text than it will usually hold in its buffer.  This script will (possibly) only work in mIRC, and handles up to three posts worth of text.  Just put it into your Remote Scripts and load it.
  
on *:input:*: {
+
----
  if ( ( $left($1,1) != / ) || ( $1 == /me ) ) {
+
 
    var %next = -
+
on *:input:*:
    var %continue = -
+
if ( ( $left($1,1) != / ) || ( $1 == /me ) ) {
    var %done =  -|
+
var %next = -
    var %more = -
+
var %continue = -
    var %textlen = $len($1-)
+
var %done =  -|
    if (%textlen > 400) {
+
var %more = -
      var %pos = 1
+
var %textlen = $len($1-)
      var %text = $mid($1-, %pos, 400)
+
if (%textlen > 400) {
      var %firsttime = 1
+
var %pos = 1
      while ( %text != $null ) {
+
var %text = $mid($1-, %pos, 400)
        if ( $len($deltok(%text, -1, 32)) < 370 ) {
+
var %firsttime = 1
          %text = $left(%text, 370)
+
while ( %text != $null ) {
          inc %pos 370
+
if ( $len($deltok(%text, -1, 32)) < 370 ) {
        }
+
%text = $left(%text, 370)
        else {
+
inc %pos 370
          %text = $deltok(%text,-1,32)
+
}
          inc %pos $len(%text)
+
else {
          inc %pos
+
%text = $deltok(%text,-1,32)
        }
+
inc %pos $len(%text)
        var %outtext = %text
+
inc %pos
        %text = $mid($1-, %pos, 400)
+
}
        if (%firsttime == 1) {
+
var %outtext = %text
          if ($gettok(%outtext, 1, 32) == /me) {
+
%text = $mid($1-, %pos, 400)
            %outtext %next
+
if (%firsttime == 1) {
          }
+
if ($gettok(%outtext, 1, 32) == /me) {
          else {
+
%outtext %next
            say %outtext %next
+
}
          }
+
else {
          %firsttime = 0;
+
say %outtext %next
        }
+
}
        else {
+
%firsttime = 0;
          if (%text != $null) {
+
}
            say %continue %outtext %next
+
else {
          }
+
if (%text != $null) {
          else {
+
say %continue %outtext %next
            if (%textlen <= 945) {
+
}
              say %continue %outtext %done
+
if (%textlen <= 945) {
            }
+
say %continue %outtext %done
            else {
+
}
              say %continue %outtext %more
+
else {
            }
+
say %continue %outtext %more
          }
+
}
        }
+
}
      }
+
}
      halt
+
}
    }
+
halt
  }
+
}
 +
}

Revision as of 23:19, 23 April 2008

A cutscript is a way to make IRC post more text than it will usually hold in its buffer. This script will (possibly) only work in mIRC, and handles up to three posts worth of text. Just put it into your Remote Scripts and load it.


on *:input:*: if ( ( $left($1,1) != / ) || ( $1 == /me ) ) { var %next = - var %continue = - var %done = -| var %more = - var %textlen = $len($1-) if (%textlen > 400) { var %pos = 1 var %text = $mid($1-, %pos, 400) var %firsttime = 1 while ( %text != $null ) { if ( $len($deltok(%text, -1, 32)) < 370 ) { %text = $left(%text, 370) inc %pos 370 } else { %text = $deltok(%text,-1,32) inc %pos $len(%text) inc %pos } var %outtext = %text %text = $mid($1-, %pos, 400) if (%firsttime == 1) { if ($gettok(%outtext, 1, 32) == /me) { %outtext %next } else { say %outtext %next } %firsttime = 0; } else { if (%text != $null) { say %continue %outtext %next } if (%textlen <= 945) { say %continue %outtext %done } else { say %continue %outtext %more } } } } halt } }