Jump to content

eKo

Members
  • Posts

    709
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by eKo

  1. nvm.if you dont know php you should not buy those files...your the 2nd guy asking me for help i know that those files are worth something but if you dont give other access to see the code noone can help you. we can only give your suggestions what probly cause the error but whitout php knowledge its a pain in the ass to explain it
  2. cuz you should rely on others too much go do it yourself!, i am myself new to java but i always try to fix it myself even if it takes me 1 day to do and another dev can do it in 1 hour. the next time i can do it myself
  3. pm me your msn and i can try to help you
  4. if you removed the config water should work as its suposed to do. and it has nothing to do whit enterworld.java...
  5. maybe try to code it yourself?? ;). anyway for that you have server logs you can see there ips and account names.
  6. i dont have a code. ;)
  7. Open L2PcInstance in : java\net\sf\l2j\gameserver\model\actor\instance\L2PcInstance.java in : if you use L2JServer interlude its in Line : 9179, in L2PCInstance if (Config.ALLOW_WATER) checkWaterState(); just delete if (Config.ALLOW_Water) and it wont check for config
  8. creat a new sql wich will store the last 30 ips. :) than make command
  9. i realy have to say this,god i fucking love your sig :D rawrr
  10. :D thanks suggestions always welcome i still need learn more about java :/,still i love java lanuage sadly i dont have it at university. note : never play on his server?? you mean my?? :D
  11. pm me and we can discuss it in detail
  12. well there alot of more options you could implend like adding a spawn adding a check if its a mage or a fighter to customize the items. etc.
  13. :D thanks. well i will try to make something better unique
  14. spam? anyway server aint good there better servers out there.
  15. Hiho i wrote a Small Command that allows you to use .basicsetup what does or supposed to do? if you type .basic setup you Recive Different items example you could add adena/soe/Cp pots/crystals or even a grade armors or whatever you feel like. and get exp/lvls example you type .basicsetup you recive some starting items adena soes cp pots soe res scrolls and and + lvl 40 Note: i just wrote it quickly,i felt like bored so i wrote it to pass some time :D ok here is the script : /* This program is free software; you can redistribute it and/or modify */ package net.sf.l2j.gameserver.handler.voicedcommandhandlers; import net.sf.l2j.gameserver.handler.IVoicedCommandHandler; import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance; /** * * @author eko */ public class Basicsetup implements IVoicedCommandHandler { private static final String[] VOICED_COMMANDS = { "basicsetup" }; public boolean useVoicedCommand(String command, L2PcInstance activeChar, String target) { if (command.equalsIgnoreCase("basicsetup")) { if (activeChar.getLevel() > 1) { activeChar.sendMessage("You are allready Used that Command."); return true; } else if(activeChar.getInventory().getItemByItemId(1697) != null && activeChar.getInventory().getItemByItemId(1697).getCount() >= 1) { activeChar.getInventory().destroyItemByItemId("basicsetup", 1697, 1, activeChar, activeChar.getTarget()); addItem("Loot", item, ammount, this, true); addItem("Loot", item, ammount, this, true); addItem("Loot", item, ammount, this, true); addItem("Loot", item, ammount, this, true); addItem("Loot", item, ammount, this, true); addExpAndSp(15422851, 1542285); sendMessage("You Recived Basic Setup! You are now level " +getLevel()+ " !"); activeChar.broadcastUserInfo(); } else { activeChar.sendMessage("Missing Magic Powder to Create your Items."); return true; } } return false; } public String[] getVoicedCommandList() { return VOICED_COMMANDS; } }
  16. Support GM: -Unregistered- (Builder 9) Interested in Beign a support GM. Why should you choose me? I got alot of Knowledge in the l2 Community, i Played over 1 year on Retail Servers i still have a semi active char there. I Played on Famous Low rate servers like L2Paradise(before it got crapy),L2Supreme aka azuregaming,L2Abyss I am l2 Addicted since some years not i dont remember when i started was around c2-c3 time My English knowledge is pretty decent my main lanuage is German. I am 20 years old and living in swiss gmt+1 if you need more infos just drop a pm
  17. why??....like you would create xy items for mob spawn if you can just type //spawn Id, its like using a Sword ti open a can instead of a can opener just retarded xD
  18. i still dont get it. your looking for admins who manage your server or servers or your looking for admin who own a server allready.?
  19. reported.
  20. offtopic?!?..i just told you flame is forbidden and you guys started flaming each other like mad looks like you dont even care about the forum rules eh?
  21. About Flames On Private Server Section If you flame on this section you will get a temporary ban that will go from 2 days to 2 weeks. If your thread get flamed, just report the flamers to a moderator and we will take actions. i dont ask for opinion so stop it
  22. thanks, for the exp part i am looking for a code that add exact 10% to a player from examle 70 to 75 after 75 to 78 only 5% exp. i could do calculate it and make a code but i think there is better method.
  23. yes Sony Vegas is the best,You could allso use Adobe After Effects for Movies. but sony vegas is more easy to handle for beginners
  24. Hiho i am looking for certain java code's i tried it myself allready but i am kinda new to l2java so i request some help. things i am looking for. pvp exp reward system that you gain a certain ammount of exp for each level lets say from lvl 70 to 75 10% exp from 76 to 78 5% exp tryed to use the death lost exp code for it : i was thinking a code like getStat than .getExpForLevel than Experience.MAX_LEVEL +5(percent) another code i was thinking about was : Item reward System, that you have multiply chances to recive a item from a item pool here is my code : if (Rnd.get(100) < 20) { addItem("Loot", x, y, this, true); sendMessage("You won blabla!"); return; } if (Rnd.get(100) < 10) { addItem("Loot", x, y, this, true); sendMessage("You won blabla!"); Return; } now i am thinking if there is another way to create a random reward for a pvp kill,because if i add like 100 items its gonna be a long code. and ofc you can recive only 1 item a time. normally i wouldnt ask for help but its getting kinda messy my code. :D
×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..