error 037: invalid string (possibly non-terminated string)
#1

admin.pwn(5444) : error 037: invalid string (possibly non-terminated string)

Код:
sendServerInfo(playerid) {
	new msg[128];
	SendClientMessage(playerid, X11_ORANGE,"------------------------");
	format(msg, sizeof(msg), "Welcome to California Gaming Roleplay.");
	SendClientMessage(playerid,COLOR_LIGHTBLUE,msg);
(line 5444)	format(msg, sizeof(msg), "Script Mode: %s",VERSION);
	SendClientMessage(playerid,COLOR_LIGHTBLUE,msg);
	sendPlayerMOTD(playerid);
	SendClientMessage(playerid, X11_ORANGE,"-----------------------");
}
forwar
Reply
#2

You forgot to close the quotation mark in the definition of VERSION. For example:
pawn Код:
#define VERSION "1.2
will give that error and this is the fixed one:
pawn Код:
#define VERSION "1.2"
Reply
#3

Holly sh*t, thanks dude
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)