23.02.2014, 22:50
Well, after creating my interiors, I encountered another problem : owner name.
In my enum, I created the mProprio like that
And when I use this var, i have the error 047
Here is the code
Someone has an idea ?
Thanks in advance
In my enum, I created the mProprio like that
PHP код:
enum mInfo
{
mProprio[MAX_PLAYER_NAME+1];
};
Here is the code
PHP код:
#define MAISON_DEFAULTP "Agence immobiliиre"
// My error codes
InfoMaison[i][mProprio] = MAISON_DEFAULTP;
mysql_get_field("proprio", propname); // In my database, the column proprio is a varchar(31)
InfoMaison[idx][mProprio] = propname; // Error here
InfoMaison[idx][mProprio] = propname; // Propname is the same var as before
new pname[MAX_PLAYER_NAME+1];
GetPlayerName(playerid, pname, MAX_PLAYER_NAME+1);
InfoMaison[i][mProprio] = pname; // Error there
Thanks in advance