SA-MP Forums Archive
Words with /, \, _, -, l, | - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Other (https://sampforum.blast.hk/forumdisplay.php?fid=7)
+--- Forum: Everything and Nothing (https://sampforum.blast.hk/forumdisplay.php?fid=23)
+--- Thread: Words with /, \, _, -, l, | (/showthread.php?tid=81236)



Words with /, \, _, -, l, | - Abernethy - 09.06.2009

Is there any simulator or anything I can get a link to say, when you type in a word you get it big using, /, \, _, -, l, | these
EG.
pawn Код:
main()
{
    print(" ");
    print(" ______         _____       _");
    print("| ___ \\        (____ \\      (_)");
    print("| | _ | | ____ ____   _  \\ \\ ____ ___ _ ____ ____  ____ ____");
    print("| || || |/ _ | _ \\  | |  | / _ )/___) |/ _ | _ \\ / _ )/ ___)");
    print("| || || ( ( | | | | | | |__/ ( (/ /|___ | ( ( | | | | ( (/ /| |");
    print("|_||_||_|\\_||_| ||_/  |_____/ \\____|___/|_|\\_|| |_| |_|\\____)_|");
    print("       |_|             (_____|");



Re: Words with /, \, _, -, l, | - -Sneaky- - 09.06.2009

Yes here:

http://www.network-science.de/ascii/

But when I use any of them it says invalid character constant when I try to compile :'(


Re: Words with /, \, _, -, l, | - Abernethy - 09.06.2009

Quote:
Originally Posted by Sneaky.
Yes here:

http://www.network-science.de/ascii/

But when I use any of them it says invalid character constant when I try to compile :'(
Thanks for that mate, greatly appreciated.


Re: Words with /, \, _, -, l, | - rafay - 09.06.2009

Quote:
Originally Posted by Sneaky.
Yes here:

http://www.network-science.de/ascii/

But when I use any of them it says invalid character constant when I try to compile :'(
Same here. :'((
Though, it doesn't matters since players can't look at the prints.


Re: Words with /, \, _, -, l, | - yom - 09.06.2009

Quote:
Originally Posted by Sneaky.
Yes here:

http://www.network-science.de/ascii/

But when I use any of them it says invalid character constant when I try to compile :'(
You have to use the escape character.


Re: Words with /, \, _, -, l, | - -Sneaky- - 11.06.2009

Quote:
Originally Posted by 0rb
Quote:
Originally Posted by Sneaky.
Yes here:

http://www.network-science.de/ascii/

But when I use any of them it says invalid character constant when I try to compile :'(
You have to use the escape character.
Yeah but the text I used didn't have a " in it, and the escape character is not needed for ' .. so..


Re: Words with /, \, _, -, l, | - yom - 11.06.2009

But it is needed for the character '\'


Re: Words with /, \, _, -, l, | - -Sneaky- - 11.06.2009

I didn't know that, it's not needed in SendClientMessage so I assumed it wasn't needed in print/printf.