View previous topic :: View next topic |
Author |
Message |
Scandum Site Admin
Joined: 03 Dec 2004 Posts: 3844
|
Posted: Sat Jan 10, 2009 12:32 pm Post subject: TinTin++ 1.98.8 |
|
|
- A pre-parser has been added that allows for deeper nesting with #if checks.
- Added #while {var} {command} to run while loops.
- The #loop command used with one argument no longer works like a while loop.
- The $loop, $forall, and $parse variables are no longer automatically set.
- The #write command now partly formats.
- Fixed a bug with regular expression arguments for OS X.
- Changed the %t #format option to use a strftime format to create time stamps.
- Fixed telopt handling to avoid MCCP errors.
|
|
Back to top |
|
 |
murlyn
Joined: 17 Sep 2007 Posts: 27
|
Posted: Sun Jan 18, 2009 9:14 pm Post subject: |
|
|
Speedwalking shortcuts seem to be messed up now. For example, I used to be able to write 12n and it would go 12n, but now it doesn't understand it. Do I actually have to type out n;n;n;n;n;n;n;n;n;n;n; now? |
|
Back to top |
|
 |
Scandum Site Admin
Joined: 03 Dec 2004 Posts: 3844
|
Posted: Tue Jan 20, 2009 1:50 am Post subject: |
|
|
It's a bug, I'll look into it.
If it's any help, you can execute speedwalks using .12n with the following script:
Code: |
#alias {.%0}
{
#list cnt clr;
#parse {%0}
{
#if {"&0" >= "0" && "&0" <= "9"}
{
#var cnt ${cnt}&0
}
#if {"$cnt" == ""}
{
#send &0
}
{
#loop {1 $cnt}
{
#send &0;
};
#list cnt clr
}
}
}
|
|
|
Back to top |
|
 |
murlyn
Joined: 17 Sep 2007 Posts: 27
|
Posted: Tue Jan 20, 2009 6:19 am Post subject: |
|
|
Thanks! I was hoping it was a bug, and not a feature  |
|
Back to top |
|
 |
louipc
Joined: 16 Jul 2006 Posts: 65
|
Posted: Sun Jan 25, 2009 5:57 pm Post subject: |
|
|
Yep and I seem to be speedwalking when I have speedwalking turned off.
It seems the on/off for speedwalking is reversed in this release. Haha. |
|
Back to top |
|
 |
|