Thankyou, I think I have connected to the correct database, because I see all my char there and I can edit them directly from table in database. There might be an error in your SQL MALL script when selecting a table from the database, I use renewal system. here your script
OnLoad:
.@type = getarg(0, -1);
.@npc = 1;
.@sql$ = "SELECT `id`, `weight`, `" + (.is_renewal_db ? "atk:matk" : "attack") + "`, `slots`, `weapon_level`, `defence`, `equip_level`, `script`, `equip_script`, `unequip_script` "
+ "FROM `" + (.is_renewal_db ? "item_db_re" : "item_db") + "` "
+ "WHERE `type` = "+.@type;
if (.blacklist_item$ != "")
.@sql$ = .@sql$ + " AND `id` NOT IN ("+escape_sql(.blacklist_item$)+")";
.@sql$ = .@sql$ + " ORDER BY `name_english`";
+ "FROM `" + (.is_renewal_db ? "item_db_re" : "item_db") + "` " this line selecting item_db_re becauce is_renewal_db right? I try to learn it. it should be right but why only jellopy appears?