First you have to edit the l2.ini so they can connect to your server
then create a zip file of your system folder using winrar or winzip
then upload it on http://www.multiupload.com or http://www.4shared.com
Good luck ;)
I looking for a server that is close to retail style..... No class change manager, no buffer npc or teleport.. no gm shop.. and has a .noexp feature..... exp rate is 10x - 20x thanks
Well as you can see I only need a code that represents L2NPC
MultiSell.getInstance().separateAndSend(Integer.parseInt(command.substring(9).trim()), player,IDONTKNOW, false);
wherein I need this (int, L2PcInstance, L2NPC, boolean)
and that will be
int - Integer.parseInt(command.substring(9).trim())
L2PcInstance - player
L2NPC - IDONTKNOW <--------- This is my problem
boolean - false
I hope someone help me figure this out.. 8)
I tried it but I never got it :(
UPDATE
nevermind I think the epilogue version and freya are the same I tried it and implement it without problems...
PLEASE LOCK THE TOPIC
I remove the last integer and still I got this error its now like this
MultiSell.getInstance().separateAndSend(Integer.parseInt(command.substring(9).trim()), player,32076, false);
how do I edit this
(int, l2pinstance, int, boolean)
to this
(int, l2pinstance, L2NPC, boolean)
I think the code has a problem in it and I can't understand where it is :(
here is the separateAndSend in MultiClass.java
public final void separateAndSend(int listId, L2PcInstance player, L2Npc npc, boolean inventoryOnly)
{
ListContainer template = _entries.get(listId);
if (template == null)
{
_log.warning("[MultiSell] can't find list id: " + listId + " requested by player: " + player.getName() + ", npcId:" + (npc != null ? npc.getNpcId() : 0));
return;
}
final PreparedListContainer list = new PreparedListContainer(template, inventoryOnly, player, npc);
int index = 0;
do
{
// send list at least once even if size = 0
player.sendPacket(new MultiSellList(list, index));
index += PAGE_SIZE;
}
while (index < list.getEntries().size());
player.setMultiSell(list);
}
8)