30.08.2018, 02:09
Hello, i am trying to create /v park system...
here is my script :
It's not saving on MySql db also not showing any mysql error on mysql log file..
please help me
here is my script :
PHP код:
if(!strcmp(action, "park", false))
{
if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid, -1, "/v park command is currently disabled");
for(new i=0;i<sizeof(Car);i++)
{
if(IsPlayerInVehicle(playerid, Car[i][c_id]+1))
{
new m[126];
format(m, sizeof(m), "Car parked successfully.", Car[i][c_id]);
new query[512];
format(query, sizeof(query), "UPDATE cars SET c_x='%f', c_y='%f', c_z='%f', c_a='%f' WHERE id='%i'", Car[i][c_x],Car[i][c_y],Car[i][c_z],Car[i][c_a],Car[i][c_id]);
mysql_function_query(dbhandle, query, false, "", "");
SendClientMessage(playerid, -1, m);
return 1;
}
}
}
please help me