Advertisement
iPeer

Untitled

Mar 29th, 2012
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 0.33 KB | None | 0 0
  1. alias mcitemstojava {
  2.   var %out javamcitems.txt, %in mcitems.txt
  3.   var %lines $lines(%in)
  4.   var %readn 1
  5.   remove %out
  6.   while (%readn <= %lines) {
  7.     tokenize $asc(#) $read(%in, %readn)
  8.     var %case $1, %item $3-
  9.     write %out case %case $+ :
  10.     write %out return " $+ %item $+ ";
  11.     inc %readn
  12.   }
  13.   run %out
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement