Top

mIRC Code Snippets Tagged with split

  (4)  
Sort by 
Copy/Paste in Remote
1 comment(s)   |   Score: 0.0   |   Language: mIRC   |   Posted by Anarchy[MKD] on Jan 14, 2008
This is a rather simplistic snippet I made for a friend. It simply splits your text up. $split.text(hiiiii,32) would echo "h i" The format is $split.text(string,C,N) Examples: //noop $split.text(test,32,100) //noop
Tags: split  text 
17 comment(s)   |   Score: 7.0   |   Language: mIRC   |   Posted by Lindrian on Dec 21, 2007
<pre>; ; /splitfile [-bdfor] [OutputDir] &#60N&#62 &#60file&#62 ; ; /splitfile splits a file into multiple parts of N bytes. ; Usefull for example if you want to send large files
Tags: binary  file  split  splitfile 
2 comment(s)   |   Score: 7.8   |   Language: mIRC   |   Posted by QuickStep on Aug 19, 2006
Basically works like /tokenize, except you specify a character or string to split tokens by instead of an ascii number. It also fills $sN, $sN-, $sN-N, etc instead of $N, $N- and $N-N. There are comments
Tags: split  token  tokeniser  tokenizer 
3 comment(s)   |   Score: 6.3   |   Language: mIRC   |   Posted by hixxy on Oct 18, 2005
Bottom