what is going on - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: what is going on (
/showthread.php?tid=479553)
what is going on -
TomatoRage - 05.12.2013
i just added my name in the script then i got these errors
Код:
C:\Users\maher\Desktop\ahmad ghanayem\ълрйеъ\Iron-Players\gamemodes\Iron-Players.pwn(1702) : error 027: invalid character constant
C:\Users\maher\Desktop\ahmad ghanayem\ълрйеъ\Iron-Players\gamemodes\Iron-Players.pwn(1702) : error 027: invalid character constant
C:\Users\maher\Desktop\ahmad ghanayem\ълрйеъ\Iron-Players\gamemodes\Iron-Players.pwn(1703) : error 027: invalid character constant
C:\Users\maher\Desktop\ahmad ghanayem\ълрйеъ\Iron-Players\gamemodes\Iron-Players.pwn(1703) : error 027: invalid character constant
C:\Users\maher\Desktop\ahmad ghanayem\ълрйеъ\Iron-Players\gamemodes\Iron-Players.pwn(1704) : error 027: invalid character constant
C:\Users\maher\Desktop\ahmad ghanayem\ълрйеъ\Iron-Players\gamemodes\Iron-Players.pwn(1704) : error 027: invalid character constant
C:\Users\maher\Desktop\ahmad ghanayem\ълрйеъ\Iron-Players\gamemodes\Iron-Players.pwn(1705) : error 027: invalid character constant
C:\Users\maher\Desktop\ahmad ghanayem\ълрйеъ\Iron-Players\gamemodes\Iron-Players.pwn(1705) : error 027: invalid character constant
C:\Users\maher\Desktop\ahmad ghanayem\ълрйеъ\Iron-Players\gamemodes\Iron-Players.pwn(1706) : error 027: invalid character constant
C:\Users\maher\Desktop\ahmad ghanayem\ълрйеъ\Iron-Players\gamemodes\Iron-Players.pwn(1706) : error 027: invalid character constant
\
thats what i did
pawn Код:
main()
{
print("\n-------------------------------------------------------------------");
print(" _______ _ ____ ___ ");
print("|__ __| | | / _ \ / _ \ ___ ");
print(" | | ___ _ __ ___ __ _| |_ ___ | (_) | __ _| |_| | / _ \ ");
print(" | | / _ \ | '_ ` _ \ / _` | __|/ _ \ |__ __/ / _` \____ || |_| | ");
print(" | || (_) || | | | | || (_| \ | | (_) || | \ \ | (_| _/ || __/ ");
print(" |_| \___/ |_| |_| |_|\__,_|\__| \___/ |_| \_\\__,_| |___/ \___| ");
}
Re: what is going on - Patrick - 05.12.2013
This might be a-bit different but it would work the same because you can't use \ but you can use \\
pawn Код:
#include <a_samp>
main()
{
print("\n-------------------------------------------------------------------");
print(" _______ _ ____ ___ ");
print("|__ __| | | / _ \\ / _ \\ ___ ");
print(" | | ___ _ __ ___ __ _| |_ ___ | (_) | __ _| |_| | / _ \\ ");
print(" | | / _ \\ | '_ ` _ \\ / _` | __|/ _ \\ |__ __/ / _` \\____ || |_| | ");
print(" | || (_) || | | | | || (_| \\ | | (_) || | \\ \\ | (_| _/ || __/ ");
print(" |_| \\___/ |_| |_| |_|\\__,_|\\__| \\___/ |_| \\_\\__,_| |___/ \\___| ");
}
Код:
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
Header size: 116 bytes
Code size: 300 bytes
Data size: 1904 bytes
Stack/heap size: 16384 bytes; estimated max. usage=9 cells (36 bytes)
Total requirements: 18704 bytes
[Finished in 0.2s]
prints
Код:
_______ _ ____ ___
|__ __| | | / _ \ / _ \ ___
| | ___ _ __ ___ __ _| |_ ___ | (_) | __ _| |_| | / _ \
| | / _ \ | '_ ` _ \ / _` | __|/ _ \ |__ __/ / _` \____ || |_| |
| || (_) || | | | | || (_| \ | | (_) || | \ \ | (_| _/ || __/
|_| \___/ |_| |_| |_|\__,_|\__| \___/ |_| \_\__,_| |___/ \___|
Error: read EIO (EIO)
The server stopped.
Credits to
Slice's Pawn Playground
Re: what is going on -
dannyk0ed - 05.12.2013
Deleted
AW: what is going on -
BigETI - 05.12.2013
Look at those "\"s.
http://en.wikipedia.org/wiki/Escape_...cape_character
Re: what is going on -
TomatoRage - 05.12.2013
yea thanks it worked