$Id: macro.pl r6744 2009-06-28 20:05:00Z ezza $
i try
macro aa {
do c Unknown #$.lastMatch1
}
or
do c Unknown \#$.lastMatch1 (this will print \ too or any character before # likes .# $# "# ect)
do c Unknown \x{0023}$.lastMatch1 (this will print \x{0023})
how to just print # character?
how to print # character on console?
Moderator: Moderators
-
xxstreme
- Human

- Posts: 20
- Joined: 03 Dec 2008, 15:46
- Noob?: Yes
-
EternalHarvest
- Developers

- Posts: 1798
- Joined: 05 Dec 2008, 05:42
- Noob?: Yes
Re: how to print # character on console?
Try something like that:
Code: Select all
do c Unknown @eval("\x{0023}")$.lastMatch1
-
xxstreme
- Human

- Posts: 20
- Joined: 03 Dec 2008, 15:46
- Noob?: Yes
Re: how to print # character on console?
@eval("\x{0023}")
oh thx that was good
oh thx that was good