Jump to content

Selim

Members
  • Posts

    54
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Selim

  1. I succes add pmoff/pmon comand, but when i try add tradeoff comand i have this error when i build, 1004 rev
  2. 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
  3. Like on topic i have code but when i compile i got 14 errors :/ Someone have adapted code for l2jfrozen?
  4. All like you say, and all now working perfect :) Thx man for help :)
  5. 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?
  6. Can be locked, i make it alone.
  7. 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
  8. 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:
  9. Someone have right code for this ?
  10. No one knows what can be wrong>?
  11. 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?
  12. 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]
  13. 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 :)
  14. 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.
  15. I use frozen pack, maybe i must add or change somethink else :/
  16. 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 :)
  17. 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 ?
  18. 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:
  19. Someone know how to create custom lifestone with 100% skill chance? Like on l2 cleaver
  20. 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.
  21. xp-dev.com or assembla.com? Better choice for private 1 project ? And reason, and free plan :P
  22. I think you must have 400 euro first month and next moth like 100 euro/month
×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock