Top

Complete Binary Conversion


mIRC Code
+ 0 likes
Please Register to submit score.
Average Score  6.8
Scores Submitted  5
Date Added  Mar 29, 2005
Last Updated  Sep 04, 2008
  Bookmark and Share

Introduction

Ok this is a script that will convert a number to binary.... a binary number to a number or a character to binary, or binary to a character.... It's very easy to use... just type help if you don't get it but the comments at the start should explain it all... enjoy!

Grab the Code

Comments

  (2)  RSS
DarthReven
Comments: 468
 
mIRC Snippet:  Complete Binary Conversion
Posted on Mar 29, 2005 11:07 pm
you could handle an entire word useing this: var %x $strip($1) { var %b 1,%y | while (%b >= $len(%x)) { %y = $addtok(%x,$iif(%b == 1,$+(binary_of_,$left(%x,1),_is_,$base($left(%x,1),10,2)),$+(binary_of_,$left($mid(%x,%b),1),_is_,$base($left($mid(%x,%b),1))) | inc %b } | msg $chan Text: $+(%x,$chr(44)) $replacecs(%y,$chr(95),$chr(32)) } }
DarthReven
Comments: 468
 
mIRC Snippet:  Complete Binary Conversion
Posted on Mar 29, 2005 11:33 pm
or something like that

Please Register or Login to start posting comments.
Bottom