
Selim
Members-
Posts
54 -
Credits
0 -
Joined
-
Last visited
-
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by Selim
-
LF L2Jfrozen Right Code For .pmoff/.pmon .tradeon/.tradeoff And .info
Selim replied to Selim's question in Request Server Development Help [L2J]
I succes add pmoff/pmon comand, but when i try add tradeoff comand i have this error when i build, 1004 rev -
LF L2Jfrozen Right Code For .pmoff/.pmon .tradeon/.tradeoff And .info
Selim replied to Selim's question in Request Server Development Help [L2J]
I not ask to adapt my code, i ask "who have adapted code for l2jfrozen" .... I use this code http://www.maxcheate...p?topic=48161.0 http://www.maxcheate...p?topic=48004.0 change import and have errors -
Help Olympiad Period End Time When Char Login
Selim replied to Selim's question in Request Server Development Help [L2J]
All like you say, and all now working perfect :) Thx man for help :) -
Help Olympiad Period End Time When Char Login
Selim replied to Selim's question in Request Server Development Help [L2J]
Ok i make it, but 1 more problem, i have announce before sysmsg "welcome lineage II.." i want this announce to be last in announce list. I think i must make config for it so: olympiad.properties # Announce olympiad end on enter world. # Default: False AltOlyEndAnnounce = True enterworld.java if (Config.ALT_OLY_END_ANNOUNCE && activeChar.isNoble() || activeChar.isGM()) { Olympiad.olympiadEnd(activeChar); } config.java public static boolean ALT_OLY_END_ANNOUNCE; and ALT_OLY_END_ANNOUNCE = Boolean.parseBoolean(OLYMPSetting.getProperty("AltOlyEndAnnounce", "False")); but no work, False, True announce still before welcome lineage. Someone know how fix it? -
Can be locked, i make it alone.
-
He want seel me 1 code, ofc he want first money, when i say about any prove he is trusted seeler or experience developer = 0 answer :) = try to scaam :P
-
I want to buy right code for olympiad end announce on login. - Code must working fine on 1004 frozen rev. - Code must show right oly end date - Announce must be last not first on announce list. Say me price. Only PayPal Like on screen:
-
Help Olympiad Period End Time When Char Login
Selim replied to Selim's question in Request Server Development Help [L2J]
Someone have right code for this ? -
Help Olympiad Period End Time When Char Login
Selim replied to Selim's question in Request Server Development Help [L2J]
No one knows what can be wrong>? -
Help Olympiad Period End Time When Char Login
Selim replied to Selim's question in Request Server Development Help [L2J]
Bump -
Help Olympiad Period End Time When Char Login
Selim replied to Selim's question in Request Server Development Help [L2J]
Ok finally i understand you ;p i add missing import creature say and delete "static" but i have 1 more error when i compile: Buildfile: C:\workspace\L2Private\trunk\gameserver\build.xml prepare-local: prepare-final: init: version: [echo] L2jFrozen Gameserver Revision: exported compile: [javac] Compiling 714 source files to C:\workspace\L2Private\trunk\gameserver\build\classes [javac] warning: [options] bootstrap class path not set in conjunction with -source 1.6 [javac] C:\workspace\L2Private\trunk\gameserver\head-src\com\l2jfrozen\gameserver\network\clientpackets\EnterWorld.java:715: error: non-static method olympiadEnd(L2PcInstance) cannot be referenced from a static context [javac] Olympiad.olympiadEnd(activeChar); [javac] ^ [javac] 1 error [javac] 1 warning BUILD FAILED C:\workspace\L2Private\trunk\gameserver\build.xml:65: Compile failed; see the compiler error output for details. Total time: 6 seconds ok i fix it, i change this line 142 in olympiad.java: protected int _period; to: protected static int _period; And compile succes, when i log i have on first place announce with oly end but with 61616 days 12h 0min left, and when i relog the same, i set //manualhero and restart srv and still the same. You know how fix it? -
Help Olympiad Period End Time When Char Login
Selim replied to Selim's question in Request Server Development Help [L2J]
Ech ok i understand finally ;p You mean remove word "static" from code;p But still have others 3 errors with creaturesay Btw when delete static from code i have 1 more error: [javac] C:\workspace\L2Private\trunk\gameserver\head-src\com\l2jfrozen\gameserver\network\clientpackets\EnterWorld.java:687: error: non-static method olympiadEnd(L2PcInstance) cannot be referenced from a static context [javac] Olympiad.olympiadEnd(activeChar); [javac] -
Help Olympiad Period End Time When Char Login
Selim replied to Selim's question in Request Server Development Help [L2J]
My english is not perfect, java skills too that's why i not understand it, you think "he is noob" maybe fix for it is simple, but i dont know how... when i start this post i say "i'm learning java" You can't give me good code ? Then i can see what you mean :) -
Help Olympiad Period End Time When Char Login
Selim replied to Selim's question in Request Server Development Help [L2J]
I cant't fix it, my experience with java is too small and i don't understant what you mean with "static" keyword to drop, and second i save files before compile. -
Help Olympiad Period End Time When Char Login
Selim replied to Selim's question in Request Server Development Help [L2J]
I use frozen pack, maybe i must add or change somethink else :/ -
Help Olympiad Period End Time When Char Login
Selim replied to Selim's question in Request Server Development Help [L2J]
Bump = edit -
Help L2Jhellas Gameserver
Selim replied to PwnnZ's question in Request Server Development Help [L2J]
I'm not pro developer, i'm learning java ;p But for me you have direct where you have problem in core and line in file so open and check what is wrong :) -
Help Olympiad Period End Time When Char Login
Selim replied to Selim's question in Request Server Development Help [L2J]
Thx for fast answer, but where i must put your code? Edit: Ok i put to olympiad.java this code: public static void olympiadEnd(L2PcInstance player) { long milliToEnd; if(_period == 0) { milliToEnd = getMillisToOlympiadEnd(); } else { milliToEnd = getMillisToValidationEnd(); } double numSecs = milliToEnd / 1000 % 60; double countDown = (milliToEnd / 1000 - numSecs) / 60; int numMins = (int) Math.floor(countDown % 60); countDown = (countDown - numMins) / 60; int numHours = (int) Math.floor(countDown % 24); int numDays = (int) Math.floor((countDown - numHours) / 24); CreatureSay cs = new CreatureSay(0, Say2.ANNOUNCEMENT, "", "Olympiad period ends in " + numDays + " days, " + numHours + " hours and " + numMins + " mins."); player.sendPacket(cs); } but when i compile in eclipse i have errors like this: Buildfile: C:\workspace\L2Private\trunk\gameserver\build.xml prepare-local: prepare-final: init: version: [echo] L2jFrozen Gameserver Revision: exported compile: [javac] Compiling 779 source files to C:\workspace\L2Private\trunk\gameserver\build\classes [javac] warning: [options] bootstrap class path not set in conjunction with -source 1.6 [javac] C:\workspace\L2Private\trunk\gameserver\head-src\com\l2jfrozen\gameserver\model\entity\olympiad\Olympiad.java:1704: error: non-static variable _period cannot be referenced from a static context [javac] if(_period == 0) [javac] ^ [javac] C:\workspace\L2Private\trunk\gameserver\head-src\com\l2jfrozen\gameserver\model\entity\olympiad\Olympiad.java:1706: error: non-static method getMillisToOlympiadEnd() cannot be referenced from a static context [javac] milliToEnd = getMillisToOlympiadEnd(); [javac] ^ [javac] C:\workspace\L2Private\trunk\gameserver\head-src\com\l2jfrozen\gameserver\model\entity\olympiad\Olympiad.java:1710: error: non-static method getMillisToValidationEnd() cannot be referenced from a static context [javac] milliToEnd = getMillisToValidationEnd(); [javac] ^ [javac] C:\workspace\L2Private\trunk\gameserver\head-src\com\l2jfrozen\gameserver\model\entity\olympiad\Olympiad.java:1720: error: cannot find symbol [javac] CreatureSay cs = new CreatureSay(0, Say2.ANNOUNCEMENT, "", "Olympiad period ends in " + numDays + " days, " + numHours + " hours and " + numMins + " mins."); [javac] ^ [javac] symbol: class CreatureSay [javac] location: class Olympiad [javac] C:\workspace\L2Private\trunk\gameserver\head-src\com\l2jfrozen\gameserver\model\entity\olympiad\Olympiad.java:1720: error: cannot find symbol [javac] CreatureSay cs = new CreatureSay(0, Say2.ANNOUNCEMENT, "", "Olympiad period ends in " + numDays + " days, " + numHours + " hours and " + numMins + " mins."); [javac] ^ [javac] symbol: class CreatureSay [javac] location: class Olympiad [javac] C:\workspace\L2Private\trunk\gameserver\head-src\com\l2jfrozen\gameserver\model\entity\olympiad\Olympiad.java:1720: error: cannot find symbol [javac] CreatureSay cs = new CreatureSay(0, Say2.ANNOUNCEMENT, "", "Olympiad period ends in " + numDays + " days, " + numHours + " hours and " + numMins + " mins."); [javac] ^ [javac] symbol: variable Say2 [javac] location: class Olympiad [javac] 6 errors [javac] 1 warning BUILD FAILED C:\workspace\L2Private\trunk\gameserver\build.xml:65: Compile failed; see the compiler error output for details. Total time: 6 seconds What is worng ? -
Help Olympiad Period End Time When Char Login
Selim posted a question in Request Server Development Help [L2J]
Someone know how to add somethink like this? I think must add option to oliconfig.ini, config.java and i add to enterworld.java this code if(Config.OLYMPIAD_END_ANNOUNE && activeChar.isNoble()) { Olympiad.olympiadEnd(activeChar); } but still doesnt work, i think must add somethink else but dont know where :/ i learn java so stop spam post like "you are noob" or somethink like this :) Here is image what i mean: -
Someone know how to create custom lifestone with 100% skill chance? Like on l2 cleaver
-
Discussion Web Design Demonstrations
Selim replied to xDrac's topic in Graphics/GFX General Discussion
I'm join too :) -
Xp-Dev.com Or Assembla.com?
Selim replied to Selim's question in Request Server Development Help [L2J]
I see on xp-dev.com free plan have only 10MB for repo and trac, on assembla i have 500MB for free. And on free plan xp and assembla have private project? I read on assembla on free plan project is public. -
xp-dev.com or assembla.com? Better choice for private 1 project ? And reason, and free plan :P
-
Help L2 Server Price Question
Selim replied to powerboy2's question in Request Server Development Help [L2J]
I think you must have 400 euro first month and next moth like 100 euro/month