mIRC Home    About    Download    Register    News    Help

Print Thread
#43306 21/08/03 05:53 AM
Joined: Aug 2003
Posts: 23
M
Ameglian cow
OP Offline
Ameglian cow
M
Joined: Aug 2003
Posts: 23
alias c {

while (%i <= 255) { echo 2 %i
inc %i
echo -s %i chr$(%i)
}


its add on for show all list of ascii codes

#43307 21/08/03 06:14 AM
Joined: Mar 2003
Posts: 1,271
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Mar 2003
Posts: 1,271
And the questions is ?


DALnet #Helpdesk
I hear and I forget. I see and I remember. I do and I understand. -Confucius
#43308 21/08/03 06:25 AM
Joined: Jan 2003
Posts: 150
J
Vogon poet
Offline
Vogon poet
J
Joined: Jan 2003
Posts: 150
woops this what u need grin

Code:
alias c {
  var %i = 0
  while (%i &lt; 255) {
    inc %i
    echo -s %i $chr(%i)
  }
}
}

Last edited by J0ke; 21/08/03 06:35 AM.

Go ahead, jump. 100,000 lemmings can't be wrong.
#43309 21/08/03 06:28 AM
Joined: Aug 2003
Posts: 23
M
Ameglian cow
OP Offline
Ameglian cow
M
Joined: Aug 2003
Posts: 23
how can i do it for this add on works

thnx

#43310 21/08/03 06:40 AM
Joined: Dec 2002
Posts: 397
A
Fjord artisan
Offline
Fjord artisan
A
Joined: Dec 2002
Posts: 397
uhh joke if u didnt notice you have one to many } on the end of that little snipit ;p

Code:
alias c {  
  var %i = 0
  while (%i &lt; 255) {
    inc %i
    echo -s %i $chr(%i)
  }
}


Need amazing web design for low price: http://www.matrixn3t.net
#43311 21/08/03 07:03 AM
Joined: Jan 2003
Posts: 150
J
Vogon poet
Offline
Vogon poet
J
Joined: Jan 2003
Posts: 150
then I guess... I'm still sleeping shocked
-
I was editing post and pasted over old code leaving one ending bracket... :tongue:

Last edited by J0ke; 21/08/03 07:24 AM.

Go ahead, jump. 100,000 lemmings can't be wrong.
#43312 21/08/03 07:12 AM
Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
You guess?

#43313 21/08/03 08:02 AM
Joined: Jan 2003
Posts: 150
J
Vogon poet
Offline
Vogon poet
J
Joined: Jan 2003
Posts: 150
yep how can I know :tongue: maybe this is just a dream grin


Go ahead, jump. 100,000 lemmings can't be wrong.
#43314 21/08/03 10:58 PM
Joined: May 2003
Posts: 215
Fjord artisan
Offline
Fjord artisan
Joined: May 2003
Posts: 215
Also, doing it like that will return an "* /echo: insufficient parameters" when it gets to $chr(32)


- Jason
#43315 21/08/03 11:07 PM
Joined: May 2003
Posts: 2,265
P
Hoopy frood
Offline
Hoopy frood
P
Joined: May 2003
Posts: 2,265
alias c {
var %i 1
while (%i <= 255) {
if (%i == 32) { goto next }
echo -s %i - $chr(%i)
:next
inc %i
}
}

Last edited by pheonix; 21/08/03 11:08 PM.

new username: tidy_trax

Link Copied to Clipboard