when its done you see a whole listof all characters on your server. You can then click on them to do stuff with them.
For the sql transfer to be successfull, you need to add some htmlescape/javaescape/sqlexcape stuff to the role.jsp.
Code:
~line 450:
rolename = StringEscapeUtils.escapeSql(StringEscapeUtils.escapeJava(StringEscapeUtils.escapeHtml(chr.base.name.getString())));
~line 820:
name = StringEscapeUtils.escapeHtml(character.base.name.getString());
~line 870:
spouse = StringEscapeUtils.escapeHtml(GameDB.get(character.base.reserved1).base.name.getString());
~line 1158:
String rolename = StringEscapeUtils.escapeHtml(ios.m_octets.getString());
~line 1374:
String rolename = StringEscapeUtils.unescapeJava(rs.getString("role_name"));
these are only approximate line numbers, as i changed some other stuff in our role.xml to get rid of that login check junk