I fixed this problem yesterday by COMPLETELY uninstalling mysql, and redoing the process with an earlier version of mysql being 5.2 workbench and then mysql 5.5.28 community server
src/map/itemdb.cpp#L582-L596
/** Specifies if item-type should drop unidentified.
* @param nameid ID of item
*/
char itemdb_isidentified(unsigned short nameid) {
int type=itemdb_type(nameid);
switch (type) {
case IT_WEAPON:
case IT_ARMOR:
case IT_PETARMOR:
case IT_SHADOWGEAR:
return 0; // <--------- REMOVE or Change to 1
default:
return 1;
}
}
You should check
trunk/conf/char_athena.conf
// Server Communication username and password.
userid: YouRO
passwd: mypassword
trunk/conf/map_athena.conf
// Server Communication username and password.
userid: YouRO
passwd: mypassword
then open your main.sql go to login table, put YouRO the same as your user_id you put on char_athena and map_athena and same with the password
then Apply.