Jump to content

AbsolutePower

Legendary Member
  • Posts

    748
  • Credits

  • Joined

  • Last visited

  • Days Won

    3
  • Feedback

    0%

Everything posted by AbsolutePower

  1. friendly advice: don't get excited by "awesome" custom configuration-mods or fancy html design. thats not the right way to buy a pack.
  2. go to: gameserver/network/clientpackets/MoveBackwardToLocation.java _moveMovement = readD(); // is 0 if cursor keys are used 1 if mouse is used find if (activeChar == null) return; and add: if (_moveMovement == 0) return;
  3. i didn't disappear , i just did not bother with this topic. i was using only bump button.
  4. oh that's new ,i didn't knew that there is a time expiration. sorry mate.
  5. 2017 ? i created this topic (July 17, 2012 ) . you insult me by saying that i am using fake accounts....i don't understand the reason of your brainless post. i can provide proofs. think before you talk.
  6. probably you did not find the proper guy for the job,i can offer my services and i can guarantee in public that you won't get disappointed .
  7. l2jhellas source code will be available and free for one month so you can test some features and also the new spawn system by using the main bitbucket link : https://bitbucket.org/NickAbsolutePower/l2jhellas/src/master/ L2JHellas knownlist(optimized), test with 2747 creatures running perfect , you can check it here : https://www.youtube.com/watch?v=Ls6neey2ruc
  8. mazepste kwlotripidia o xdem kukloforei. tuxo tuxo oloi malakeeees
  9. καλησπέρα , το hellas έχει γίνει free-private εδώ και δυο χρόνια, υπάρχει και free compiled χωρίς source revision 571 , πλέον, για να αποκτήσεις πρόσβαση στο source η πληρώνεις ή βοηθάς. για περισσότερες πληροφορίες για αυτό το σύστημα έχω κάνει topic στο forum του hellas. εδώ
  10. i cannot understand why you are still trying to compare jfrozen with alive projects , jfrozen was abandoned years ago.
  11. https://l2jhellas.com/index.php?topic=1844.0
  12. sure , you can visit l2jhellas.com for more info.
  13. hello guys i decided to share l2jhellas latest revision 571 (compiled) because 568 was outdated , you can visit our forum : https://l2jhellas.com/ for more info
  14. make sure that you have create your custom zone in xml , if you dont know how you can check this : if you want you can add this code for easier creation : otherwise use the first guide and create your zone by hand. also make sure that you have create your customzone.java in zone type to read your new zone properly. the path in java may be gameserver.model.zone.type. depends your pack. if you dont know how to do this, you can take example by : to see how you can add a zone in java + datapack.
  15. @Ehoq the best solution for animation-effects is to edit client. you may find something here: https://maxcheaters.com/forum/41-client-development-discussion/ if you want to experiment with magicskilluse : _effected.broadcastPacket(new MagicSkillUse(_effected, skillId, skillLevel, hitTime, reuseDelay)); vars for magicskillUse are diffirent and depends on pack , you can check the magicskillUse.java to see exactly the vars. Social Action : _effected.broadcastPacket(new SocialAction(here it could be : _effected or _effected.getObjectId() , here actionId));
  16. int random = Rnd.get(1, getZonesCount()); currentZoneId = currentZoneId == random ? MathUtil.limit(Rnd.get(++currentZoneId, getZonesCount()), 1, getZonesCount()) : random; @Kara @Tryskell @SweeTs @StinkyMadness @Elfocrash i know i late a bit :) but it can be done like this .
  17. its bad coded , update the sql connection and at least replace the player loop with : L2World.getInstance().getPlayer(playerName) instead of a whole loop inside another loop. it can be done like : L2PcInstance player = L2World.getInstance().getPlayer(playerName); if(player != null && player.isOnline() == 1) { add item etc. } final code : if(id > 0 && count > 0 && !playername.isEmpty()) { L2PcInstance player = L2World.getInstance().getPlayer(playerName); if(player != null && player.isOnline() == 1) { your code to add item here. } }
  18. i am selling the fix for all interlude clients. player no need to relogin after change gender-class it can be used anywhere you want example : admin actions-custom npcs for class-sex change etc. price 30.
  19. you are using dead project.... i can't understand that... why?? use hellas who is still active and you won't have to worry about those skills.
  20. L2PcInstance.java public void checkAllowedSkills() config : altsettings : AllowedSkills
  21. zake is right, there is a check for illegal skills. you can check premium system too ( //premium_menu). no need to make new getters for aio. and merge premium system with your aio skills. just saying my opnion.
×
×
  • Create New...