Stupid Errors but i dont know why LOL
#1

Here are the errors

Код:
D:\Roleplay Server\gamemodes\rpg1.pwn(365) : warning 213: tag mismatch
D:\Roleplay Server\gamemodes\rpg1.pwn(370) : warning 213: tag mismatch
D:\Roleplay Server\gamemodes\rpg1.pwn(375) : warning 213: tag mismatch
here my lines

Код:
    if(strcmp(var, "px", true) == 0)
    {
        mysql_fetch_row(variable);
		pinfo[playerid][px] = floatstr(variable);
    }
    if(strcmp(var, "py", true) == 0)
    {
        mysql_fetch_row(variable);
		pinfo[playerid][py] = floatstr(variable);
    }
    if(strcmp(var, "pz", true) == 0)
    {
        mysql_fetch_row(variable);
		pinfo[playerid][pz] = floatstr(variable);
    }
Reply
#2

On which lines do they occur ?
Reply
#3

You didn't define px,py or pz as floats.

It should be

pawn Код:
enum yourVar
{
    Float:px,
    Float:py,
    Float:pz,
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)