-
Content Count
252 -
Joined
-
Last visited
-
Days Won
5 -
Feedback
0%
<< Masterio >> last won the day on September 23 2017
<< Masterio >> had the most liked content!
Community Reputation
9 NeutralAbout << Masterio >>

-
Rank
Knight
Profile Information
-
Current Mood
Busy
-
Gender
Male
-
Country
Poland
-
Location
Underworld
-
Interests
Programming, Game Development
Recent Profile Visitors
-
Code Rank Pvp System 3.8.9 [Il - H5]
<< Masterio >> replied to << Masterio >>'s topic in Server Shares & Files [L2J]
Sorry guys, now I am android games developer and I have no time for JAVA [perhaps in the future]. PS: Code have some bugs for sure, I started learn java on it, if you are good in programming you can improve it on your own ;) -
Code Rank Pvp System 3.8.9 [Il - H5]
<< Masterio >> replied to << Masterio >>'s topic in Server Shares & Files [L2J]
Try to use "User Command", but it require edit 1 of client file. -
Code Rank Pvp System 3.8.9 [Il - H5]
<< Masterio >> replied to << Masterio >>'s topic in Server Shares & Files [L2J]
yes the diff files inside, but it is diff for clear server files. -
Code Rank Pvp System 3.8.9 [Il - H5]
<< Masterio >> replied to << Masterio >>'s topic in Server Shares & Files [L2J]
I released the new version only for H5 server (i have no time for conversions this time). Thanks for using. -
Code Rank Pvp System 3.8.9 [Il - H5]
<< Masterio >> replied to << Masterio >>'s topic in Server Shares & Files [L2J]
acis not support voiceCommands. -
Code Rank Pvp System 3.8.9 [Il - H5]
<< Masterio >> replied to << Masterio >>'s topic in Server Shares & Files [L2J]
I am using JDK 1.7 and it works fine. First check your classpath in eclipse for wrong libs etc, if ok try to update JDK to 1.7, if still not works try to google (i have no idea). GL ;) -
Code Rank Pvp System 3.8.9 [Il - H5]
<< Masterio >> replied to << Masterio >>'s topic in Server Shares & Files [L2J]
it should works on any java pack. Only imports and some methods names can be different. -
Code Rank Pvp System 3.8.9 [Il - H5]
<< Masterio >> replied to << Masterio >>'s topic in Server Shares & Files [L2J]
i havent freya client so i dont. ;) -
Code Rank Pvp System 3.8.9 [Il - H5]
<< Masterio >> replied to << Masterio >>'s topic in Server Shares & Files [L2J]
u can try: ThreadPoolManager.getInstance().executeGeneral(...) -
Code Rank Pvp System 3.8.9 [Il - H5]
<< Masterio >> replied to << Masterio >>'s topic in Server Shares & Files [L2J]
as you can see the param is not complete, RewardList:<rankId>,<pageNo> is correct format. I think you change something in RankPvpSystemPvpStatus. -
Code Rank Pvp System 3.8.9 [Il - H5]
<< Masterio >> replied to << Masterio >>'s topic in Server Shares & Files [L2J]
// try to add this check: else if(param.startsWith("RewardList:")) { System.out.println(param); // <- here, I want to know about the parameters. try { -
Code Rank Pvp System 3.8.9 [Il - H5]
<< Masterio >> replied to << Masterio >>'s topic in Server Shares & Files [L2J]
If you have problem, install jdk 1.7 and change project settings for jdk 1.7 ( Frozen is supporting JDK 1.7). RMB on Project -> Properties -> Java Compiler: it will be the fastest way for You. -
Code Rank Pvp System 3.8.9 [Il - H5]
<< Masterio >> replied to << Masterio >>'s topic in Server Shares & Files [L2J]
You must fix that for every rps file. -
Code Rank Pvp System 3.8.9 [Il - H5]
<< Masterio >> replied to << Masterio >>'s topic in Server Shares & Files [L2J]
Yes, like i sad, i reworked everything for jdk 1.7. It is mean you should change project settings for jdk 1.7 or rework the code in empty brackets: <> you should add for example: JDK 1.7: Map<Integer, TopField> tmpTopGatherersTable = new LinkedHashMap<>(); JDK 1.6: Map<Integer, TopField> tmpTopGatherersTable = new LinkedHashMap<Integer, TopField>(); * find diffrence ;) -
Code Rank Pvp System 3.8.9 [Il - H5]
<< Masterio >> replied to << Masterio >>'s topic in Server Shares & Files [L2J]
3.8.7 relesed ;)