SA-MP Forums Archive
[AYUDA]invalid string (possibly non-terminated string) - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Español/Spanish (https://sampforum.blast.hk/forumdisplay.php?fid=29)
+---- Thread: [AYUDA]invalid string (possibly non-terminated string) (/showthread.php?tid=584031)



[AYUDA]invalid string (possibly non-terminated string) - Jesusbenites98 - 01.08.2015

Me pueden ayudar con este error se agradese

EL ERROR
PHP код:
C:\Users\Benites\Desktop\Carteles Unidos Internacional\gamemodes\CUI.pwn(450) : error 037invalid string (possibly non-terminated string)
Pawn compiler 3.2.3664              Copyright (c1997-2006ITB CompuPhase
1 Error

Y ESTA ES LA LINEA

PHP код:
new RandomMessages ACTIVADO;
new Final;
new 
Text:Punto,
    
Text:Letra,
    
Text:Texto2;
new 
RandomMsg[][] =
{
    
"~g~S~w~ERVE~r~R ~r~~h~Comandos>~n~~w~Usa /Comandos~r~|~w~Para ve los comandos disponibles",
    
"~g~S~w~ERVE~r~R ~r~~h~Traficar~n~~w~Quieres traficar droga? ~r~|~w~ usa /Fabrica ~g~GO",
    
"~g~S~w~ERVE~r~R ~r~~h~Info~n~~w~Prohibido usar cheats o mods que te hagan superior" ////ESTA ES LA QUE FALLA
}; 



Respuesta: [AYUDA]invalid string (possibly non-terminated string) - TheMatius - 02.08.2015

Ahн, no hay ningъn error intenta mirando las lineas de adelante o atrбs, puede ser un error diferente.
Este error sucede cuando te falta una comilla para cerrar un texto, posiblemente en la linea siguiente. Busca en los SendClientMessage o format.


Respuesta: [AYUDA]invalid string (possibly non-terminated string) - Parka - 02.08.2015

Coloca le las llaves, recuerda que es bidimensional no Unidimensional.

pawn Код:
new const RandomMsg[][] =
{
    {"~g~S~w~ERVE~r~R ~r~~h~Comandos>~n~~w~Usa /Comandos~r~|~w~Para ve los comandos disponibles"},
    {"~g~S~w~ERVE~r~R ~r~~h~Traficar~n~~w~Quieres traficar droga? ~r~|~w~ usa /Fabrica ~g~GO"},
    {"~g~S~w~ERVE~r~R ~r~~h~Info~n~~w~Prohibido usar cheats o mods que te hagan superior"}
};



Respuesta: [AYUDA]invalid string (possibly non-terminated string) - Jesusbenites98 - 03.08.2015

Quote:

Coloca le las llaves, recuerda que es bidimensional no Unidimensional.

Cуdigo:
new const RandomMsg[][] =
{
{"~g~S~w~ERVE~r~R ~r~~h~Comandos>~n~~w~Usa /Comandos~r~|~w~Para ve los comandos disponibles"},
{"~g~S~w~ERVE~r~R ~r~~h~Traficar~n~~w~Quieres traficar droga? ~r~|~w~ usa /Fabrica ~g~GO"},
{"~g~S~w~ERVE~r~R ~r~~h~Info~n~~w~Prohibido usar cheats o mods que te hagan superior"}
};
__________________

:O Gracias parka