853. ReloginhoTime79 = TextDrawCreate(394.000000, 326.000000, "\"); 854. TextDrawBackgroundColor(ReloginhoTime79, 255); 855. TextDrawFont(ReloginhoTime79, 1); 856. TextDrawLetterSize(ReloginhoTime79, 0.459999, 0.699999); 857. TextDrawColor(ReloginhoTime79, -1); 858. TextDrawSetOutline(ReloginhoTime79, 0); 859. TextDrawSetProportional(ReloginhoTime79, 1); 860. TextDrawSetShadow(ReloginhoTime79, 0); 861. TextDrawSetSelectable(ReloginhoTime79, 0);
C:\Users\User\Not_Defined\GameMode\gamemodes\grandlarc.pwn(853) : error 037: invalid string (possibly non-terminated string) C:\Users\User\Not_Defined\GameMode\gamemodes\grandlarc.pwn(853) : warning 215: expression has no effect C:\Users\User\Not_Defined\GameMode\gamemodes\grandlarc.pwn(853) : error 001: expected token: ";", but found ")" C:\Users\User\Not_Defined\GameMode\gamemodes\grandlarc.pwn(853) : error 029: invalid expression, assumed zero C:\Users\User\Not_Defined\GameMode\gamemodes\grandlarc.pwn(853) : fatal error 107: too many error messages on one line Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 4 Errors.
ReloginhoTime79 = TextDrawCreate(394.000000, 326.000000, "aaaaaaaa\
aaaaaaaaaaaaaa");
TextDrawBackgroundColor(ReloginhoTime79, 255);
TextDrawFont(ReloginhoTime79, 1);
TextDrawLetterSize(ReloginhoTime79, 0.459999, 0.699999);
TextDrawColor(ReloginhoTime79, -1);
TextDrawSetOutline(ReloginhoTime79, 0);
TextDrawSetProportional(ReloginhoTime79, 1);
TextDrawSetShadow(ReloginhoTime79, 0);
TextDrawSetSelectable(ReloginhoTime79, 0);
falo do caractere barra invertida codigo: 005C que eu quero usar como um estilo de design e nгo simplesmente quebrar a linha
|
\0 NULL character Ends a string. EOS NULL character (same as above) \n Line feed use \n for a new line in Linux (also works in Windows) \r Carriage return Use \r\n for a new line in Windows \\ Backslash Used to put an actual backslash in a string \' Single quote Used to use an actual single quote as a character in single quotes (use: '\'') \" Double quotes Used to put an actual double quote in a string \xNNN; Hex number Used to set the character to the character represented by the hex number specified in place on NNN \NNN; Number Used to set the character to the character represented by the number specified in place of NNN (see \0)