Page 1 of 1

A couple of random questions

Posted: Fri Nov 27, 2009 12:54 am
by glasya
L2J Revision Number: Not Needed
L2JDP Revision Number: Not Needed

Hello, i have a couple of general questions about the latest gracia final status.

1) What is the status of fantasy island? I saw certain files in the gameserver, but besides a gatekeeper ingame, nothing is going on there, no parade, no show etc. Is it not working or do i have to enable something for it.

2) On a private server which name i won't mention, i saw a chessgame event in fantasy island, is this supported by l2j?

3) On this same server i also saw an event where like 4 people could sign up to an event, when it started all players got a diffrent name color (red/green/yellow/etc) and they were doing a Last man standing event in giran, other players could no interfear in this event (not target / attack /buff / heal etc), is anyone familiair with this event?

4) Is there anyway i can allow clanleaders to learn clanskills without clanpoints? I already disabled the need for the items themself.

5) Is there anyway i could add an option to the TvT event to remove inactive players and give them some sort of penalty? Like jail for 10 minutes or so.

6) When editing a raidboss, do i have to use catagory's which i can make up myself? I use cat 1 for adena, 2 for goldbar, 3 for bews. So can i continue with like 4 for beas, 5 for festival adena etc? I want all the items to drop 100% with certain min/max values.

Re: A couple of random questions

Posted: Fri Nov 27, 2009 6:41 am
by janiii
6. Yes,you can use is like that,only remember that -1 is always spoil.

Re: A couple of random questions

Posted: Fri Nov 27, 2009 7:39 am
by janiii
4. check class RequestAquireSkill and find line 323 (or maybe somewhere around) and just comment it out

Code: Select all

player.getClan().setReputationScore(player.getClan().getReputationScore()-repCost, true);

Re: A couple of random questions

Posted: Fri Nov 27, 2009 11:07 am
by Bloodshed
glasya wrote: 1) What is the status of fantasy island? I saw certain files in the gameserver, but besides a gatekeeper ingame, nothing is going on there, no parade, no show etc. Is it not working or do i have to enable something for it.
Show starts at 8pm ingame time i think, parade not done, block game not done, kratei's cube not done.

glasya wrote: 2) On a private server which name i won't mention, i saw a chessgame event in fantasy island, is this supported by l2j?
you will have to make it yourself unless its shared in the forums somewhere

glasya wrote: 3) On this same server i also saw an event where like 4 people could sign up to an event, when it started all players got a diffrent name color (red/green/yellow/etc) and they were doing a Last man standing event in giran, other players could no interfear in this event (not target / attack /buff / heal etc), is anyone familiair with this event?
Searchs custom mods

Re: A couple of random questions

Posted: Fri Nov 27, 2009 11:46 am
by Pere
glasya wrote: 2) On a private server which name i won't mention, i saw a chessgame event in fantasy island, is this supported by l2j?
My server :D
Near 5k added source lines, using l2j.
I have no intention to share it, too much work for a unique (only 1 minigame..), but you can try to program it by yourself :P
This minigame does not exist on the official server, so if l2j had official support for it, it would be a l2jmod.

Re: A couple of random questions

Posted: Sat Nov 28, 2009 2:26 pm
by glasya
janiii wrote:4. check class RequestAquireSkill and find line 323 (or maybe somewhere around) and just comment it out

Code: Select all

player.getClan().setReputationScore(player.getClan().getReputationScore()-repCost, true);
In Eclipse where do i find that class?
Can you tell the eclipse breadcrum.

Edit: i found it using the find function inside eclipse testing it now
Edit2: Did not work im affraid
Edit3: Fixed it by changing the if statement to 0

Re: A couple of random questions

Posted: Sun Nov 29, 2009 1:52 am
by glasya
Ok next one, where can i find the code that handles the clan levelup requirements?

Re: A couple of random questions

Posted: Sun Nov 29, 2009 8:06 am
by janiii
glasya wrote:Ok next one, where can i find the code that handles the clan levelup requirements?
hm, first class i would look in is L2Clan ;) (when searching for java classes, you can use ctrl+shift+t and name of class)