קהילות פורומים, הורדות, יעוץ ותמיכה


אשכולות דומים

  1. [בעיה] עשיתי קימפול ועדין הNpc boss לא מזמן :(
    על ידי matan2223 בפורום שרתים פרטיים MapleStory
    תגובות: 2
    הודעה אחרונה: 25-05-2011, 23:44
  2. [מדריך] איך להוסיף פקודה חדשה לשרת שלך דרך NETBEANS הצלחה מובטחת! ;]
    על ידי NoLimits בפורום שרתים פרטיים MapleStory
    תגובות: 11
    הודעה אחרונה: 28-05-2010, 20:42
  3. איך להוסיף פקודה חדשה לשרת שלכם!
    על ידי NoLimits בפורום שרתים פרטיים MapleStory
    תגובות: 20
    הודעה אחרונה: 02-03-2010, 16:48
  4. [בעיה+דיון]כשאני רוצה להוסיף פקודה.
    על ידי יולי בולי ושולי בפורום שרתים פרטיים MapleStory
    תגובות: 3
    הודעה אחרונה: 13-12-2009, 10:38
  5. [עזרה] פקודה לשרת ביתי
    על ידי xxguyxx3 בפורום Counter Strike
    תגובות: 3
    הודעה אחרונה: 23-08-2006, 17:15
נושא נעול
עמוד 1 מתוך 2 12 אחרון >>
מציג תוצאות 1 עד 15 מתוך 17

