import StatsSet

Support for the latest build of L2J Server, get help here with installations, upgrades, problems.
Do not post bugs reports here, use viewforum.php?f=77 instead.
There is no support for other server builds than the official provided by l2jserver.com
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
User avatar
spremusik
Posts: 110
Joined: Fri Oct 21, 2011 8:34 pm

import StatsSet

Post by spremusik »

If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision Number:5191
L2JDP Revision Number:8691
please, one admin, move this here: http://l2jserver.com/forum/viewtopic.ph ... 60#p138033
i dont have the necesary posts and dont want to do post hunting . thx
i was using this script and everything was ok untill i updated to the last version from trunk

now i have this error:

Code: Select all

1. ERROR in \BossRespawn.java (at line 36)        import com.l2jserver.gameserver.templates.StatsSet;               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^The import com.l2jserver.gameserver.templates.StatsSet cannot be resolved----------2. ERROR in \BossRespawn.java (at line 133)        StatsSet stats = GrandBossManager.getInstance().getStatsSet(boss.getId());        ^^^^^^^^StatsSet cannot be resolved to a type----------2 problems (2 errors)The import com.l2jserver.gameserver.templates.StatsSet cannot be resolvedStatsSet cannot be resolved to a type
this is line 36:

Code: Select all

import com.l2jserver.gameserver.templates.StatsSet;
this is line 133:

Code: Select all

StatsSet stats = GrandBossManager.getInstance().getStatsSet(boss.getId());
i'm new to programming pls help me.
i beleve that StatsSet was changed in the last revisions. but i dont know how to search in svn to see the new value

sorry for posting here.
User avatar
Zoey76
L2j Inner Circle
L2j Inner Circle
Posts: 7008
Joined: Tue Aug 11, 2009 3:36 am

Re: import StatsSet

Post by Zoey76 »

It has been moved.

Now is in:

Code: Select all

com.l2jserver.gameserver.model.StatsSet
Replace the import with:

Code: Select all

import com.l2jserver.gameserver.model.StatsSet;
That should fix the problems.
Powered by Eclipse 4.34 🌌 | Eclipse Temurin 21 ☕ | MariaDB 11.3.2 🗃️ | L2J Server 2.6.3.0 - High Five 🚀

🔗 Join our Discord! 🎮💬
User avatar
spremusik
Posts: 110
Joined: Fri Oct 21, 2011 8:34 pm

Re: import StatsSet

Post by spremusik »

that was fast. i was just browsing the classes in eclipse atempting to find it but you was faster.
manny thx
Post Reply