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


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

  1. תגובות: 9
    הודעה אחרונה: 05-04-2006, 20:01
  2. מה זה שקי זימון ?
    על ידי Gmail בפורום Maple Story
    תגובות: 2
    הודעה אחרונה: 05-04-2006, 01:37
  3. [קונה] איך מבטלים את ה 30 יום של הוינדוס | 10 נקודות
    על ידי שליחטא בפורום עשינו עסק - ארכיון
    תגובות: 4
    הודעה אחרונה: 18-02-2006, 10:23
  4. עזרה דחוף בוינדוס איך מבטלים חומת אש
    על ידי GaNgStA בפורום תמיכה טכנית
    תגובות: 3
    הודעה אחרונה: 04-12-2005, 19:16
  5. 30 יום .. איך מבטלים?
    על ידי GanJa בפורום תמיכה טכנית
    תגובות: 2
    הודעה אחרונה: 29-09-2005, 16:16
נושא נעול
מציג תוצאות 1 עד 7 מתוך 7

איך מבטלים את הBAN מזימון שקי זימון

  1. #1
    משתמש מכור
    תאריך הצטרפות
    03/2010
    גיל
    29
    הודעות
    1,178
    לייקים
    5
    נקודות
    50
    מין: זכר

    ברירת מחדל איך מבטלים את הBAN מזימון שקי זימון

    כל שחקן שמזמן SUMMON BAG מקבל BAN במקום
    איך אני מבטל את זה???




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

  3. #2
    משתמש מכור האוואטר של Symphony
    שם פרטי
    דויד
    תאריך הצטרפות
    06/2011
    הודעות
    1,225
    לייקים
    13
    נקודות
    269
    מין: זכר

    ברירת מחדל

    תראה את UseSummonBag.java

  4. #3
    משתמש מכור
    תאריך הצטרפות
    03/2010
    גיל
    29
    הודעות
    1,178
    לייקים
    5
    נקודות
    50
    מין: זכר

    ברירת מחדל

    קוד 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.net.channel.handler;

    import net.sf.odinms.client.IItem;
    import net.sf.odinms.client.MapleClient;
    import net.sf.odinms.client.MapleInventoryType;
    import net.sf.odinms.net.AbstractMaplePacketHandler;
    import net.sf.odinms.server.MapleInventoryManipulator;
    import net.sf.odinms.server.MapleItemInformationProvider;
    import net.sf.odinms.server.life.MapleLifeFactory;
    import net.sf.odinms.server.life.MapleMonster;
    import net.sf.odinms.tools.MaplePacketCreator;
    import net.sf.odinms.tools.data.input.SeekableLittleEndianAccessor;

    /**
     *
     * @author AngelSL
     */
    public class UseSummonBag extends AbstractMaplePacketHandler {

        @
    Override
        
    public void handlePacket(SeekableLittleEndianAccessor sleaMapleClient c) {
            if (!
    c.getPlayer().isAlive()) {
                
    c.getSession().write(MaplePacketCreator.enableActions());
                return;
            }
            
    MapleItemInformationProvider ii MapleItemInformationProvider.getInstance();
            
    slea.readInt(); // i have no idea :) (o.o)
            
    byte slot = (byteslea.readShort();
            
    int itemId slea.readInt(); //as if we cared... ;)
            
    IItem toUse c.getPlayer().getInventory(MapleInventoryType.USE).getItem(slot);
            if (
    toUse != null && toUse.getQuantity() > && toUse.getItemId() == itemId && c.getPlayer().isAlive()) {
                
    MapleInventoryManipulator.removeFromSlot(cMapleInventoryType.USE, slot, (short1false);
                
    int[][] toSpawn ii.getSummonMobs(itemId);
                for (
    int z 0toSpawn.lengthz++) {
                    
    int[] toSpawnChild toSpawn[z];
                    if ((int) 
    Math.ceil(Math.random() * 100) <= toSpawnChild[1]) {
                        
    MapleMonster ht MapleLifeFactory.getMonster(toSpawnChild[0]);
                        
    c.getPlayer().getMap().spawnMonsterOnGroundBelow(htc.getPlayer().getPosition());
                    }
                }
            } else {
                
    c.getPlayer().ban("Trying to use a summonbag not in item inventory."false);
                return;
            }
            
    c.getSession().write(MaplePacketCreator.enableActions());
        }





  5. #4
    משתמש מכור האוואטר של Symphony
    שם פרטי
    דויד
    תאריך הצטרפות
    06/2011
    הודעות
    1,225
    לייקים
    13
    נקודות
    269
    מין: זכר

    ברירת מחדל

    קוד 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.net.channel.handler;

    import net.sf.odinms.client.IItem;
    import net.sf.odinms.client.MapleClient;
    import net.sf.odinms.client.MapleInventoryType;
    import net.sf.odinms.net.AbstractMaplePacketHandler;
    import net.sf.odinms.server.MapleInventoryManipulator;
    import net.sf.odinms.server.MapleItemInformationProvider;
    import net.sf.odinms.server.life.MapleLifeFactory;
    import net.sf.odinms.server.life.MapleMonster;
    import net.sf.odinms.tools.MaplePacketCreator;
    import net.sf.odinms.tools.data.input.SeekableLittleEndianAccessor;

    /**
     *
     * @author AngelSL
     */
    public class UseSummonBag extends AbstractMaplePacketHandler {

        @
    Override
        
    public void handlePacket(SeekableLittleEndianAccessor sleaMapleClient c) {
            if (!
    c.getPlayer().isAlive()) {
                
    c.getSession().write(MaplePacketCreator.enableActions());
                return;
            }
            
    MapleItemInformationProvider ii MapleItemInformationProvider.getInstance();
            
    slea.readInt(); // i have no idea :) (o.o)
            
    byte slot = (byteslea.readShort();
            
    int itemId slea.readInt(); //as if we cared... ;)
            
    IItem toUse c.getPlayer().getInventory(MapleInventoryType.USE).getItem(slot);
            if (
    toUse != null && toUse.getQuantity() > && toUse.getItemId() == itemId) {
                
    MapleInventoryManipulator.removeFromSlot(cMapleInventoryType.USE, slot, (short1false);
                
    int[][] toSpawn ii.getSummonMobs(itemId);
                for (
    int z 0toSpawn.lengthz++) {
                    
    int[] toSpawnChild toSpawn[z];
                    if ((int) 
    Math.ceil(Math.random() * 100) <= toSpawnChild[1]) {
                        
    MapleMonster ht MapleLifeFactory.getMonster(toSpawnChild[0]);
                        
    c.getPlayer().getMap().spawnMonsterOnGroundBelow(htc.getPlayer().getPosition());
                    }
                }
            } else
                return;
            
    c.getSession().write(MaplePacketCreator.enableActions());
        }

    אפשר לנעול?
    נערך לאחרונה על ידי Symphony; 31-08-2011 בשעה 17:56.

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

    ברירת מחדל

    עוד משהו או שאפשר לנהול?


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


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

  7. #6
    משתמש מכור
    תאריך הצטרפות
    03/2010
    גיל
    29
    הודעות
    1,178
    לייקים
    5
    נקודות
    50
    מין: זכר

    ברירת מחדל

    ציטוט נכתב במקור על ידי Symphony צפיה בהודעה
    קוד 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.net.channel.handler;

    import net.sf.odinms.client.IItem;
    import net.sf.odinms.client.MapleClient;
    import net.sf.odinms.client.MapleInventoryType;
    import net.sf.odinms.net.AbstractMaplePacketHandler;
    import net.sf.odinms.server.MapleInventoryManipulator;
    import net.sf.odinms.server.MapleItemInformationProvider;
    import net.sf.odinms.server.life.MapleLifeFactory;
    import net.sf.odinms.server.life.MapleMonster;
    import net.sf.odinms.tools.MaplePacketCreator;
    import net.sf.odinms.tools.data.input.SeekableLittleEndianAccessor;

    /**
     *
     * @author AngelSL
     */
    public class UseSummonBag extends AbstractMaplePacketHandler {

        @
    Override
        
    public void handlePacket(SeekableLittleEndianAccessor sleaMapleClient c) {
            if (!
    c.getPlayer().isAlive()) {
                
    c.getSession().write(MaplePacketCreator.enableActions());
                return;
            }
            
    MapleItemInformationProvider ii MapleItemInformationProvider.getInstance();
            
    slea.readInt(); // i have no idea :) (o.o)
            
    byte slot = (byteslea.readShort();
            
    int itemId slea.readInt(); //as if we cared... ;)
            
    IItem toUse c.getPlayer().getInventory(MapleInventoryType.USE).getItem(slot);
            if (
    toUse != null && toUse.getQuantity() > && toUse.getItemId() == itemId) {
                
    MapleInventoryManipulator.removeFromSlot(cMapleInventoryType.USE, slot, (short1false);
                
    int[][] toSpawn ii.getSummonMobs(itemId);
                for (
    int z 0toSpawn.lengthz++) {
                    
    int[] toSpawnChild toSpawn[z];
                    if ((int) 
    Math.ceil(Math.random() * 100) <= toSpawnChild[1]) {
                        
    MapleMonster ht MapleLifeFactory.getMonster(toSpawnChild[0]);
                        
    c.getPlayer().getMap().spawnMonsterOnGroundBelow(htc.getPlayer().getPosition());
                    }
                }
            } else
                return;
            
    c.getSession().write(MaplePacketCreator.enableActions());
        }

    אפשר לנעול?
    כה אפשר לנעול




  8. #7
    משתמש מכור האוואטר של Symphony
    שם פרטי
    דויד
    תאריך הצטרפות
    06/2011
    הודעות
    1,225
    לייקים
    13
    נקודות
    269
    מין: זכר

    ברירת מחדל

    נעול

נושא נעול


הרשאות פרסום

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


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

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