Jump to content

eKo

Members
  • Posts

    709
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by eKo

  1. a quote from your forum Hello players ! Im glad to announce you that today evening we will start beta phase ! 20:30 + 2GMT the patch will be uploaded. Stay tuned. PS: After beta if there are no problem we will not make wipe anyway, i guess i give it another try,maybe you can turn out to be good we will see
  2. you dont have to bitch off...i can flame too example you give tons of items to new players just for fun,and you say there wont be a wipe after beta...nice start corruption on the first mins of the server. Staff Dont speak well English Unfinished Website Inbalanced stuff in shops Inmature staff giving out Items..i logged in and you guys gave me 10,000 of those coins to buy custom stuff 2 bil adena lvl 80
  3. seems like you didnt even read the code properly. adenaman is right i put a few errors in it, exclamation mark which makes it negative is right since it checks if the char is the first char or the second. and Normally only the first char is a Newbie. second == dosent work on L2J or at least at my pack thats why <= check if its lvl 0 or lvl 1( or did i learn java wrong at school??). third the code will work only when the player has the item coke anyway gonna update the code,and thanks for those answers(coyote,adaman) it helps me i am not mad more happy since its helpfull to me to get more intro l2j and fix my mistakes so this wont happen again
  4. hehe well i dont think you have to put everywhere a config for everything, its easy to change thats why i left it hardcoded anyway make it as a patch and i put it in my topic
  5. Too much customs for me... Sucky inbalance armors stupid imported icarus weapons Tattoos lol...curse the dude that created them ! dusk shield... for me its a no go server, overall i am not statisfied whit it at all they could have made a nice clean server w/o customs and decent pvp
  6. statement activeChar.getLevel() >= 1 >= biger or Equal < Smaller > Bigger <= Smaler-equal >= Bigger-equal == Equal (two Equal Symbols)
  7. oh yeah?, maybe posting why..i see no reason why this should not work
  8. as i said above its a simple code i made for a friend he requested it ;)
  9. haha, i was thinking the same didnt expect a +1 karma from that share
  10. are the items randomly choosen? i think not. you dont have to Bitch around because i flamed you for making 3213 topics whit c/p codes that werent yourself just to gain some praise from other people
  11. Its a Great code, expected nothing less from you B1gboss. As always nice and Clean Coding.
  12. first. customstarting items is for everyone not only newbies, second its a randomly chosen reward you can add unlimited items to it, such as adena,items,Hair Accessories,Scrolls etc.
  13. type .newbiegift and you revice a random Accessorie Useable only when you are a Newbie lvl 1 and have the item 3434 wich is Coke on enter world i gives you the item if you are a newbie your lvl is 1 and you dont have the item in your inventory
  14. Sup, i share a Newbiegift command, a friend of Mine Requested it. So i was Thinking maybe someone of you find it usefull. Its nothing special nothing hard to do, but i know there some people that cant code such simple codes so i Share it. Index: C:/Dokumente und Einstellungen/michael/workspace2/Equal-GameServer/java/lt/equal/gameserver/handler/voicedcommandhandlers/newbiegift.java =================================================================== --- C:/Dokumente und Einstellungen/michael/workspace2/Equal-GameServer/java/lt/equal/gameserver/handler/voicedcommandhandlers/newbiegift.java (revision 0) +++ C:/Dokumente und Einstellungen/michael/workspace2/Equal-GameServer/java/lt/equal/gameserver/handler/voicedcommandhandlers/newbiegift.java (revision 0) @@ -0,0 +1,61 @@ +/* + * This program is free software: you can redistribute it and/or modify it under + * the terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) any later + * version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along with + * this program. If not, see <http://www.gnu.org/licenses/>. + */ +package lt.equal.gameserver.handler.voicedcommandhandlers; + +import lt.equal.gameserver.handler.IVoicedCommandHandler; +import lt.equal.gameserver.model.actor.instance.L2PcInstance; +import lt.equal.util.Rnd; + +/** +* +* @author eko +*/ +public class newbiegift implements IVoicedCommandHandler +{ + private static final String[] VOICED_COMMANDS = { "newbiegift" }; + +public boolean useVoicedCommand(String command, L2PcInstance activeChar, String target) +{ + if (command.equalsIgnoreCase("newbiegift")) + { + if (activeChar.getLevel() >= 1 && activeChar.isNewbie()) + { + activeChar.sendMessage("You are allready Used that Command."); + return true; + } + else if (activeChar.getInventory().getItemByItemId(3434).getCount() >= 1) + { + activeChar.getInventory().destroyItemByItemId("newbiegift", 3434, 1, activeChar, activeChar.getTarget()); + // {ItemID, Item Ammount} + int[][] items = { {8557, 1}, {8184, 1}, { 8187, 1}, { 8552, 1}, { 8185, 1}, { 8563, 1}, { 8562, 1}, { 8561, 1}, { 8560, 1} }; + // How many Items Aviable on the List + int[] ar = items[Rnd.get(9)]; + activeChar.addItem(command, ar[0], ar[1], activeChar, true); + activeChar.sendMessage("You Recived a Newbiegift!"); + activeChar.broadcastUserInfo(); + } + else + { + activeChar.sendMessage("Missing Coke to Create your Gift."); + return true; + } + } + return false; +} +public String[] getVoicedCommandList() +{ + return VOICED_COMMANDS; +} +} \ No newline at end of file Index: C:/Dokumente und Einstellungen/michael/workspace2/Equal-GameServer/java/lt/equal/gameserver/network/clientpackets/EnterWorld.java =================================================================== --- C:/Dokumente und Einstellungen/michael/workspace2/Equal-GameServer/java/lt/equal/gameserver/network/clientpackets/EnterWorld.java (revision 206) +++ C:/Dokumente und Einstellungen/michael/workspace2/Equal-GameServer/java/lt/equal/gameserver/network/clientpackets/EnterWorld.java (working copy) @@ -189,10 +184,14 @@ + if (activeChar.getLevel() >= 1 && activeChar.isNewbie() && activeChar.getInventory().getItemByItemId(3436) == null) + { + activeChar.addItem("loot", 3434, 1, activeChar, true); + } the Code Allows newbieplayers to Recive a small gitft, atm its set to 9 Random items as gitft(demon horns,party hat,blue party hat,feathered hat etc.) the item will be choosen Randomly HF & GL Note: no flame plix i know its a simple code i explained above why i shared it
  15. dont bump nearly 1 year old threads -..-
  16. dont listen to him he only talk bullshit he knows nothing about java....
  17. Ha. I must say, I was hoping for a better game on release. What a joke. The only reason I bought this game was because my friends bought it and they said the beta was amazing and fun. First of all, I didn't even want to buy the game because I knew it was garbage; then, my friends would probably stop playing in the middle of July. Well guess what, my friends have already stop playing because there is absolutely nothing to do in this game except play Barbie doll and do repetitive missions with opposition having a higher rank/weapons. Hold on, the argument to that is "well, I can still kill people that are high rank, you just suck at this game, i love it". Shut up seriously. I have a weapon with no attachments as I can't because I'm not high rank versus someone else with the same weapon with 3 attachments; we are both standing in front of each other firing at the same time, I die. That is skill? He/she clearly had an advantage over me only because the person had a higher rank and weapon attachments. On top of this, you can easily make money. All you have to do is go AFK in customization. You wake up next morning and you have a bunch of money and a high rank. That is pretty dumb if you ask me. Skill? There is hardly any skill in this game. You win if you have the bigger boot. Oh, you have to pay monthly for this crap? Or $7 for 20 hours of play time? You got to be kidding me! It needs to be free to play. It is not even a true MMO, 80 players in an instance. Not an MMO. Go argue it's an MMO because social district has a bunch of people. Social district is the most boring place on earth. You see a bunch of four chan idiots dressing like tranny tuts and hoodlums all over the place. Haha, somewhat amusing. Not my game though. I look for gameplay in a game, not Barbie doll. The best part about this thread, I can't wait to see the replies of all you ignorant elite Steam users "oh my godd, you stupid newb, you don't know anything about video games and APB, you idiot, the game is fun", blah, blah, blah. Quit defending this game because it is a steaming pile of garbage.
  18. stop spam?? haha your the one trashing the community full of useless shares and c/p codes. so shut the fuck up
  19. lol..... like everything else...
  20. http://www.maxcheaters.com/forum/index.php?topic=151417.0 stolen from someone else Here : http://www.maxcheaters.com/forum/index.php?topic=147838.0 you ask for .setgm command http://www.maxcheaters.com/forum/index.php?topic=151320.0 stolen too from someone you didnt even know how to code a simpile primitiv voice command haha Here you asking for help : http://www.maxcheaters.com/forum/index.php?topic=147311.0 for your mysql command setekh Quote : lekino last warning, ur now smitted. 1 more post like this and ur banned. Locked and so on. i dont have anythign against sharing things from other forums but not simple useless codes or 50 topics a day, ye last days you spammed the l2j section whit all that crap.
  21. /locked since noone needs a dedicated server i close this thread.
  22. Gz,whit junking the half l2j community. 90% of your so Called "shares" "guides" are C/P from other Forums and Timelines. we all know you have no java skills.
  23. its comming this winter or early 2011. here new vid, 2 popori killing each other its just too epic :D http://www.youtube.com/watch?v=QUwwaPosSYI&feature=related
  24. correct me if am wrong but freya is another expansion right?,i just did read today about it that the pts server starts soon. so there actually allready freya servers beign developed??.. sorry but i stucked at int every chronicle above sucked hard in my eyes
  25. yo dumb monkey ass face, its not your work ! you just selling someones else work, you cant even write features right and your lame website proves you have no skills in any programming lanuage, your just Another wannabe trying to scamm people off whit selling someones else work!
×
×
  • 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