16.10.2016, 08:15
Hello. I'm working on a mySQL gamemode. The database is working fine with all other functions. I started working on commands and i got an error.
Here is screenshot from code:
http://imgur.com/a/4qb2z
My database name is : "players" but some of the codes in a script are registring to " Player ".
Here is compile error:
http://imgur.com/a/mJBF6
When I change from "Players" to "player"/"players" I got same error.
I'm little bit confused. Please help me!
Assests:
Here is screenshot from code:
http://imgur.com/a/4qb2z
My database name is : "players" but some of the codes in a script are registring to " Player ".
Here is compile error:
http://imgur.com/a/mJBF6
When I change from "Players" to "player"/"players" I got same error.
I'm little bit confused. Please help me!
Assests:
PHP код:
CMD:test(playerid, params[])
{
if(Player[playerid][kills] == 1)
{
SendClientMessage(playerid, -1, " g");
}
else
{
SendClientMessage(playerid, -1, " not ");
}
return 1;
}