==========================================================
UPDATED : Already worked them out !!! THANK YOU anyway .
==========================================================
Could anyone please help me with this part of the code ? Im using Acis 370
private static String getGroupSkillList(Player player, String groupType, String schemeName)
{
final List<Integer> skills = new ArrayList<>();
for (int skillId : BufferManager.getSkillsIdsByType(groupType))
{
if (BufferManager.getInstance().getSchemeContainsSkill(player.getObjectId(), schemeName, skillId))
continue;
skills.add(skillId);
}
also this one :
final StringBuilder sb = new StringBuilder(500);
sb.append("<table>");
int count = 0;
for (String s : BufferManager.getSkillTypes())
{
if (count == 0)
sb.append("<tr>");
Thanks for the share, and for the help :D