Warning 213: Tag Mismatch
#1

Hey Im sad because of this warning:
Код:
D:\Jocuri\SAMP SERVERS\Stuntage Revolution World\gamemodes\samp.pwn(1034) : warning 213: tag mismatch
Here is the code:
At the top of script:
Код:
#define version 2.3
On player connect:
Код:
        new CONNECTINFO[2024];
	strcat(CONNECTINFO, "Welcome to Stunt Revolution World\n");
	strcat(CONNECTINFO, "Current version of server: %d\n\n", version);
	SPD(playerid, connect, DIALOG_STYLE_MSGBOX, ""L"Stunt "W"Revolution "L"World", CONNECTINFO, "Close", "");
How can i solve this?
Reply
#2

Change it to
pawn Код:
#define version "2.3"
Reply
#3

Solved with this
Код:
format(vers, sizeof(vers), "Current version of server: %d\n\n", version);
	strcat(CONNECTINFO, vers);
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)