how to print # character on console?

All about the macro plugin can be found in this forum. This forum is intended for the macro plugin only.

Moderator: Moderators

xxstreme
Human
Human
Posts: 20
Joined: 03 Dec 2008, 15:46
Noob?: Yes

how to print # character on console?

#1 Post by xxstreme »

$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?
EternalHarvest
Developers
Developers
Posts: 1798
Joined: 05 Dec 2008, 05:42
Noob?: Yes

Re: how to print # character on console?

#2 Post by EternalHarvest »

Try something like that:

Code: Select all

do c Unknown @eval("\x{0023}")$.lastMatch1
xxstreme
Human
Human
Posts: 20
Joined: 03 Dec 2008, 15:46
Noob?: Yes

Re: how to print # character on console?

#3 Post by xxstreme »

@eval("\x{0023}")

oh thx that was good