caramel Posted June 29, 2010 Posted June 29, 2010 I want this java code ---> http://www.maxcheaters.com/forum/index.php?topic=110074.0 <--- but this post is from December 28 2009 :-[ who can give me them sorry for my bad english..:( thanks
0 Realtek2 Posted June 29, 2010 Posted June 29, 2010 stick a finger in ur ass and it will work Cheesy thats what you whant ? couse in that post i dont see nothing else...
0 caramel Posted June 29, 2010 Author Posted June 29, 2010 thats what you whant ? couse in that post i dont see nothing else... private void giftItem(int id, int num) { for (L2PcInstance player : L2World.getInstance().getAllPlayers()) { player.getInventory().destroyItem("Admin", id, num, player, null); ItemList il = new ItemList(player, true); player.sendPacket(il); player.sendMessage("You earned " + num + " item(s) number " + id + " in your inventory."); } } like this
0 Grim. Posted June 29, 2010 Posted June 29, 2010 thats what you whant ? couse in that post i dont see nothing else... admin gift command
0 Realtek2 Posted June 29, 2010 Posted June 29, 2010 import net.sf.l2j.gameserver.model.L2World; "admin_create_item", + "admin_mass_create" else if (command.startsWith("admin_mass_create")) { try { String val = command.substring(17); StringTokenizer st = new StringTokenizer(val); if (st.countTokens()== 2) { String id = st.nextToken(); int idval = Integer.parseInt(id); String num = st.nextToken(); int numval = Integer.parseInt(num); massCreate(activeChar,idval,numval); } else if (st.countTokens()== 1) { String id = st.nextToken(); int idval = Integer.parseInt(id); massCreate(activeChar,idval,1); } } catch (StringIndexOutOfBoundsException e) { activeChar.sendMessage("Usage: //itemcreate <itemId> [amount]"); } catch (NumberFormatException nfe) { activeChar.sendMessage("Specify a valid number."); } } private void massCreate(L2PcInstance activeChar, int id, int num) { for (L2PcInstance _players : L2World.getInstance().getAllPlayers()) { if (_players == activeChar) continue; _players.getInventory().addItem("Admin", id, num, _players, null); ItemList il = new ItemList(_players, true); _players.sendPacket(il); } activeChar.sendMessage("You have spawned " + num + " item(s) number " + id + " in all chars inventory."); }
0 caramel Posted June 29, 2010 Author Posted June 29, 2010 import net.sf.l2j.gameserver.model.L2World; "admin_create_item", + "admin_mass_create" else if (command.startsWith("admin_mass_create")) { try { String val = command.substring(17); StringTokenizer st = new StringTokenizer(val); if (st.countTokens()== 2) { String id = st.nextToken(); int idval = Integer.parseInt(id); String num = st.nextToken(); int numval = Integer.parseInt(num); massCreate(activeChar,idval,numval); } else if (st.countTokens()== 1) { String id = st.nextToken(); int idval = Integer.parseInt(id); massCreate(activeChar,idval,1); } } catch (StringIndexOutOfBoundsException e) { activeChar.sendMessage("Usage: //itemcreate <itemId> [amount]"); } catch (NumberFormatException nfe) { activeChar.sendMessage("Specify a valid number."); } } private void massCreate(L2PcInstance activeChar, int id, int num) { for (L2PcInstance _players : L2World.getInstance().getAllPlayers()) { if (_players == activeChar) continue; _players.getInventory().addItem("Admin", id, num, _players, null); ItemList il = new ItemList(_players, true); _players.sendPacket(il); } activeChar.sendMessage("You have spawned " + num + " item(s) number " + id + " in all chars inventory."); } i add this code at l2world.java right?
0 down Posted June 29, 2010 Posted June 29, 2010 u add that code in adminCreateItem.java just import L2World.
Question
caramel
I want this java code ---> http://www.maxcheaters.com/forum/index.php?topic=110074.0 <---
but this post is from December 28 2009 :-[
who can give me them
sorry for my bad english..:(
thanks
6 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now