ניסיתי להוסיף פקודה לשרת עשיתי קימפול וזה לא עובד!

  1. #1

    ברירת מחדל ניסיתי להוסיף פקודה לשרת עשיתי קימפול וזה לא עובד!

    נכנסתי לקישור
    http://www.iatraf.co.il/showthread.php?t=675447
    עשיתי על פי המדריך
    והפקודה לא עובדת וגם לא מופיעה בcommands
    למה<?

  2. קישורים ממומנים

  3. #2
    מורחקים
    שם פרטי
    בוריס
    תאריך הצטרפות
    07/2010
    הודעות
    529
    לייקים
    0
    נקודות
    1
    משפט מחץ
    פלאפל.
    מין: זכר

    ברירת מחדל

    תעתיק את הPlayerCommands.Java לפה.

  4. #3

    ברירת מחדל

    הפקודה החדשה שניסיתי זה @blaedms
    קוד PHP:
    /*
    This file is part of the OdinMS Maple Story Server
    Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc> 
    Matthias Butz <matze@odinms.de>
    Jan Christian Meyer <vimes@odinms.de>

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License version 3
    as published by the Free Software Foundation. You may not use, modify
    or distribute this program under any other version of the
    GNU Affero General Public License.

    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 Affero General Public License for more details.

    You should have received a copy of the GNU Affero General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
     */
    package net.sf.odinms.client.messages.commands;

    import java.rmi.RemoteException;
    import java.sql.Connection;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.util.HashMap;
    import net.sf.odinms.client.ExpTable;
    import net.sf.odinms.client.MapleCharacter;
    import net.sf.odinms.client.MapleClient;
    import net.sf.odinms.client.MapleJob;
    import net.sf.odinms.net.world.remote.WorldChannelInterface;
    import net.sf.odinms.client.MapleStat;
    import net.sf.odinms.client.messages.Command;
    import net.sf.odinms.client.messages.CommandDefinition;
    import net.sf.odinms.client.messages.MessageCallback;
    import net.sf.odinms.net.channel.ChannelServer;
    import net.sf.odinms.database.DatabaseConnection;
    import net.sf.odinms.scripting.npc.NPCScriptManager;
    import net.sf.odinms.server.MapleInventoryManipulator;
    import net.sf.odinms.server.maps.SavedLocationType;
    import net.sf.odinms.tools.MaplePacketCreator;
    import net.sf.odinms.tools.StringUtil;

    public class 
    PlayerCommands implements Command {

        private 
    ResultSet ranking(boolean gm) {
            try {
                
    Connection con DatabaseConnection.getConnection();
                
    PreparedStatement ps;
                if (!
    gm) {
                    
    ps con.prepareStatement("SELECT reborns, level, name, job FROM characters WHERE gm < 3 ORDER BY reborns desc LIMIT 10");
                } else {
                    
    ps con.prepareStatement("SELECT name, gm FROM characters WHERE gm >= 3");
                }
                return 
    ps.executeQuery();
            } catch (
    SQLException ex) {
                return 
    null;
            }
        }

        @
    Override
        
    public void execute(MapleClient cMessageCallback mcString[] splittedthrows Exception {
            
    splitted[0] = splitted[0].toLowerCase();
            
    MapleCharacter player c.getPlayer();
            if (
    player.getMapId() != 980000404) {
                if (
    splitted[0].equals("@str") || splitted[0].equals("@dex") || splitted[0].equals("@int") || splitted[0].equals("@luk") || splitted[0].equals("@hp") || splitted[0].equals("@mp")) {
                    
    int amount Integer.parseInt(splitted[1]);
                if (
    amount && amount <= player.getRemainingAp() && amount 31997) {
                    if (
    splitted[0].equals("@str") && amount player.getStr() < 32001) {
                        
    player.setStr(player.getStr() + amount);
                        
    player.updateSingleStat(MapleStat.STRplayer.getStr());
                    } else if (
    splitted[0].equals("@int") && amount player.getInt() < 32001) {
                        
    player.setInt(player.getInt() + amount);
                        
    player.updateSingleStat(MapleStat.INTplayer.getInt());
                    } else if (
    splitted[0].equals("@luk") && amount player.getLuk() < 32001) {
                        
    player.setLuk(player.getLuk() + amount);
                        
    player.updateSingleStat(MapleStat.LUKplayer.getLuk());
                    } else if (
    splitted[0].equals("@dex") && amount player.getDex() < 32001) {
                        
    player.setDex(player.getDex() + amount);
                        
    player.updateSingleStat(MapleStat.DEXplayer.getDex());
                    } else {
                        
    mc.dropMessage("Make sure the stat you are trying to raise will not be over 32000.");
                    }
                    
    player.setRemainingAp(player.getRemainingAp() - amount);
                    
    player.updateSingleStat(MapleStat.AVAILABLEAPplayer.getRemainingAp());
                } else {
                    
    mc.dropMessage("Please make sure your AP is not over 32000 and you have enough to distribute.");
                }
                } else if (
    splitted[0].equalsIgnoreCase("@checkstats")) {
                    
    mc.dropMessage("Your stats are:");
                    
    mc.dropMessage("Str: " player.getStr());
                    
    mc.dropMessage("Dex: " player.getDex());
                    
    mc.dropMessage("Int: " player.getInt());
                    
    mc.dropMessage("Luk: " player.getLuk());
                    
    mc.dropMessage("Available AP: " player.getRemainingAp());
                    
    mc.dropMessage("Rebirths: " player.getReborns());
                } else if (
    splitted[0].equalsIgnoreCase("@commands") || splitted[0].equalsIgnoreCase("@help")) {
                    
    mc.dropMessage("============================================================");
                    
    mc.dropMessage("        " c.getChannelServer().getServerName() + " Commands");
                    
    mc.dropMessage("============================================================");
                    
    mc.dropMessage("@str/@dex/@int/@luk <number> ~ with these commands you will never have to add AP the slow way.");
                    
    mc.dropMessage("@buynx <number> ~ NX currency is currently 1000 mesos for 1 nx point.");
                    
    mc.dropMessage("@save ~ Basically saves.");
                    
    mc.dropMessage("@rank ~ shows top 10 people.");
                    
    mc.dropMessage("@dispose ~ Turn off seeing smegas / Turn on.");
                    
    mc.dropMessage("@togglesmega ~ Turn off seeing smegas / Turn on.");
                    
    mc.dropMessage("@decieve ~ Sets your fame to -1337");
                    
    mc.dropMessage("@expfix ~ Got negative EXP ? Type this");
                    
    mc.dropMessage("@gm <message> ~ Call a gm for help (: ?");
                    
    mc.dropMessage("@checkstat ~ Allows you to check what your stats are. Including rebirths");
                    
    mc.dropMessage("@go ~ Try it out, type @go");
                    
    mc.dropMessage("@revive ~ Revives anyone on the channel besides yourself.");
                    
    mc.dropMessage("@cody ~ Job Advancer.");
                    
    mc.dropMessage("@nana ~ Stats reseter.");
                    
    mc.dropMessage("@nimakin ~ Stylist for Females.");
                    
    mc.dropMessage("@kin ~ Stylist for Males.");
                    
    mc.dropMessage("@storage ~ The bank");
                    
    mc.dropMessage("@bladems ~ Hey U On BladeMs The best server ever!!");  
                    
    mc.dropMessage("@reward ~ Reward shop Nr.1 (Using Slimie erasers as currency)");
                    
    mc.dropMessage("@reward1 ~ Reward shop Nr.2 (Using Slimie erasers currency)");
                    
    mc.dropMessage("@shop ~ The Shop that sells your every day needs!");
                    
    mc.dropMessage("@slime ~ Accesses the shop that sells slime erasers for 15m each");
                    
    mc.dropMessage("@zombie ~ ALL in one NPC");
                } else if (
    splitted[0].equalsIgnoreCase("@buynx")) {
                    if (
    splitted.length != 2) {
                        
    mc.dropMessage("Syntax: @buynx <number> Example: @buynx 1000");
                        return;
                    }
                    
    int nxamount;
                    try {
                        
    nxamount Integer.parseInt(splitted[1]);
                    } catch (
    NumberFormatException asd) {
                        return;
                    }
                    
    int cost nxamount 1000;
                    if (
    nxamount && nxamount 420000) {
                        if (
    player.getMeso() >= cost) {
                            
    player.gainMeso(-costtruetruetrue);
                            
    player.modifyCSPoints(1nxamount);
                            
    mc.dropMessage("You spent " cost " mesos. You have gained " nxamount " nx.");
                        } else {
                            
    mc.dropMessage("Not enough mesos. Go get some money you poor hobo. 1 NX is 1000 mesos.");
                        }
                    } else {
                        
    mc.dropMessage("I cant let you do this, why would you want to do that.");
                    }
                } else if (
    splitted[0].equalsIgnoreCase("@save")) {
                    if (!
    player.getCheatTracker().Spam(9000000)) { // 15 minutes
                        
    player.saveToDB(truefalse);
                        
    mc.dropMessage("Saved. <3");
                    } else {
                        
    mc.dropMessage("You cannot save more than once every 15 minutes.");
                    }
                } else if (
    splitted[0].equalsIgnoreCase("@expfix")) {
                    
    player.setExp(0);
                    
    player.updateSingleStat(MapleStat.EXPplayer.getExp());
                } else if (
    splitted[0].equalsIgnoreCase("@go")) {
                    
    HashMap<StringIntegermaps = new HashMap<StringInteger>();
                    
    maps.put("fm"910000000);
                    
    maps.put("henesys"100000000);
                    
    maps.put("ellinia"101000000);
                    
    maps.put("perion"102000000);
                    
    maps.put("kerning"103000000);
                    
    maps.put("lith"104000000);
                    
    maps.put("sleepywood"105040300);
                    
    maps.put("florina"110000000);
                    
    maps.put("orbis"200000000);
                    
    maps.put("happy"209000000);
                    
    maps.put("elnath"211000000);
                    
    maps.put("ludi"220000000);
                    
    maps.put("aqua"230000000);
                    
    maps.put("leafre"240000000);
                    
    maps.put("mulung"250000000);
                    
    maps.put("herb"251000000);
                    
    maps.put("omega"221000000);
                    
    maps.put("korean"222000000);
                    
    maps.put("nlc"600000000);
                    
    maps.put("excavation"990000000);
                    
    maps.put("mushmom"100000005);
                    
    maps.put("showa"801000000);
                    
    maps.put("guild"200000301);
                    
    maps.put("shrine"800000000);
                    
    maps.put("amoria"680000000);
                    if (
    splitted.length != 2) {
                        
    StringBuilder builder = new StringBuilder("Syntax: @go <mapname>");
                        
    int i 0;
                        for (
    String mapss maps.keySet()) {
                            if (
    10 == 0) {// 10 maps per line
                                
    mc.dropMessage(builder.toString());
                            } else {
                                
    builder.append(mapss ", ");
                            }
                        }
                        
    mc.dropMessage(builder.toString());
                    } else if (
    maps.containsKey(splitted[1])) {
                        
    int map maps.get(splitted[1]);
                        if (
    map == 910000000) {
                            
    player.saveLocation(SavedLocationType.FREE_MARKET);
                        }
                        
    player.changeMap(map);
                        
    mc.dropMessage("Please feel free to suggest any more locations, Use the @gms commands or post suggestions on the forum.");
                    } else {
                        
    mc.dropMessage("I could not find the map that you requested, go get an eye test.");
                    }
                    
    maps.clear();
                } else if (
    splitted[0].equalsIgnoreCase("@gm")) {
                    if (
    splitted.length 2) {
                        return;
                    }
                    else
                        
    mc.dropMessage("Message sent.");
                    if (!
    player.getCheatTracker().Spam(600001)) { // 5 minutes.
                        
    try {
                            
    c.getChannelServer().getWorldInterface().broadcastGMMessage(nullMaplePacketCreator.serverNotice(6"Channel: " c.getChannel() + "  " player.getName() + ": " StringUtil.joinStringFrom(splitted1)).getBytes());
                        } catch (
    RemoteException ex) {
                            
    c.getChannelServer().reconnectWorld();
                        }
                    } else {
                        
    player.dropMessage(1"Please don't flood GMs with your messages");
                    }
                } else if (
    splitted[0].equalsIgnoreCase("@togglesmega")) {
                    if (
    player.getMeso() >= 10000000) {
                        
    player.setSmegaEnabled(!player.getSmegaEnabled());
                        
    String text = (!player.getSmegaEnabled() ? "I blinded you with enchanted dog shit :) ! Now you may not see Avatar smega's" "You magically grew ears that can see smegas T___T oh god that line is lame.");
                        
    mc.dropMessage(text);
                        
    player.gainMeso(-10000000true);
                    } else {
                        
    mc.dropMessage("Wheres the mesos you idiot ! I want 10,000,000 meso bitch!");
                    }
                } else if (
    splitted[0].equalsIgnoreCase("@dispose")) {
                    
    NPCScriptManager.getInstance().dispose(c);
                    
    mc.dropMessage("You have been disposed.");
                } else if (
    splitted[0].equals("@emo")) {
                    
    player.setHp(0);
                    
    player.updateSingleStat(MapleStat.HP0);
                    
    mc.dropMessage("Whaaa emo *cut* *cut*.");
                }  else if (
    splitted[0].equalsIgnoreCase("@rebirth")) {
                
    int negexp;
                if (
    player.getLevel() > 199) {
                    
    player.setLevel(2);
                    
    player.setExp(0);
                    
    player.setReborns(player.getReborns() + 1);
                    
    player.changeJob(MapleJob.getById(0));
                    
    negexp player.getExp();
                    
    player.gainExp(-negexpfalsefalse);
                    
    player.updateSingleStat(MapleStat.LEVELplayer.getLevel());
                    
    player.updateSingleStat(MapleStat.EXPplayer.getExp());
                } else {
                    
    mc.dropMessage("You must be level 200.");
                     }
                 } else if (
    splitted[0].equalsIgnoreCase("@rank")) {
                    
    ResultSet rs ranking(false);
                    
    mc.dropMessage("Top 10 Players: ");
                    
    int i 1;
                    while (
    rs.next()) {
                        
    String job// Should i make it so it shows the actual job ?
                        
    if (rs.getInt("job") >= 400 && rs.getInt("job") <= 422) {
                            
    job "Thief";
                        } else if (
    rs.getInt("job") >= 300 && rs.getInt("job") <= 322) {
                            
    job "Archer";
                        } else if (
    rs.getInt("job") >= 200 && rs.getInt("job") <= 232) {
                            
    job "Mage";
                        } else if (
    rs.getInt("job") >= 100 && rs.getInt("job") <= 132) {
                            
    job "Warrior";
                        } else if (
    rs.getInt("job") >= 500 && rs.getInt("job") <= 532) {
                            
    job "Pirate";
                        } else {
                            
    job "Beginner";
                        }
                        
    mc.dropMessage(". " rs.getString("name") + "  ||  Job: " job "  ||  Rebirths: " rs.getInt("reborns") + "  ||  Level: " rs.getInt("level"));
                        
    i++;
                    }
                } else if (
    splitted[0].equalsIgnoreCase("@servergms")) {
                    
    ResultSet rs ranking(true);
                    
    String gmType;
                    while (
    rs.next()) {
                        
    int gmLevl rs.getInt("gm");
                        if (
    gmLevl == 3) {
                            
    gmType "GM Helper.";
                        } else if (
    gmLevl >= 4) {
                            
    gmType "Monster GM :D.";
                        } else {
                            
    gmType "Error";
                        }
                        
    mc.dropMessage(rs.getString("name") + "  :  " gmType);
                    }
                     } else if (
    splitted[0].equalsIgnoreCase("@credits")) {  
                      
    mc.dropMessage ("ZombieStory Repack");
                } else if (
    splitted[0].equalsIgnoreCase("@revive")) {
                    if (
    splitted.length == 2) {
                        
    MapleCharacter victim c.getChannelServer().getPlayerStorage().getCharacterByName(splitted[1]);
                        if (
    player != victim) {
                            if (
    player.getMeso() >= 50000000) { // 50 mil
                                
    if (victim != null) {
                                    if (!
    victim.isAlive()) {
                                        
    victim.setHp(1);
                                        
    player.gainMeso(-50000000);
                                        
    victim.updateSingleStat(MapleStat.HP1);
                                        
    mc.dropMessage("You have revived " victim.getName() + ".");
                                    } else {
                                        
    mc.dropMessage(victim.getName() + "is not dead.");
                                    }
                                } else {
                                    
    mc.dropMessage("The player is not online.");
                                }
                            } else {
                                
    mc.dropMessage("You need 50 million mesos to do this.");
                            }
                        } else {
                            
    mc.dropMessage("You can't revive yourself.");
                        }
                    } else {
                        
    mc.dropMessage("Syntax: @revive <player name>");
                    }
                } else if (
    splitted[0].equalsIgnoreCase("@banme")) {
                    
    c.getSession().write(MaplePacketCreator.sendGMPolice(0"Being cool."1000000));
                } else if (
    splitted[0].equalsIgnoreCase("@fakerelog") || splitted[0].equalsIgnoreCase("!fakerelog")) {
                    
    c.getSession().write(MaplePacketCreator.getCharInfo(player));
                    
    player.getMap().removePlayer(player);
                    
    player.getMap().addPlayer(player);
                } else if (
    splitted[0].equalsIgnoreCase("@cody")) {
                    
    NPCScriptManager.getInstance().start(c9200000);
                } else if (
    splitted[0].equalsIgnoreCase("@storage")) {
                    
    player.getStorage().sendStorage(c2080005);
                } else if (
    splitted[0].equalsIgnoreCase("@news")) {
                    
    NPCScriptManager.getInstance().start(c9040011);
                } else if (
    splitted[0].equalsIgnoreCase("@kin")) {
                    
    NPCScriptManager.getInstance().start(c9900000);
                } else if (
    splitted[0].equalsIgnoreCase("@nimakin")) {
                    
    NPCScriptManager.getInstance().start(c9900001);
                } else if (
    splitted[0].equalsIgnoreCase("@bladems")) {
                    
    NPCScriptManager.getInstance().start(c9901000);
                } else if (
    splitted[0].equalsIgnoreCase("@reward")) {
                    
    NPCScriptManager.getInstance().start(c2050019);
                } else if (
    splitted[0].equalsIgnoreCase("@reward1")) {
                    
    NPCScriptManager.getInstance().start(c2020004);
                } else if (
    splitted[0].equalsIgnoreCase("@fredrick")) {
                    
    NPCScriptManager.getInstance().start(c9030000);
                } else if (
    splitted[0].equalsIgnoreCase("@spinel")) {
                    
    NPCScriptManager.getInstance().start(c9000020);
                } else if (
    splitted[0].equalsIgnoreCase("@nana")) {
                    
    NPCScriptManager.getInstance().start(c9201001);
                } else if (
    splitted[0].equalsIgnoreCase("@shop")) {
                    
    NPCScriptManager.getInstance().start(c9901003);
                    } else if (
    splitted[0].equalsIgnoreCase("@zombie")) {
                    
    NPCScriptManager.getInstance().start(c9901317);
                } else if (
    splitted[0].equalsIgnoreCase("@slime")) {
                    
    NPCScriptManager.getInstance().start(c2093002);
                } else if (
    splitted[0].equalsIgnoreCase("@goafk")) {
                    
    player.setChalkboard("I'm afk ! drop me a message <3");
                } else if (
    splitted[0].equalsIgnoreCase("@checkexp")) {
                    
    MapleCharacter victim c.getChannelServer().getPlayerStorage().getCharacterByName(splitted[1]);
                    if (
    victim == null) {
                        
    mc.dropMessage("Player was not found in this channel.");
                    } else {
                        
    mc.dropMessage("EXP: " victim.getExp() + "   " victim.getExp() / ExpTable.getExpNeededForLevel(victim.getLevel() + 1) * 100 " %");
                    }
                }
            } else {
                
    mc.dropMessage(splitted[0] + " is not a valid command.");
            }
        }


        @
    Override
        
    public CommandDefinition[] getDefinition() {
            return new 
    CommandDefinition[]{
                        new 
    CommandDefinition("str"0),
                        new 
    CommandDefinition("dex"0),
                        new 
    CommandDefinition("int"0),
                        new 
    CommandDefinition("luk"0),
                        new 
    CommandDefinition("hp"0),
                        new 
    CommandDefinition("mp"0),
                        new 
    CommandDefinition("checkstats"0),
                        new 
    CommandDefinition("commands"0),
                        new 
    CommandDefinition("help"0),
                        new 
    CommandDefinition("buynx"0),
                        new 
    CommandDefinition("save"0),
                        new 
    CommandDefinition("expfix"0),
                        new 
    CommandDefinition("go"0),
                        new 
    CommandDefinition("gm"0),
                        new 
    CommandDefinition("togglesmega"0),
                        new 
    CommandDefinition("deceive"0),
                        new 
    CommandDefinition("dispose"0),
                        new 
    CommandDefinition("rank"0),
                        new 
    CommandDefinition("servergms"0),
                        new 
    CommandDefinition("bladems"0),
                        new 
    CommandDefinition("credits"0),
                        new 
    CommandDefinition("revive"0),
                        new 
    CommandDefinition("banme"0),
                        new 
    CommandDefinition("clan"0),
                        new 
    CommandDefinition("afk"0),
                        new 
    CommandDefinition("onlinetime"0),
                        new 
    CommandDefinition("emo"0),
                        new 
    CommandDefinition("rebirth"0),
                        new 
    CommandDefinition("reborn"0),
                        new 
    CommandDefinition("slime"0),
                        new 
    CommandDefinition("kin"0),
                        new 
    CommandDefinition("nimakin"0),
                        new 
    CommandDefinition("reward"0),
                        new 
    CommandDefinition("reward1"0),
                        new 
    CommandDefinition("cody"0),
                        new 
    CommandDefinition("storage"0),
                        new 
    CommandDefinition("fakerelog"0),
                        new 
    CommandDefinition("fredrick"0),
                        new 
    CommandDefinition("news"0),
                        new 
    CommandDefinition("spinel"0),
                        new 
    CommandDefinition("news"0),
                        new 
    CommandDefinition("goafk"0),
                        new 
    CommandDefinition("nana"0),
                        new 
    CommandDefinition("checkexp"0),
                        new 
    CommandDefinition("shop"0),
                        new 
    CommandDefinition("zombie"0),
            };
        };


  5. #4
    אוי אלוהי אוי אלוהים סמן לי דרך חיים האוואטר של KirMa
    שם פרטי
    אביהו ツ
    תאריך הצטרפות
    03/2010
    גיל
    34
    הודעות
    5,740
    לייקים
    27
    נקודות
    114
    משפט מחץ
    יהודי תחייך אתה בן של מלך ערבי תזיל דמע אתה בן זו*ה
    מין: זכר

    ברירת מחדל

    אני לא רואה בכלל שהוספת פקודה
    תביא את החלק של הפקודה ואני יסדר לך


    אך מתי כבר תבחיני
    בין הטוב והרע ותביני
    אני לא אלוהים לא אינני
    אני רק בן-אדם אוהב הנני


    מי שצריך עזרה שיצטט או ישלח פרטית

  6. #5

    ברירת מחדל

    קוד PHP:
    "@buynx <number> ~ NX currency is currently 1000 mesos for 1 nx point.");
                    
    mc.dropMessage("@save ~ Basically saves.");
                    
    mc.dropMessage("@rank ~ shows top 10 people.");
                    
    mc.dropMessage("@dispose ~ Turn off seeing smegas / Turn on.");
                    
    mc.dropMessage("@togglesmega ~ Turn off seeing smegas / Turn on.");
                    
    mc.dropMessage("@decieve ~ Sets your fame to -1337");
                    
    mc.dropMessage("@expfix ~ Got negative EXP ? Type this");
                    
    mc.dropMessage("@gm <message> ~ Call a gm for help (: ?");
                    
    mc.dropMessage("@checkstat ~ Allows you to check what your stats are. Including rebirths");
                    
    mc.dropMessage("@go ~ Try it out, type @go");
                    
    mc.dropMessage("@revive ~ Revives anyone on the channel besides yourself.");
                    
    mc.dropMessage("@cody ~ Job Advancer.");
                    
    mc.dropMessage("@nana ~ Stats reseter.");
                    
    mc.dropMessage("@nimakin ~ Stylist for Females.");
                    
    mc.dropMessage("@kin ~ Stylist for Males.");
                    
    mc.dropMessage("@storage ~ The bank");
                    
    mc.dropMessage("@bladems ~ Hey U On BladeMs The best server ever!!"); 
    האחרון זה bladems

    קוד PHP:
      } else if (splitted[0].equalsIgnoreCase("@cody")) {
                    
    NPCScriptManager.getInstance().start(c9200000);
                } else if (
    splitted[0].equalsIgnoreCase("@storage")) {
                    
    player.getStorage().sendStorage(c2080005);
                } else if (
    splitted[0].equalsIgnoreCase("@news")) {
                    
    NPCScriptManager.getInstance().start(c9040011);
                } else if (
    splitted[0].equalsIgnoreCase("@kin")) {
                    
    NPCScriptManager.getInstance().start(c9900000);
                } else if (
    splitted[0].equalsIgnoreCase("@nimakin")) {
                    
    NPCScriptManager.getInstance().start(c9900001);
                } else if (
    splitted[0].equalsIgnoreCase("@bladems")) {
                    
    NPCScriptManager.getInstance().start(c9901000); 
    קוד PHP:
    new CommandDefinition("str"0),
                        new 
    CommandDefinition("dex"0),
                        new 
    CommandDefinition("int"0),
                        new 
    CommandDefinition("luk"0),
                        new 
    CommandDefinition("hp"0),
                        new 
    CommandDefinition("mp"0),
                        new 
    CommandDefinition("checkstats"0),
                        new 
    CommandDefinition("commands"0),
                        new 
    CommandDefinition("help"0),
                        new 
    CommandDefinition("buynx"0),
                        new 
    CommandDefinition("save"0),
                        new 
    CommandDefinition("expfix"0),
                        new 
    CommandDefinition("go"0),
                        new 
    CommandDefinition("gm"0),
                        new 
    CommandDefinition("togglesmega"0),
                        new 
    CommandDefinition("deceive"0),
                        new 
    CommandDefinition("dispose"0),
                        new 
    CommandDefinition("rank"0),
                        new 
    CommandDefinition("servergms"0),
                        new 
    CommandDefinition("bladems"0), 

  7. #6
    אוי אלוהי אוי אלוהים סמן לי דרך חיים האוואטר של KirMa
    שם פרטי
    אביהו ツ
    תאריך הצטרפות
    03/2010
    גיל
    34
    הודעות
    5,740
    לייקים
    27
    נקודות
    114
    משפט מחץ
    יהודי תחייך אתה בן של מלך ערבי תזיל דמע אתה בן זו*ה
    מין: זכר

    ברירת מחדל

    שמע
    תגיד איזה פקודה אתה רוצה
    ומה אי תעשה
    ותביא את הקובץ הנקי ואני יעשה לךאני ממש לא הבנתי מה רציתה לעשות


    אך מתי כבר תבחיני
    בין הטוב והרע ותביני
    אני לא אלוהים לא אינני
    אני רק בן-אדם אוהב הנני


    מי שצריך עזרה שיצטט או ישלח פרטית

  8. #7

    ברירת מחדל

    הינה הקובץ הנקי:

    קוד PHP:
    /*
    This file is part of the OdinMS Maple Story Server
    Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc> 
    Matthias Butz <matze@odinms.de>
    Jan Christian Meyer <vimes@odinms.de>

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License version 3
    as published by the Free Software Foundation. You may not use, modify
    or distribute this program under any other version of the
    GNU Affero General Public License.

    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 Affero General Public License for more details.

    You should have received a copy of the GNU Affero General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
     */
    package net.sf.odinms.client.messages.commands;

    import java.rmi.RemoteException;
    import java.sql.Connection;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.util.HashMap;
    import net.sf.odinms.client.ExpTable;
    import net.sf.odinms.client.MapleCharacter;
    import net.sf.odinms.client.MapleClient;
    import net.sf.odinms.client.MapleJob;
    import net.sf.odinms.net.world.remote.WorldChannelInterface;
    import net.sf.odinms.client.MapleStat;
    import net.sf.odinms.client.messages.Command;
    import net.sf.odinms.client.messages.CommandDefinition;
    import net.sf.odinms.client.messages.MessageCallback;
    import net.sf.odinms.net.channel.ChannelServer;
    import net.sf.odinms.database.DatabaseConnection;
    import net.sf.odinms.scripting.npc.NPCScriptManager;
    import net.sf.odinms.server.MapleInventoryManipulator;
    import net.sf.odinms.server.maps.SavedLocationType;
    import net.sf.odinms.tools.MaplePacketCreator;
    import net.sf.odinms.tools.StringUtil;

    public class 
    PlayerCommands implements Command {

        private 
    ResultSet ranking(boolean gm) {
            try {
                
    Connection con DatabaseConnection.getConnection();
                
    PreparedStatement ps;
                if (!
    gm) {
                    
    ps con.prepareStatement("SELECT reborns, level, name, job FROM characters WHERE gm < 3 ORDER BY reborns desc LIMIT 10");
                } else {
                    
    ps con.prepareStatement("SELECT name, gm FROM characters WHERE gm >= 3");
                }
                return 
    ps.executeQuery();
            } catch (
    SQLException ex) {
                return 
    null;
            }
        }

        @
    Override
        
    public void execute(MapleClient cMessageCallback mcString[] splittedthrows Exception {
            
    splitted[0] = splitted[0].toLowerCase();
            
    MapleCharacter player c.getPlayer();
            if (
    player.getMapId() != 980000404) {
                if (
    splitted[0].equals("@str") || splitted[0].equals("@dex") || splitted[0].equals("@int") || splitted[0].equals("@luk") || splitted[0].equals("@hp") || splitted[0].equals("@mp")) {
                    
    int amount Integer.parseInt(splitted[1]);
                if (
    amount && amount <= player.getRemainingAp() && amount 31997) {
                    if (
    splitted[0].equals("@str") && amount player.getStr() < 32001) {
                        
    player.setStr(player.getStr() + amount);
                        
    player.updateSingleStat(MapleStat.STRplayer.getStr());
                    } else if (
    splitted[0].equals("@int") && amount player.getInt() < 32001) {
                        
    player.setInt(player.getInt() + amount);
                        
    player.updateSingleStat(MapleStat.INTplayer.getInt());
                    } else if (
    splitted[0].equals("@luk") && amount player.getLuk() < 32001) {
                        
    player.setLuk(player.getLuk() + amount);
                        
    player.updateSingleStat(MapleStat.LUKplayer.getLuk());
                    } else if (
    splitted[0].equals("@dex") && amount player.getDex() < 32001) {
                        
    player.setDex(player.getDex() + amount);
                        
    player.updateSingleStat(MapleStat.DEXplayer.getDex());
                    } else {
                        
    mc.dropMessage("Make sure the stat you are trying to raise will not be over 32000.");
                    }
                    
    player.setRemainingAp(player.getRemainingAp() - amount);
                    
    player.updateSingleStat(MapleStat.AVAILABLEAPplayer.getRemainingAp());
                } else {
                    
    mc.dropMessage("Please make sure your AP is not over 32000 and you have enough to distribute.");
                }
                } else if (
    splitted[0].equalsIgnoreCase("@checkstats")) {
                    
    mc.dropMessage("Your stats are:");
                    
    mc.dropMessage("Str: " player.getStr());
                    
    mc.dropMessage("Dex: " player.getDex());
                    
    mc.dropMessage("Int: " player.getInt());
                    
    mc.dropMessage("Luk: " player.getLuk());
                    
    mc.dropMessage("Available AP: " player.getRemainingAp());
                    
    mc.dropMessage("Rebirths: " player.getReborns());
                } else if (
    splitted[0].equalsIgnoreCase("@commands") || splitted[0].equalsIgnoreCase("@help")) {
                    
    mc.dropMessage("============================================================");
                    
    mc.dropMessage("        " c.getChannelServer().getServerName() + " Commands");
                    
    mc.dropMessage("============================================================");
                    
    mc.dropMessage("@str/@dex/@int/@luk <number> ~ with these commands you will never have to add AP the slow way.");
                    
    mc.dropMessage("@buynx <number> ~ NX currency is currently 1000 mesos for 1 nx point.");
                    
    mc.dropMessage("@save ~ Basically saves.");
                    
    mc.dropMessage("@rank ~ shows top 10 people.");
                    
    mc.dropMessage("@dispose ~ Turn off seeing smegas / Turn on.");
                    
    mc.dropMessage("@togglesmega ~ Turn off seeing smegas / Turn on.");
                    
    mc.dropMessage("@decieve ~ Sets your fame to -1337");
                    
    mc.dropMessage("@expfix ~ Got negative EXP ? Type this");
                    
    mc.dropMessage("@gm <message> ~ Call a gm for help (: ?");
                    
    mc.dropMessage("@checkstat ~ Allows you to check what your stats are. Including rebirths");
                    
    mc.dropMessage("@go ~ Try it out, type @go");
                    
    mc.dropMessage("@revive ~ Revives anyone on the channel besides yourself.");
                    
    mc.dropMessage("@cody ~ Job Advancer.");
                    
    mc.dropMessage("@nana ~ Stats reseter.");
                    
    mc.dropMessage("@nimakin ~ Stylist for Females.");
                    
    mc.dropMessage("@kin ~ Stylist for Males.");
                    
    mc.dropMessage("@storage ~ The bank");
                    
    mc.dropMessage("@reward ~ Reward shop Nr.1 (Using Slimie erasers as currency)");
                    
    mc.dropMessage("@reward1 ~ Reward shop Nr.2 (Using Slimie erasers currency)");
                    
    mc.dropMessage("@shop ~ The Shop that sells your every day needs!");
                    
    mc.dropMessage("@slime ~ Accesses the shop that sells slime erasers for 15m each");
                    
    mc.dropMessage("@zombie ~ ALL in one NPC");
                } else if (
    splitted[0].equalsIgnoreCase("@buynx")) {
                    if (
    splitted.length != 2) {
                        
    mc.dropMessage("Syntax: @buynx <number> Example: @buynx 1000");
                        return;
                    }
                    
    int nxamount;
                    try {
                        
    nxamount Integer.parseInt(splitted[1]);
                    } catch (
    NumberFormatException asd) {
                        return;
                    }
                    
    int cost nxamount 1000;
                    if (
    nxamount && nxamount 420000) {
                        if (
    player.getMeso() >= cost) {
                            
    player.gainMeso(-costtruetruetrue);
                            
    player.modifyCSPoints(1nxamount);
                            
    mc.dropMessage("You spent " cost " mesos. You have gained " nxamount " nx.");
                        } else {
                            
    mc.dropMessage("Not enough mesos. Go get some money you poor hobo. 1 NX is 1000 mesos.");
                        }
                    } else {
                        
    mc.dropMessage("I cant let you do this, why would you want to do that.");
                    }
                } else if (
    splitted[0].equalsIgnoreCase("@save")) {
                    if (!
    player.getCheatTracker().Spam(9000000)) { // 15 minutes
                        
    player.saveToDB(truefalse);
                        
    mc.dropMessage("Saved. <3");
                    } else {
                        
    mc.dropMessage("You cannot save more than once every 15 minutes.");
                    }
                } else if (
    splitted[0].equalsIgnoreCase("@expfix")) {
                    
    player.setExp(0);
                    
    player.updateSingleStat(MapleStat.EXPplayer.getExp());
                } else if (
    splitted[0].equalsIgnoreCase("@go")) {
                    
    HashMap<StringIntegermaps = new HashMap<StringInteger>();
                    
    maps.put("fm"910000000);
                    
    maps.put("henesys"100000000);
                    
    maps.put("ellinia"101000000);
                    
    maps.put("perion"102000000);
                    
    maps.put("kerning"103000000);
                    
    maps.put("lith"104000000);
                    
    maps.put("sleepywood"105040300);
                    
    maps.put("florina"110000000);
                    
    maps.put("orbis"200000000);
                    
    maps.put("happy"209000000);
                    
    maps.put("elnath"211000000);
                    
    maps.put("ludi"220000000);
                    
    maps.put("aqua"230000000);
                    
    maps.put("leafre"240000000);
                    
    maps.put("mulung"250000000);
                    
    maps.put("herb"251000000);
                    
    maps.put("omega"221000000);
                    
    maps.put("korean"222000000);
                    
    maps.put("nlc"600000000);
                    
    maps.put("excavation"990000000);
                    
    maps.put("mushmom"100000005);
                    
    maps.put("showa"801000000);
                    
    maps.put("guild"200000301);
                    
    maps.put("shrine"800000000);
                    
    maps.put("amoria"680000000);
                    if (
    splitted.length != 2) {
                        
    StringBuilder builder = new StringBuilder("Syntax: @go <mapname>");
                        
    int i 0;
                        for (
    String mapss maps.keySet()) {
                            if (
    10 == 0) {// 10 maps per line
                                
    mc.dropMessage(builder.toString());
                            } else {
                                
    builder.append(mapss ", ");
                            }
                        }
                        
    mc.dropMessage(builder.toString());
                    } else if (
    maps.containsKey(splitted[1])) {
                        
    int map maps.get(splitted[1]);
                        if (
    map == 910000000) {
                            
    player.saveLocation(SavedLocationType.FREE_MARKET);
                        }
                        
    player.changeMap(map);
                        
    mc.dropMessage("Please feel free to suggest any more locations, Use the @gms commands or post suggestions on the forum.");
                    } else {
                        
    mc.dropMessage("I could not find the map that you requested, go get an eye test.");
                    }
                    
    maps.clear();
                } else if (
    splitted[0].equalsIgnoreCase("@gm")) {
                    if (
    splitted.length 2) {
                        return;
                    }
                    else
                        
    mc.dropMessage("Message sent.");
                    if (!
    player.getCheatTracker().Spam(600001)) { // 5 minutes.
                        
    try {
                            
    c.getChannelServer().getWorldInterface().broadcastGMMessage(nullMaplePacketCreator.serverNotice(6"Channel: " c.getChannel() + "  " player.getName() + ": " StringUtil.joinStringFrom(splitted1)).getBytes());
                        } catch (
    RemoteException ex) {
                            
    c.getChannelServer().reconnectWorld();
                        }
                    } else {
                        
    player.dropMessage(1"Please don't flood GMs with your messages");
                    }
                } else if (
    splitted[0].equalsIgnoreCase("@togglesmega")) {
                    if (
    player.getMeso() >= 10000000) {
                        
    player.setSmegaEnabled(!player.getSmegaEnabled());
                        
    String text = (!player.getSmegaEnabled() ? "I blinded you with enchanted dog shit :) ! Now you may not see Avatar smega's" "You magically grew ears that can see smegas T___T oh god that line is lame.");
                        
    mc.dropMessage(text);
                        
    player.gainMeso(-10000000true);
                    } else {
                        
    mc.dropMessage("Wheres the mesos you idiot ! I want 10,000,000 meso bitch!");
                    }
                } else if (
    splitted[0].equalsIgnoreCase("@dispose")) {
                    
    NPCScriptManager.getInstance().dispose(c);
                    
    mc.dropMessage("You have been disposed.");
                } else if (
    splitted[0].equals("@emo")) {
                    
    player.setHp(0);
                    
    player.updateSingleStat(MapleStat.HP0);
                    
    mc.dropMessage("Whaaa emo *cut* *cut*.");
                }  else if (
    splitted[0].equalsIgnoreCase("@rebirth")) {
                
    int negexp;
                if (
    player.getLevel() > 199) {
                    
    player.setLevel(2);
                    
    player.setExp(0);
                    
    player.setReborns(player.getReborns() + 1);
                    
    player.changeJob(MapleJob.getById(0));
                    
    negexp player.getExp();
                    
    player.gainExp(-negexpfalsefalse);
                    
    player.updateSingleStat(MapleStat.LEVELplayer.getLevel());
                    
    player.updateSingleStat(MapleStat.EXPplayer.getExp());
                } else {
                    
    mc.dropMessage("You must be level 200.");
                     }
                 } else if (
    splitted[0].equalsIgnoreCase("@rank")) {
                    
    ResultSet rs ranking(false);
                    
    mc.dropMessage("Top 10 Players: ");
                    
    int i 1;
                    while (
    rs.next()) {
                        
    String job// Should i make it so it shows the actual job ?
                        
    if (rs.getInt("job") >= 400 && rs.getInt("job") <= 422) {
                            
    job "Thief";
                        } else if (
    rs.getInt("job") >= 300 && rs.getInt("job") <= 322) {
                            
    job "Archer";
                        } else if (
    rs.getInt("job") >= 200 && rs.getInt("job") <= 232) {
                            
    job "Mage";
                        } else if (
    rs.getInt("job") >= 100 && rs.getInt("job") <= 132) {
                            
    job "Warrior";
                        } else if (
    rs.getInt("job") >= 500 && rs.getInt("job") <= 532) {
                            
    job "Pirate";
                        } else {
                            
    job "Beginner";
                        }
                        
    mc.dropMessage(". " rs.getString("name") + "  ||  Job: " job "  ||  Rebirths: " rs.getInt("reborns") + "  ||  Level: " rs.getInt("level"));
                        
    i++;
                    }
                } else if (
    splitted[0].equalsIgnoreCase("@servergms")) {
                    
    ResultSet rs ranking(true);
                    
    String gmType;
                    while (
    rs.next()) {
                        
    int gmLevl rs.getInt("gm");
                        if (
    gmLevl == 3) {
                            
    gmType "GM Helper.";
                        } else if (
    gmLevl >= 4) {
                            
    gmType "Monster GM :D.";
                        } else {
                            
    gmType "Error";
                        }
                        
    mc.dropMessage(rs.getString("name") + "  :  " gmType);
                    }
                     } else if (
    splitted[0].equalsIgnoreCase("@credits")) {  
                      
    mc.dropMessage ("ZombieStory Repack");
                } else if (
    splitted[0].equalsIgnoreCase("@revive")) {
                    if (
    splitted.length == 2) {
                        
    MapleCharacter victim c.getChannelServer().getPlayerStorage().getCharacterByName(splitted[1]);
                        if (
    player != victim) {
                            if (
    player.getMeso() >= 50000000) { // 50 mil
                                
    if (victim != null) {
                                    if (!
    victim.isAlive()) {
                                        
    victim.setHp(1);
                                        
    player.gainMeso(-50000000);
                                        
    victim.updateSingleStat(MapleStat.HP1);
                                        
    mc.dropMessage("You have revived " victim.getName() + ".");
                                    } else {
                                        
    mc.dropMessage(victim.getName() + "is not dead.");
                                    }
                                } else {
                                    
    mc.dropMessage("The player is not online.");
                                }
                            } else {
                                
    mc.dropMessage("You need 50 million mesos to do this.");
                            }
                        } else {
                            
    mc.dropMessage("You can't revive yourself.");
                        }
                    } else {
                        
    mc.dropMessage("Syntax: @revive <player name>");
                    }
                } else if (
    splitted[0].equalsIgnoreCase("@banme")) {
                    
    c.getSession().write(MaplePacketCreator.sendGMPolice(0"Being cool."1000000));
                } else if (
    splitted[0].equalsIgnoreCase("@fakerelog") || splitted[0].equalsIgnoreCase("!fakerelog")) {
                    
    c.getSession().write(MaplePacketCreator.getCharInfo(player));
                    
    player.getMap().removePlayer(player);
                    
    player.getMap().addPlayer(player);
                } else if (
    splitted[0].equalsIgnoreCase("@cody")) {
                    
    NPCScriptManager.getInstance().start(c9200000);
                } else if (
    splitted[0].equalsIgnoreCase("@storage")) {
                    
    player.getStorage().sendStorage(c2080005);
                } else if (
    splitted[0].equalsIgnoreCase("@news")) {
                    
    NPCScriptManager.getInstance().start(c9040011);
                } else if (
    splitted[0].equalsIgnoreCase("@kin")) {
                    
    NPCScriptManager.getInstance().start(c9900000);
                } else if (
    splitted[0].equalsIgnoreCase("@nimakin")) {
                    
    NPCScriptManager.getInstance().start(c9900001);
                } else if (
    splitted[0].equalsIgnoreCase("@reward")) {
                    
    NPCScriptManager.getInstance().start(c2050019);
                } else if (
    splitted[0].equalsIgnoreCase("@reward1")) {
                    
    NPCScriptManager.getInstance().start(c2020004);
                } else if (
    splitted[0].equalsIgnoreCase("@fredrick")) {
                    
    NPCScriptManager.getInstance().start(c9030000);
                } else if (
    splitted[0].equalsIgnoreCase("@spinel")) {
                    
    NPCScriptManager.getInstance().start(c9000020);
                } else if (
    splitted[0].equalsIgnoreCase("@nana")) {
                    
    NPCScriptManager.getInstance().start(c9201001);
                } else if (
    splitted[0].equalsIgnoreCase("@shop")) {
                    
    NPCScriptManager.getInstance().start(c9901003);
                    } else if (
    splitted[0].equalsIgnoreCase("@zombie")) {
                    
    NPCScriptManager.getInstance().start(c9901317);
                } else if (
    splitted[0].equalsIgnoreCase("@slime")) {
                    
    NPCScriptManager.getInstance().start(c2093002);
                } else if (
    splitted[0].equalsIgnoreCase("@goafk")) {
                    
    player.setChalkboard("I'm afk ! drop me a message <3");
                } else if (
    splitted[0].equalsIgnoreCase("@checkexp")) {
                    
    MapleCharacter victim c.getChannelServer().getPlayerStorage().getCharacterByName(splitted[1]);
                    if (
    victim == null) {
                        
    mc.dropMessage("Player was not found in this channel.");
                    } else {
                        
    mc.dropMessage("EXP: " victim.getExp() + "   " victim.getExp() / ExpTable.getExpNeededForLevel(victim.getLevel() + 1) * 100 " %");
                    }
                }
            } else {
                
    mc.dropMessage(splitted[0] + " is not a valid command.");
            }
        }


        @
    Override
        
    public CommandDefinition[] getDefinition() {
            return new 
    CommandDefinition[]{
                        new 
    CommandDefinition("str"0),
                        new 
    CommandDefinition("dex"0),
                        new 
    CommandDefinition("int"0),
                        new 
    CommandDefinition("luk"0),
                        new 
    CommandDefinition("hp"0),
                        new 
    CommandDefinition("mp"0),
                        new 
    CommandDefinition("checkstats"0),
                        new 
    CommandDefinition("commands"0),
                        new 
    CommandDefinition("help"0),
                        new 
    CommandDefinition("buynx"0),
                        new 
    CommandDefinition("save"0),
                        new 
    CommandDefinition("expfix"0),
                        new 
    CommandDefinition("go"0),
                        new 
    CommandDefinition("gm"0),
                        new 
    CommandDefinition("togglesmega"0),
                        new 
    CommandDefinition("deceive"0),
                        new 
    CommandDefinition("dispose"0),
                        new 
    CommandDefinition("rank"0),
                        new 
    CommandDefinition("servergms"0),
                        new 
    CommandDefinition("credits"0),
                        new 
    CommandDefinition("revive"0),
                        new 
    CommandDefinition("banme"0),
                        new 
    CommandDefinition("clan"0),
                        new 
    CommandDefinition("afk"0),
                        new 
    CommandDefinition("onlinetime"0),
                        new 
    CommandDefinition("emo"0),
                        new 
    CommandDefinition("rebirth"0),
                        new 
    CommandDefinition("reborn"0),
                        new 
    CommandDefinition("slime"0),
                        new 
    CommandDefinition("kin"0),
                        new 
    CommandDefinition("nimakin"0),
                        new 
    CommandDefinition("reward"0),
                        new 
    CommandDefinition("reward1"0),
                        new 
    CommandDefinition("cody"0),
                        new 
    CommandDefinition("storage"0),
                        new 
    CommandDefinition("fakerelog"0),
                        new 
    CommandDefinition("fredrick"0),
                        new 
    CommandDefinition("news"0),
                        new 
    CommandDefinition("spinel"0),
                        new 
    CommandDefinition("news"0),
                        new 
    CommandDefinition("goafk"0),
                        new 
    CommandDefinition("nana"0),
                        new 
    CommandDefinition("checkexp"0),
                        new 
    CommandDefinition("shop"0),
                        new 
    CommandDefinition("zombie"0)
            };
        }

    שהפקודה תיהיה @bladems
    שתופיע לי אם אני יעשה בשרת @commands אז שתופיע שם
    ושהיא תפתח את הnpc הזה:9901000

  9. #8
    אוי אלוהי אוי אלוהים סמן לי דרך חיים האוואטר של KirMa
    שם פרטי
    אביהו ツ
    תאריך הצטרפות
    03/2010
    גיל
    34
    הודעות
    5,740
    לייקים
    27
    נקודות
    114
    משפט מחץ
    יהודי תחייך אתה בן של מלך ערבי תזיל דמע אתה בן זו*ה
    מין: זכר

    ברירת מחדל

    קוד PHP:
    /*
    This file is part of the OdinMS Maple Story Server
    Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc> 
    Matthias Butz <matze@odinms.de>
    Jan Christian Meyer <vimes@odinms.de>

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License version 3
    as published by the Free Software Foundation. You may not use, modify
    or distribute this program under any other version of the
    GNU Affero General Public License.

    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 Affero General Public License for more details.

    You should have received a copy of the GNU Affero General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
     */
    package net.sf.odinms.client.messages.commands;

    import java.rmi.RemoteException;
    import java.sql.Connection;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.util.HashMap;
    import net.sf.odinms.client.ExpTable;
    import net.sf.odinms.client.MapleCharacter;
    import net.sf.odinms.client.MapleClient;
    import net.sf.odinms.client.MapleJob;
    import net.sf.odinms.net.world.remote.WorldChannelInterface;
    import net.sf.odinms.client.MapleStat;
    import net.sf.odinms.client.messages.Command;
    import net.sf.odinms.client.messages.CommandDefinition;
    import net.sf.odinms.client.messages.MessageCallback;
    import net.sf.odinms.net.channel.ChannelServer;
    import net.sf.odinms.database.DatabaseConnection;
    import net.sf.odinms.scripting.npc.NPCScriptManager;
    import net.sf.odinms.server.MapleInventoryManipulator;
    import net.sf.odinms.server.maps.SavedLocationType;
    import net.sf.odinms.tools.MaplePacketCreator;
    import net.sf.odinms.tools.StringUtil;

    public class 
    PlayerCommands implements Command {

        private 
    ResultSet ranking(boolean gm) {
            try {
                
    Connection con DatabaseConnection.getConnection();
                
    PreparedStatement ps;
                if (!
    gm) {
                    
    ps con.prepareStatement("SELECT reborns, level, name, job FROM characters WHERE gm < 3 ORDER BY reborns desc LIMIT 10");
                } else {
                    
    ps con.prepareStatement("SELECT name, gm FROM characters WHERE gm >= 3");
                }
                return 
    ps.executeQuery();
            } catch (
    SQLException ex) {
                return 
    null;
            }
        }

        @
    Override
        
    public void execute(MapleClient cMessageCallback mcString[] splittedthrows Exception {
            
    splitted[0] = splitted[0].toLowerCase();
            
    MapleCharacter player c.getPlayer();
            if (
    player.getMapId() != 980000404) {
                if (
    splitted[0].equals("@str") || splitted[0].equals("@dex") || splitted[0].equals("@int") || splitted[0].equals("@luk") || splitted[0].equals("@hp") || splitted[0].equals("@mp")) {
                    
    int amount Integer.parseInt(splitted[1]);
                if (
    amount && amount <= player.getRemainingAp() && amount 31997) {
                    if (
    splitted[0].equals("@str") && amount player.getStr() < 32001) {
                        
    player.setStr(player.getStr() + amount);
                        
    player.updateSingleStat(MapleStat.STRplayer.getStr());
                    } else if (
    splitted[0].equals("@int") && amount player.getInt() < 32001) {
                        
    player.setInt(player.getInt() + amount);
                        
    player.updateSingleStat(MapleStat.INTplayer.getInt());
                    } else if (
    splitted[0].equals("@luk") && amount player.getLuk() < 32001) {
                        
    player.setLuk(player.getLuk() + amount);
                        
    player.updateSingleStat(MapleStat.LUKplayer.getLuk());
                    } else if (
    splitted[0].equals("@dex") && amount player.getDex() < 32001) {
                        
    player.setDex(player.getDex() + amount);
                        
    player.updateSingleStat(MapleStat.DEXplayer.getDex());
                    } else {
                        
    mc.dropMessage("Make sure the stat you are trying to raise will not be over 32000.");
                    }
                    
    player.setRemainingAp(player.getRemainingAp() - amount);
                    
    player.updateSingleStat(MapleStat.AVAILABLEAPplayer.getRemainingAp());
                } else {
                    
    mc.dropMessage("Please make sure your AP is not over 32000 and you have enough to distribute.");
                }
                } else if (
    splitted[0].equalsIgnoreCase("@checkstats")) {
                    
    mc.dropMessage("Your stats are:");
                    
    mc.dropMessage("Str: " player.getStr());
                    
    mc.dropMessage("Dex: " player.getDex());
                    
    mc.dropMessage("Int: " player.getInt());
                    
    mc.dropMessage("Luk: " player.getLuk());
                    
    mc.dropMessage("Available AP: " player.getRemainingAp());
                    
    mc.dropMessage("Rebirths: " player.getReborns());
                } else if (
    splitted[0].equalsIgnoreCase("@commands") || splitted[0].equalsIgnoreCase("@help")) {
                    
    mc.dropMessage("============================================================");
                    
    mc.dropMessage("        " c.getChannelServer().getServerName() + " Commands");
                    
    mc.dropMessage("============================================================");
                    
    mc.dropMessage("@str/@dex/@int/@luk <number> ~ with these commands you will never have to add AP the slow way.");
                    
    mc.dropMessage("@buynx <number> ~ NX currency is currently 1000 mesos for 1 nx point.");
                    
    mc.dropMessage("@save ~ Basically saves.");
                    
    mc.dropMessage("@rank ~ shows top 10 people.");
                    
    mc.dropMessage("@dispose ~ Turn off seeing smegas / Turn on.");
                    
    mc.dropMessage("@togglesmega ~ Turn off seeing smegas / Turn on.");
                    
    mc.dropMessage("@decieve ~ Sets your fame to -1337");
                    
    mc.dropMessage("@expfix ~ Got negative EXP ? Type this");
                    
    mc.dropMessage("@gm <message> ~ Call a gm for help (: ?");
                    
    mc.dropMessage("@checkstat ~ Allows you to check what your stats are. Including rebirths");
                    
    mc.dropMessage("@go ~ Try it out, type @go");
                    
    mc.dropMessage("@revive ~ Revives anyone on the channel besides yourself.");
                    
    mc.dropMessage("@cody ~ Job Advancer.");
                    
    mc.dropMessage("@bladems ~ Hey U On BladeMs The best server ever.");
                    
    mc.dropMessage("@nana ~ Stats reseter.");
                    
    mc.dropMessage("@nimakin ~ Stylist for Females.");
                    
    mc.dropMessage("@kin ~ Stylist for Males.");
                    
    mc.dropMessage("@storage ~ The bank");
                    
    mc.dropMessage("@reward ~ Reward shop Nr.1 (Using Slimie erasers as currency)");
                    
    mc.dropMessage("@reward1 ~ Reward shop Nr.2 (Using Slimie erasers currency)");
                    
    mc.dropMessage("@shop ~ The Shop that sells your every day needs!");
                    
    mc.dropMessage("@slime ~ Accesses the shop that sells slime erasers for 15m each");
                    
    mc.dropMessage("@zombie ~ ALL in one NPC");
                } else if (
    splitted[0].equalsIgnoreCase("@buynx")) {
                    if (
    splitted.length != 2) {
                        
    mc.dropMessage("Syntax: @buynx <number> Example: @buynx 1000");
                        return;
                    }
                    
    int nxamount;
                    try {
                        
    nxamount Integer.parseInt(splitted[1]);
                    } catch (
    NumberFormatException asd) {
                        return;
                    }
                    
    int cost nxamount 1000;
                    if (
    nxamount && nxamount 420000) {
                        if (
    player.getMeso() >= cost) {
                            
    player.gainMeso(-costtruetruetrue);
                            
    player.modifyCSPoints(1nxamount);
                            
    mc.dropMessage("You spent " cost " mesos. You have gained " nxamount " nx.");
                        } else {
                            
    mc.dropMessage("Not enough mesos. Go get some money you poor hobo. 1 NX is 1000 mesos.");
                        }
                    } else {
                        
    mc.dropMessage("I cant let you do this, why would you want to do that.");
                    }
                } else if (
    splitted[0].equalsIgnoreCase("@save")) {
                    if (!
    player.getCheatTracker().Spam(9000000)) { // 15 minutes
                        
    player.saveToDB(truefalse);
                        
    mc.dropMessage("Saved. <3");
                    } else {
                        
    mc.dropMessage("You cannot save more than once every 15 minutes.");
                    }
                } else if (
    splitted[0].equalsIgnoreCase("@expfix")) {
                    
    player.setExp(0);
                    
    player.updateSingleStat(MapleStat.EXPplayer.getExp());
                } else if (
    splitted[0].equalsIgnoreCase("@go")) {
                    
    HashMap<StringIntegermaps = new HashMap<StringInteger>();
                    
    maps.put("fm"910000000);
                    
    maps.put("henesys"100000000);
                    
    maps.put("ellinia"101000000);
                    
    maps.put("perion"102000000);
                    
    maps.put("kerning"103000000);
                    
    maps.put("lith"104000000);
                    
    maps.put("sleepywood"105040300);
                    
    maps.put("florina"110000000);
                    
    maps.put("orbis"200000000);
                    
    maps.put("happy"209000000);
                    
    maps.put("elnath"211000000);
                    
    maps.put("ludi"220000000);
                    
    maps.put("aqua"230000000);
                    
    maps.put("leafre"240000000);
                    
    maps.put("mulung"250000000);
                    
    maps.put("herb"251000000);
                    
    maps.put("omega"221000000);
                    
    maps.put("korean"222000000);
                    
    maps.put("nlc"600000000);
                    
    maps.put("excavation"990000000);
                    
    maps.put("mushmom"100000005);
                    
    maps.put("showa"801000000);
                    
    maps.put("guild"200000301);
                    
    maps.put("shrine"800000000);
                    
    maps.put("amoria"680000000);
                    if (
    splitted.length != 2) {
                        
    StringBuilder builder = new StringBuilder("Syntax: @go <mapname>");
                        
    int i 0;
                        for (
    String mapss maps.keySet()) {
                            if (
    10 == 0) {// 10 maps per line
                                
    mc.dropMessage(builder.toString());
                            } else {
                                
    builder.append(mapss ", ");
                            }
                        }
                        
    mc.dropMessage(builder.toString());
                    } else if (
    maps.containsKey(splitted[1])) {
                        
    int map maps.get(splitted[1]);
                        if (
    map == 910000000) {
                            
    player.saveLocation(SavedLocationType.FREE_MARKET);
                        }
                        
    player.changeMap(map);
                        
    mc.dropMessage("Please feel free to suggest any more locations, Use the @gms commands or post suggestions on the forum.");
                    } else {
                        
    mc.dropMessage("I could not find the map that you requested, go get an eye test.");
                    }
                    
    maps.clear();
                } else if (
    splitted[0].equalsIgnoreCase("@gm")) {
                    if (
    splitted.length 2) {
                        return;
                    }
                    else
                        
    mc.dropMessage("Message sent.");
                    if (!
    player.getCheatTracker().Spam(600001)) { // 5 minutes.
                        
    try {
                            
    c.getChannelServer().getWorldInterface().broadcastGMMessage(nullMaplePacketCreator.serverNotice(6"Channel: " c.getChannel() + "  " player.getName() + ": " StringUtil.joinStringFrom(splitted1)).getBytes());
                        } catch (
    RemoteException ex) {
                            
    c.getChannelServer().reconnectWorld();
                        }
                    } else {
                        
    player.dropMessage(1"Please don't flood GMs with your messages");
                    }
                } else if (
    splitted[0].equalsIgnoreCase("@togglesmega")) {
                    if (
    player.getMeso() >= 10000000) {
                        
    player.setSmegaEnabled(!player.getSmegaEnabled());
                        
    String text = (!player.getSmegaEnabled() ? "I blinded you with enchanted dog shit :) ! Now you may not see Avatar smega's" "You magically grew ears that can see smegas T___T oh god that line is lame.");
                        
    mc.dropMessage(text);
                        
    player.gainMeso(-10000000true);
                    } else {
                        
    mc.dropMessage("Wheres the mesos you idiot ! I want 10,000,000 meso bitch!");
                    }
                } else if (
    splitted[0].equalsIgnoreCase("@dispose")) {
                    
    NPCScriptManager.getInstance().dispose(c);
                    
    mc.dropMessage("You have been disposed.");
                } else if (
    splitted[0].equals("@emo")) {
                    
    player.setHp(0);
                    
    player.updateSingleStat(MapleStat.HP0);
                    
    mc.dropMessage("Whaaa emo *cut* *cut*.");
                }  else if (
    splitted[0].equalsIgnoreCase("@rebirth")) {
                
    int negexp;
                if (
    player.getLevel() > 199) {
                    
    player.setLevel(2);
                    
    player.setExp(0);
                    
    player.setReborns(player.getReborns() + 1);
                    
    player.changeJob(MapleJob.getById(0));
                    
    negexp player.getExp();
                    
    player.gainExp(-negexpfalsefalse);
                    
    player.updateSingleStat(MapleStat.LEVELplayer.getLevel());
                    
    player.updateSingleStat(MapleStat.EXPplayer.getExp());
                } else {
                    
    mc.dropMessage("You must be level 200.");
                     }
                 } else if (
    splitted[0].equalsIgnoreCase("@rank")) {
                    
    ResultSet rs ranking(false);
                    
    mc.dropMessage("Top 10 Players: ");
                    
    int i 1;
                    while (
    rs.next()) {
                        
    String job// Should i make it so it shows the actual job ?
                        
    if (rs.getInt("job") >= 400 && rs.getInt("job") <= 422) {
                            
    job "Thief";
                        } else if (
    rs.getInt("job") >= 300 && rs.getInt("job") <= 322) {
                            
    job "Archer";
                        } else if (
    rs.getInt("job") >= 200 && rs.getInt("job") <= 232) {
                            
    job "Mage";
                        } else if (
    rs.getInt("job") >= 100 && rs.getInt("job") <= 132) {
                            
    job "Warrior";
                        } else if (
    rs.getInt("job") >= 500 && rs.getInt("job") <= 532) {
                            
    job "Pirate";
                        } else {
                            
    job "Beginner";
                        }
                        
    mc.dropMessage(". " rs.getString("name") + "  ||  Job: " job "  ||  Rebirths: " rs.getInt("reborns") + "  ||  Level: " rs.getInt("level"));
                        
    i++;
                    }
                } else if (
    splitted[0].equalsIgnoreCase("@servergms")) {
                    
    ResultSet rs ranking(true);
                    
    String gmType;
                    while (
    rs.next()) {
                        
    int gmLevl rs.getInt("gm");
                        if (
    gmLevl == 3) {
                            
    gmType "GM Helper.";
                        } else if (
    gmLevl >= 4) {
                            
    gmType "Monster GM :D.";
                        } else {
                            
    gmType "Error";
                        }
                        
    mc.dropMessage(rs.getString("name") + "  :  " gmType);
                    }
                     } else if (
    splitted[0].equalsIgnoreCase("@credits")) {  
                      
    mc.dropMessage ("ZombieStory Repack");
                } else if (
    splitted[0].equalsIgnoreCase("@revive")) {
                    if (
    splitted.length == 2) {
                        
    MapleCharacter victim c.getChannelServer().getPlayerStorage().getCharacterByName(splitted[1]);
                        if (
    player != victim) {
                            if (
    player.getMeso() >= 50000000) { // 50 mil
                                
    if (victim != null) {
                                    if (!
    victim.isAlive()) {
                                        
    victim.setHp(1);
                                        
    player.gainMeso(-50000000);
                                        
    victim.updateSingleStat(MapleStat.HP1);
                                        
    mc.dropMessage("You have revived " victim.getName() + ".");
                                    } else {
                                        
    mc.dropMessage(victim.getName() + "is not dead.");
                                    }
                                } else {
                                    
    mc.dropMessage("The player is not online.");
                                }
                            } else {
                                
    mc.dropMessage("You need 50 million mesos to do this.");
                            }
                        } else {
                            
    mc.dropMessage("You can't revive yourself.");
                        }
                    } else {
                        
    mc.dropMessage("Syntax: @revive <player name>");
                    }
                } else if (
    splitted[0].equalsIgnoreCase("@banme")) {
                    
    c.getSession().write(MaplePacketCreator.sendGMPolice(0"Being cool."1000000));
                } else if (
    splitted[0].equalsIgnoreCase("@fakerelog") || splitted[0].equalsIgnoreCase("!fakerelog")) {
                    
    c.getSession().write(MaplePacketCreator.getCharInfo(player));
                    
    player.getMap().removePlayer(player);
                    
    player.getMap().addPlayer(player);
                } else if (
    splitted[0].equalsIgnoreCase("@cody")) {
                    
    NPCScriptManager.getInstance().start(c9200000);
                } else if (
    splitted[0].equalsIgnoreCase("@bladems")) {
                    
    NPCScriptManager.getInstance().start(c9901000);
                } else if (
    splitted[0].equalsIgnoreCase("@storage")) {
                    
    player.getStorage().sendStorage(c2080005);
                } else if (
    splitted[0].equalsIgnoreCase("@news")) {
                    
    NPCScriptManager.getInstance().start(c9040011);
                } else if (
    splitted[0].equalsIgnoreCase("@kin")) {
                    
    NPCScriptManager.getInstance().start(c9900000);
                } else if (
    splitted[0].equalsIgnoreCase("@nimakin")) {
                    
    NPCScriptManager.getInstance().start(c9900001);
                } else if (
    splitted[0].equalsIgnoreCase("@reward")) {
                    
    NPCScriptManager.getInstance().start(c2050019);
                } else if (
    splitted[0].equalsIgnoreCase("@reward1")) {
                    
    NPCScriptManager.getInstance().start(c2020004);
                } else if (
    splitted[0].equalsIgnoreCase("@fredrick")) {
                    
    NPCScriptManager.getInstance().start(c9030000);
                } else if (
    splitted[0].equalsIgnoreCase("@spinel")) {
                    
    NPCScriptManager.getInstance().start(c9000020);
                } else if (
    splitted[0].equalsIgnoreCase("@nana")) {
                    
    NPCScriptManager.getInstance().start(c9201001);
                } else if (
    splitted[0].equalsIgnoreCase("@shop")) {
                    
    NPCScriptManager.getInstance().start(c9901003);
                    } else if (
    splitted[0].equalsIgnoreCase("@zombie")) {
                    
    NPCScriptManager.getInstance().start(c9901317);
                } else if (
    splitted[0].equalsIgnoreCase("@slime")) {
                    
    NPCScriptManager.getInstance().start(c2093002);
                } else if (
    splitted[0].equalsIgnoreCase("@goafk")) {
                    
    player.setChalkboard("I'm afk ! drop me a message <3");
                } else if (
    splitted[0].equalsIgnoreCase("@checkexp")) {
                    
    MapleCharacter victim c.getChannelServer().getPlayerStorage().getCharacterByName(splitted[1]);
                    if (
    victim == null) {
                        
    mc.dropMessage("Player was not found in this channel.");
                    } else {
                        
    mc.dropMessage("EXP: " victim.getExp() + "   " victim.getExp() / ExpTable.getExpNeededForLevel(victim.getLevel() + 1) * 100 " %");
                    }
                }
            } else {
                
    mc.dropMessage(splitted[0] + " is not a valid command.");
            }
        }


        @
    Override
        
    public CommandDefinition[] getDefinition() {
            return new 
    CommandDefinition[]{
                        new 
    CommandDefinition("str"0),
                        new 
    CommandDefinition("dex"0),
                        new 
    CommandDefinition("int"0),
                        new 
    CommandDefinition("luk"0),
                        new 
    CommandDefinition("hp"0),
                        new 
    CommandDefinition("mp"0),
                        new 
    CommandDefinition("checkstats"0),
                        new 
    CommandDefinition("commands"0),
                        new 
    CommandDefinition("help"0),
                        new 
    CommandDefinition("buynx"0),
                        new 
    CommandDefinition("save"0),
                        new 
    CommandDefinition("expfix"0),
                        new 
    CommandDefinition("go"0),
                        new 
    CommandDefinition("gm"0),
                        new 
    CommandDefinition("togglesmega"0),
                        new 
    CommandDefinition("deceive"0),
                        new 
    CommandDefinition("dispose"0),
                        new 
    CommandDefinition("rank"0),
                        new 
    CommandDefinition("servergms"0),
                        new 
    CommandDefinition("credits"0),
                        new 
    CommandDefinition("revive"0),
                        new 
    CommandDefinition("banme"0),
                        new 
    CommandDefinition("clan"0),
                        new 
    CommandDefinition("afk"0),
                        new 
    CommandDefinition("onlinetime"0),
                        new 
    CommandDefinition("emo"0),
                        new 
    CommandDefinition("bladems"0),
                        new 
    CommandDefinition("rebirth"0),
                        new 
    CommandDefinition("reborn"0),
                        new 
    CommandDefinition("slime"0),
                        new 
    CommandDefinition("kin"0),
                        new 
    CommandDefinition("nimakin"0),
                        new 
    CommandDefinition("reward"0),
                        new 
    CommandDefinition("reward1"0),
                        new 
    CommandDefinition("cody"0),
                        new 
    CommandDefinition("storage"0),
                        new 
    CommandDefinition("fakerelog"0),
                        new 
    CommandDefinition("fredrick"0),
                        new 
    CommandDefinition("news"0),
                        new 
    CommandDefinition("spinel"0),
                        new 
    CommandDefinition("news"0),
                        new 
    CommandDefinition("goafk"0),
                        new 
    CommandDefinition("nana"0),
                        new 
    CommandDefinition("checkexp"0),
                        new 
    CommandDefinition("shop"0),
                        new 
    CommandDefinition("zombie"0)
            };
        }

    תבדוק
    זה חייב לפעול
    הפקודה @bladems
    וזה לגיאם רמה 0 ומעלה


    אך מתי כבר תבחיני
    בין הטוב והרע ותביני
    אני לא אלוהים לא אינני
    אני רק בן-אדם אוהב הנני


    מי שצריך עזרה שיצטט או ישלח פרטית

  10. #9

    ברירת מחדל

    אחי תנסה שהפקודה תיהיה
    @fmnpc

    כי יש לי בעיה עם הפקודה bladems
    היא לא עובדת
    תנסה במקומה fmnpc

  11. #10
    מורחקים
    שם פרטי
    בוריס
    תאריך הצטרפות
    07/2010
    הודעות
    529
    לייקים
    0
    נקודות
    1
    משפט מחץ
    פלאפל.
    מין: זכר

    ברירת מחדל

    מתן, כשזה מקמפל לך, זה כותב לך שגיאות?

  12. #11

    ברירת מחדל

    לא שום כלום

  13. #12
    מורחקים
    שם פרטי
    בוריס
    תאריך הצטרפות
    07/2010
    הודעות
    529
    לייקים
    0
    נקודות
    1
    משפט מחץ
    פלאפל.
    מין: זכר

    ברירת מחדל

    ציטוט נכתב במקור על ידי matan2223 צפיה בהודעה
    לא שום כלום

    odinms.jar אמור להיות לא רק בDIST.
    אלא גם בתיקיות הJAVA.

  14. #13

    ברירת מחדל

    למחוק בבקשה
    נערך לאחרונה על ידי matan2223; 04-12-2010 בשעה 19:51.

  15. #14
    אוי אלוהי אוי אלוהים סמן לי דרך חיים האוואטר של KirMa
    שם פרטי
    אביהו ツ
    תאריך הצטרפות
    03/2010
    גיל
    34
    הודעות
    5,740
    לייקים
    27
    נקודות
    114
    משפט מחץ
    יהודי תחייך אתה בן של מלך ערבי תזיל דמע אתה בן זו*ה
    מין: זכר

    ברירת מחדל

    תגיד אתה בכלל יודע לקמפל!??!
    אתה העברת DIST?
    כי אין מצב שזה לא יפעל


    אך מתי כבר תבחיני
    בין הטוב והרע ותביני
    אני לא אלוהים לא אינני
    אני רק בן-אדם אוהב הנני


    מי שצריך עזרה שיצטט או ישלח פרטית

  16. #15

    ברירת מחדל

    קימפלתי! טוב
    dist העברתי
    אממ את הקובץ שיוצר הקימפול להעביר גם לתיקיות של java?

נושא נעול
עמוד 1 מתוך 2 12 אחרון >>


הרשאות פרסום

  • אין באפשרותך לפרסם נושאים חדשים
  • אין באפשרותך לפרסם תגובות
  • אין באפשרותך לצרף קבצים
  • אין באפשרותך לערוך את הודעותיך


כל הזמנים הם לפי GMT +3. השעה כרגע היא 08:12.
מופעל על ידי vBulletin™ © גרסה 4.1, 2011 vBulletin Solutions, Inc. כל הזכויות שמורות.
פעילות הגולשים
אומנות וגרפיקה
מוזיקה
ספורט
סדרות טלוויזיה
סרטים וקולנוע
קנייה ומכירה
רשתות חברתיות
הבורר 3
פורומי פנאי ובידור
סרטים
סדרות
משחקים
דיבורים
אקטואליה
בעלי חיים
בדיחות והומור
משחקי ספורט
הבורר
מחשבים וטכנולוגיה
תמיכה טכנית
חומרה ומודינג
תוכנות להורדה
סלולארי וגאדג'טים
רקעים למחשב
ציוד הקפי למחשב
אבטחת מידע
תכנות ובניית אתרים
כסף ברשת
אייפון
בריאות ואורח חיים
כושר ופיתוח גוף
דיאטה
צבא וגיוס
יעוץ מיני
מה שבלב
אומנות הפיתוי
יהדות
מיסטיקה ורוחניות
אתאיזם ודתות

נושאים: 2,450,989 | הודעות: 8,151,571 | משתמשים: 315,603 | המשתמש החדש ביותר: upizijoj | עיצוב גרפי: סטודיו עודד בביוף | קידוד: rellect