Jump to content

Nightw0lf

Legendary Member
  • Posts

    2,898
  • Credits

  • Joined

  • Last visited

  • Days Won

    51
  • Feedback

    0%

Everything posted by Nightw0lf

  1. https://maxcheaters.com/store/category/5-premium/
  2. https://github.com/nightw0lv/iTopZ-Java/ try this
  3. kai an xreiasteis donate panel pane edw https://shop.denart-designs.com/
  4. tell us about your interlude project Mr.Kara.
  5. you can always make external codes in lucera there is a guide too but with limits
  6. well when you are asking "How can I install this website?" it is not asking something spesific other than where to run it, still you are asking if the template files NOTHING the template files are beign run by the code what is your problem? did you even try to run the files in some host and there was an error or you have no idea how this work?
  7. you upload it on a host and you set the configs
  8. take example of acis function useMagic(L2Skill skill, boolean forceUse, boolean dontMove)
  9. https://github.com/nightw0lv/DonatePanel here are the classes to use it individually and the sql CREATE TABLE `donate_holder` ( `no` int(11) NOT NULL AUTO_INCREMENT, `id` int(11) NOT NULL, `count` int(11) NOT NULL, `playername` varchar(255) CHARACTER SET utf8 NOT NULL, `order_status` int(11) NOT NULL DEFAULT '1', PRIMARY KEY (`no`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1; and to anwer to your question the final part requires sources (for lucera there is a special donate.ext.jar library you can ask me for it) and you implement one of those classes that there are published on this git depending your project inside your sources and you build your project. thats it. for example aCis https://github.com/nightw0lv/DonatePanel/blob/master/Legacy/JAVA/Interlude/aCis/DonateGiverTaskManager.java you copy this file into aCis sources you go in gameserver.java and you call it somewhere like DonateGiverTaskManager.getInstance(); you import it with ctrl+shift+o combination build project & voila
  10. here is why you try to lure people into it. https://www.google.com/search?q=china+officially+backs+a+cryptocurrency here is why is so simple to be scammed. https://www.google.com/search?q=crypto+company+vanishes
  11. nice one i like it and almost well commended you repeat code alot you could do it in a short way using a function or two and avoid all this big code example is a list of items/count to reward in a loop to avoid Item instances copy paste and using another item id
  12. όχι εντάξει σίγουρα τρολλάρει
  13. its already shared there is no point to sell it, and if somebody wanted to buy he can go in advext and get real stuff 'fixed'.
  14. open a new topic in help section and explain your issue
  15. i have one contact me, it has payment functions if you want images i can provide
  16. https://gitlab.com/Tryskell/acis_public/-/blob/master/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/stat/CreatureStat.java line 209 for casting speed public int getMAtkSpd() { return (int) calcStat(Stats.MAGIC_ATTACK_SPEED, 333.0 * ((_activeChar.isChampion()) ? Config.CHAMPION_SPD_ATK : 1), null, null); } change it to public int getMAtkSpd() { int speed = (int) calcStat(Stats.MAGIC_ATTACK_SPEED, 333.0 * ((_activeChar.isChampion()) ? Config.CHAMPION_SPD_ATK : 1), null, null); if (speed > 2000)// if speed is higher than 2000 speed = 2000;// set speed 2000 return speed; } on line 237 for attack speed public int getPAtkSpd() { return (int) calcStat(Stats.POWER_ATTACK_SPEED, _activeChar.getTemplate().getBasePAtkSpd() * ((_activeChar.isChampion()) ? Config.CHAMPION_SPD_ATK : 1), null, null); } change it to public int getPAtkSpd() { int speed = calcStat(Stats.POWER_ATTACK_SPEED, _activeChar.getTemplate().getBasePAtkSpd() * ((_activeChar.isChampion()) ? Config.CHAMPION_SPD_ATK : 1), null, null); if (speed > 1500)// if speed is higher than 1500 speed = 1500;// set speed 1500 return speed; } if you want to do it for each class you have to add "if/else if/else" the final else i gave you in the examples if you dont want to handle all classes if (getActiveChar().getClassId().equals(ClassId.PHANTOM_RANGER) speed = 1560; // for some class else if (getActiveChar().getClassId().equals(ClassId.SILVER_RANGER) speed = 1600; //for some other class else if (speed > 1500)// final else if for all other classes speed = 1500; this last example is made from the code you shared i am not sure that still fits on acis or not. good luck
  17. they are problematic from the replies i see you should look for https://l2jeternity.com/ or @Kara they have good files, if you need donate panel search for Denart Designs
  18. it was fast take over servers and everything this is published like a warning i dont think this will evolve in the same way. that wont save them but will delay what is coming :'D
  19. i dont think will be that simple here in greece we also have blocked torrent sites (we just edit our DNS and voila they work) but in russia well... i think it will be interesting to watch what happens
  20. why you think he will satisfy your question when you use that tone? if it was me you had chat ban for attitude (just saying)
  21. this is just a fancy html npc with menus from merchant xml and multisells, in case you need real donate system go here https://shop.denart-designs.com/
  22. onEnter() function in this zone is not set for the character correctly if your code not work. debug the setter or you are simply not in a pvp zone plus be sure the zone is loaded
×
×
  • Create New...