Jump to content

marwan

Banned
  • Posts

    774
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by marwan

  1. You didn't add the Configs code
  2. What do you mean bu changing void-methods ? I didn't c/p anymethod except the wait, ALL is coded by me from scratch
  3. Lol come on ! , do u think copying 2 lines of code will make an event ? public void wait(int time ,boolean minute) { if(minute){ Thread.sleep(time * 60000); } else { Thread.sleep(i * 1000); } PS : NOT coded in eclipse
  4. As I know recall teleports you , but this makes you walk.
  5. Your forum name : Your mum Your age : Unlimited The position : Administrator Your experiences = I'm total noob How many hours are you going to spend here = unlimited
  6. marwan

    :no:

    makafi
  7. What can I do : Code Custom Events Create new Engines Code any custom feature Fix server bugs Skype: marwan.hesham12 Payment method: Paypal and for any other payment methods please contact me with details.
  8. Here is a simple code you write in game if you admin (//walk playername) and it will walk that player to the admin location /* * Copyright (C) 2004-2013 L2J DataPack * * This file is part of L2J DataPack. * * L2J DataPack 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. * * L2J DataPack 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 handlers.admincommandhandlers; import java.util.StringTokenizer; import com.l2jserver.gameserver.ai.CtrlIntention; import com.l2jserver.gameserver.handler.IAdminCommandHandler; import com.l2jserver.gameserver.model.L2CharPosition; import com.l2jserver.gameserver.model.L2World; import com.l2jserver.gameserver.model.actor.instance.L2PcInstance; /** * author Marwan */ public class AdminWalk implements IAdminCommandHandler { private static final String[] ADMIN_COMMANDS = { "walk " }; @Override public boolean useAdminCommand(String command, L2PcInstance activeChar) { if (command.equals("walk ")) { StringTokenizer st = new StringTokenizer(command, " "); st.nextToken(); L2PcInstance i = L2World.getInstance().getPlayer(st.nextToken()); if(st.nextToken() != null && i.isOnline()){ i.getAI().setIntention(CtrlIntention.AI_INTENTION_MOVE_TO, new L2CharPosition(activeChar.getX(), activeChar.getY(), activeChar.getZ(), 0)); } } return true; } @Override public String[] getAdminCommandList() { return ADMIN_COMMANDS; } } coded by me
  9. marwan

    Refund

    I hope he gives it back cuz it was about 70 Euros
  10. marwan

    Refund

    If its not Maxtors Fault don't you think he should refund the money that was used without my consent. Because its not his to keep lol.
  11. marwan

    Refund

    so someone hacked my account, and somehow paid for a VIP and donation membership with paypal and maxtor doesn't want to send me the money. I already sent to Maxtor about 5 messages to refund my money without any answer. So please Maxtor refund my money I already sent you the payment info in your inbox.
  12. This forum is totally dead.
  13. Awesome job mate , does the match arenas is instanced like oly or match by match ?
  14. Very skilled and trusted , just bought from them.
  15. Its really not a big problem.
  16. oh , forgot about that. will update it
  17. -_- , didn't see it
  18. Hey guys , didn't share for a long time , so here we go : Its a npc which you can add your self to the famous top list if you have 100 pvp or more. You can vote for a player in the list every 24 hour. The list have only top 10 players sorted by votes. Code : http://pastebin.com/qJpCZEPB And for DB part : CREATE TABLE `famous` ( `name` text, `votes` int, `famous` int ) ENGINE=InnoDB AUTO_INCREMENT=43 DEFAULT CHARSET=latin1; Coded by me
×
×
  • 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