Page 1 of 1

Instance with Interlude

Posted: Wed Jul 14, 2010 2:57 pm
by drk88
I'm beginner in jython and I tried some instances script but it never worked.

I want make instance zone for one party and the instace has one boss.

Anyone can help me?

Re: Instance with Interlude

Posted: Wed Jul 14, 2010 6:44 pm
by theone
Well, the way the Instances system is made on L2J is not so simple to port to interlude.
In my opinion, if you want such a system for only events and such, you should make one yourself and add it to your core.
It's quite simple actually to make a simple instance system. Everything goes back to the npc,mob,player knownlists.
You just need to set a variable in L2Object.java(because everything gets affected: doors, mobs, npcs, players, etc...) that has the instance ID in it.
Then when you update the knownlist of mobs,npcs,players,etc you only add the objects which have the same instance ID.
Et voila! You've got your very own instance system(well, a simplified version of...).

Re: Instance with Interlude

Posted: Wed Aug 11, 2010 1:56 pm
by sancak
is there any guide or just reading other instance etc?