Top

backwards speech

Please Register to submit score.
Average Score  6.0
Scores Submitted  2
Date Added  Mar 08, 2008
Last Updated  Mar 08, 2008
Tags  allias  funny 

Introduction

Got this idea, had a few thoughts about how should i do it, did it this way...
And when it was finished, realized that there's no real use for backwards speech lol .. It may be funny, so here's the code.

usage is :

/backwards This is only an example of backwards speech

result :

hceeps sdrawkcab fo elpmaxe na ylno si sihT



Grab the Code

Comments

  (4)  RSS
xDaeMoN
Comments: 696
 
mIRC Snippet:  backwards speech
Posted on Mar 8, 2008 2:22 am
You can just 1 while loop, then work your way from the end to the beginning with $mid. :)
SyntaxIRC
Comments: 37
 
mIRC Snippet:  backwards speech
Posted on Mar 8, 2008 4:02 am
Mhm;

Code:
backwards {
  var %x = 1
  while %x <= $len($1-) {
    var %bkw = $+($iif($mid($1-,%x,1) == $chr(32),[^/],$v1),%bkw)
    inc %x
  }
  return $replace(%bkw,[^/],$chr(32))
}


:)
dmdifiore
Comments: 8
 
mIRC Snippet:  backwards speech
Posted on Mar 10, 2008 9:02 am
alias reverse { msg $active $regsubex($1-,/(.)/g,$mid(A,-n,1)) }

Had this in my alias section for a while now. This was made by one of my friends while working on a mimic script.
RagBot
Comments: 35
 
mIRC Snippet:  backwards speech
Posted on May 31, 2008 9:03 am
lol this is fun to mess with people's minds :). This is a great and fun script, i'm giving it a 10/10. Keep it up, lol.

Please Register or Login to start posting comments.
Bottom