Re: v62Project X Custom Party Quest, New Stages,new updates,new Npcs,Instance
Re: v62Project X Custom Party Quest, New Stages,new updates,new Npcs,Instance
Re: v62Project X Custom Party Quest, New Stages,new updates,new Npcs,Instance
but it doesnt warp all of your pt
Re: v62Project X Custom Party Quest, New Stages,new updates,new Npcs,Instance
hey, well the npc takes the items at stage 1
but he is not giving exp and clearing the stg or warping to the next map
Re: v62Project X Custom Party Quest, New Stages,new updates,new Npcs,Instance
Uhm, you can try this:
Add these functions to NPCConversationManager:
Code:
public void warpParty(int mapId) {
warpParty(mapId, 0, 0);
}
public void warpParty(int mapId, int exp, int meso) {
for (MaplePartyCharacter chr_ : getPlayer().getParty().getMembers()) {
MapleCharacter curChar = c.getChannelServer().getPlayerStorage().getCharacterByName(chr_.getName());
if ((curChar.getEventInstance() == null && c.getPlayer().getEventInstance() == null) || curChar.getEventInstance() == getPlayer().getEventInstance()) {
curChar.changeMap(mapId);
if (exp > 0) {
curChar.gainExp(exp, true, false, true);
}
if (meso > 0) {
curChar.gainMeso(meso, true);
}
}
}
}
Only add them if you do not have them already.
Please read us your channel bats too, there must be an error right after he takes the items (too lazy to DL the scripts)
Quote:
Originally Posted by myangel
i like the repack and hope it can help me !
wtf?
Nice 4 month bump O_O.
Re: v62Project X Custom Party Quest, New Stages,new updates,new Npcs,Instance
I'll be using it on my server soon =)
Re: v62Project X Custom Party Quest, New Stages,new updates,new Npcs,Instance
Is This From MiniStory? Cause i remember ministory had this o.o and GJ