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


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

  1. מלא סרטים !!!! פרטים בפנים !!! | FTP|
    על ידי GodFather בפורום משחקים להורדה
    תגובות: 25
    הודעה אחרונה: 13-04-2006, 17:56
  2. [מכרז] מספר 6 פ33ה שווה כניסה :] מחירים ופירוט והכל בפנים
    על ידי HaZiLiBiLi בפורום עשינו עסק - ארכיון
    תגובות: 21
    הודעה אחרונה: 15-09-2005, 16:58
  3. מישהו יכול בבקשה להכין לי חתימה?.תמונות בפנים.
    על ידי ArIeL בפורום חתימות וסמלים
    תגובות: 9
    הודעה אחרונה: 07-09-2005, 20:42
  4. מחפש האוסים חדשים.. (פירוט בפנים..)
    על ידי Born2Kill בפורום אלקטרונית
    תגובות: 4
    הודעה אחרונה: 04-09-2005, 00:04
  5. מארק צדק!!!!!!!!כנסו פרטים בפנים
    על ידי MaRoKaY בפורום Counter Strike
    תגובות: 22
    הודעה אחרונה: 03-09-2005, 17:48
נושא נעול
מציג תוצאות 1 עד 6 מתוך 6

בפנים

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

    ברירת מחדל בפנים

    איך אני עושה כשאני ב GM HIDE
    שאנשים לא יראו מה אני רושם
    כאילו אותי הם לא רואים אבל מה שאני רושם הם כן רואים
    איך אני מבטל את זה




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

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

    ברירת מחדל

    אשמח אם תראה פה את הקובץ generalChatHandler.java שלך.

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

    ברירת מחדל

    ציטוט נכתב במקור על ידי Symphony צפיה בהודעה
    אשמח אם תראה פה את הקובץ generalChatHandler.java שלך.
    קוד 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.MapleClient;
    import net.sf.odinms.client.messages.CommandProcessor;
    import net.sf.odinms.net.AbstractMaplePacketHandler;
    import net.sf.odinms.server.AutobanManager;
    import net.sf.odinms.server.PublicChatHandler;
    import net.sf.odinms.tools.MaplePacketCreator;
    import net.sf.odinms.tools.data.input.SeekableLittleEndianAccessor;

    public class 
    GeneralchatHandler extends AbstractMaplePacketHandler {

        @
    Override
        
    public void handlePacket(SeekableLittleEndianAccessor sleaMapleClient c) {
            
    String text slea.readMapleAsciiString();
            
    int show slea.readByte();
            if (
    c.getPlayer().getMap().isModerated() && !c.getPlayer().getMap().isVIP(c.getPlayer().getName())) {
                        
    c.getPlayer().dropMessage(1"You can not chat in a moderated map without having the VIP status.");
                        return;
                    }

            if (!(
    c.getPlayer().isGM()) && text.length() > 70) { // 70 = max text for client. remove this if u have edit the client :X
               // AutobanManager.getInstance().autoban(c.getPlayer().getClient(), "infinite text.");
            
    } else {
                if (!
    CommandProcessor.getInstance().processCommand(ctext) && c.getPlayer().getCanTalk() && !PublicChatHandler.doChat(ctext)) {
                    if (!
    c.getPlayer().isHidden()) {

                        if (
    c.getPlayer().getGMText() == 0) {
                            
    c.getPlayer().getMap().broadcastMessage(MaplePacketCreator.getChatText(c.getPlayer().getId(), textfalseshow));
                        } else if (
    c.getPlayer().getGMText() == 7) {
                            
    c.getPlayer().getMap().broadcastMessage(MaplePacketCreator.getChatText(c.getPlayer().getId(), texttrueshow));
                        } else {
                            switch (
    c.getPlayer().getGMText()) {
                                case 
    1:
                                case 
    2:
                                case 
    3:
                                case 
    4:
                                    
    //MultiChat
                                    
    c.getPlayer().getMap().broadcastMessage(MaplePacketCreator.multiChat(c.getPlayer().getName(), textc.getPlayer().getGMText() - 1));
                                    break;
                                case 
    5:
                                case 
    6:
                                    
    //Server Notice
                                    
    c.getPlayer().getMap().broadcastMessage(MaplePacketCreator.serverNotice(c.getPlayer().getGMText(), c.getPlayer().getName() + " : " text));
                                    break;
                                case 
    8:
                                    
    //Whisper
                                    
    c.getPlayer().getMap().broadcastMessage(MaplePacketCreator.getWhisper(c.getPlayer().getName(), c.getChannel(), text));
                                    break;
                                case 
    9:
                                    
    //MapleTip
                                    
    c.getPlayer().getMap().broadcastMessage(MaplePacketCreator.sendYellowTip(c.getPlayer().getName() + " : " text));
                                    break;
                            }
                            
    c.getPlayer().getMap().broadcastMessage(MaplePacketCreator.getChatText(c.getPlayer().getId(), textfalse1));
                        }
                    } else {
                        
    c.getPlayer().getMap().broadcastMessage(MaplePacketCreator.serverNotice(5c.getPlayer().getName() + ": " text));
                    }
                }
            }
        }





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

    ברירת מחדל

    תחליף את generalChatHandler.java בזה:
    קוד 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.MapleClient;
    import net.sf.odinms.client.messages.CommandProcessor;
    import net.sf.odinms.net.AbstractMaplePacketHandler;
    import net.sf.odinms.server.AutobanManager;
    import net.sf.odinms.server.PublicChatHandler;
    import net.sf.odinms.tools.MaplePacketCreator;
    import net.sf.odinms.tools.data.input.SeekableLittleEndianAccessor;

    public class 
    GeneralchatHandler extends AbstractMaplePacketHandler {

        @
    Override
        
    public void handlePacket(SeekableLittleEndianAccessor sleaMapleClient c) {
            
    String text slea.readMapleAsciiString();
            
    int show slea.readByte();
            if (
    c.getPlayer().getMap().isModerated() && !c.getPlayer().getMap().isVIP(c.getPlayer().getName())) {
                
    c.getPlayer().dropMessage(1"You can not chat in a moderated map without having the VIP status.");
                return;
            }
            if (!(
    c.getPlayer().isGM()) && text.length() > 70) { // 70 = max text for client. remove this if u have edit the client :X
               // AutobanManager.getInstance().autoban(c.getPlayer().getClient(), "infinite text.");
            
    } else {
                if (!
    CommandProcessor.getInstance().processCommand(ctext) && c.getPlayer().getCanTalk() && !PublicChatHandler.doChat(ctext)) {
                    if (!
    c.getPlayer().isHidden()) {
                        if (
    c.getPlayer().getGMText() == 0) {
                            
    c.getPlayer().getMap().broadcastMessage(MaplePacketCreator.getChatText(c.getPlayer().getId(), textfalseshow));
                        } else if (
    c.getPlayer().getGMText() == 7) {
                            
    c.getPlayer().getMap().broadcastMessage(MaplePacketCreator.getChatText(c.getPlayer().getId(), texttrueshow));
                        } else {
                            switch (
    c.getPlayer().getGMText()) {
                                case 
    1:
                                case 
    2:
                                case 
    3:
                                case 
    4:
                                    
    //MultiChat
                                    
    c.getPlayer().getMap().broadcastMessage(MaplePacketCreator.multiChat(c.getPlayer().getName(), textc.getPlayer().getGMText() - 1));
                                    break;
                                case 
    5:
                                case 
    6:
                                    
    //Server Notice
                                    
    c.getPlayer().getMap().broadcastMessage(MaplePacketCreator.serverNotice(c.getPlayer().getGMText(), c.getPlayer().getName() + " : " text));
                                    break;
                                case 
    8:
                                    
    //Whisper
                                    
    c.getPlayer().getMap().broadcastMessage(MaplePacketCreator.getWhisper(c.getPlayer().getName(), c.getChannel(), text));
                                    break;
                                case 
    9:
                                    
    //MapleTip
                                    
    c.getPlayer().getMap().broadcastMessage(MaplePacketCreator.sendYellowTip(c.getPlayer().getName() + " : " text));
                                    break;
                            }
                            
    c.getPlayer().getMap().broadcastMessage(MaplePacketCreator.getChatText(c.getPlayer().getId(), textfalse1));
                        }
                    } else {
                        
    c.getPlayer().getMap().broadcastGMMessage(MaplePacketCreator.serverNotice(5c.getPlayer().getName() + ": " text));
                    }
                }
            }
        }


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

    ברירת מחדל

    ציטוט נכתב במקור על ידי Symphony צפיה בהודעה
    תחליף את generalChatHandler.java בזה:
    קוד 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.MapleClient;
    import net.sf.odinms.client.messages.CommandProcessor;
    import net.sf.odinms.net.AbstractMaplePacketHandler;
    import net.sf.odinms.server.AutobanManager;
    import net.sf.odinms.server.PublicChatHandler;
    import net.sf.odinms.tools.MaplePacketCreator;
    import net.sf.odinms.tools.data.input.SeekableLittleEndianAccessor;

    public class 
    GeneralchatHandler extends AbstractMaplePacketHandler {

        @
    Override
        
    public void handlePacket(SeekableLittleEndianAccessor sleaMapleClient c) {
            
    String text slea.readMapleAsciiString();
            
    int show slea.readByte();
            if (
    c.getPlayer().getMap().isModerated() && !c.getPlayer().getMap().isVIP(c.getPlayer().getName())) {
                
    c.getPlayer().dropMessage(1"You can not chat in a moderated map without having the VIP status.");
                return;
            }
            if (!(
    c.getPlayer().isGM()) && text.length() > 70) { // 70 = max text for client. remove this if u have edit the client :X
               // AutobanManager.getInstance().autoban(c.getPlayer().getClient(), "infinite text.");
            
    } else {
                if (!
    CommandProcessor.getInstance().processCommand(ctext) && c.getPlayer().getCanTalk() && !PublicChatHandler.doChat(ctext)) {
                    if (!
    c.getPlayer().isHidden()) {
                        if (
    c.getPlayer().getGMText() == 0) {
                            
    c.getPlayer().getMap().broadcastMessage(MaplePacketCreator.getChatText(c.getPlayer().getId(), textfalseshow));
                        } else if (
    c.getPlayer().getGMText() == 7) {
                            
    c.getPlayer().getMap().broadcastMessage(MaplePacketCreator.getChatText(c.getPlayer().getId(), texttrueshow));
                        } else {
                            switch (
    c.getPlayer().getGMText()) {
                                case 
    1:
                                case 
    2:
                                case 
    3:
                                case 
    4:
                                    
    //MultiChat
                                    
    c.getPlayer().getMap().broadcastMessage(MaplePacketCreator.multiChat(c.getPlayer().getName(), textc.getPlayer().getGMText() - 1));
                                    break;
                                case 
    5:
                                case 
    6:
                                    
    //Server Notice
                                    
    c.getPlayer().getMap().broadcastMessage(MaplePacketCreator.serverNotice(c.getPlayer().getGMText(), c.getPlayer().getName() + " : " text));
                                    break;
                                case 
    8:
                                    
    //Whisper
                                    
    c.getPlayer().getMap().broadcastMessage(MaplePacketCreator.getWhisper(c.getPlayer().getName(), c.getChannel(), text));
                                    break;
                                case 
    9:
                                    
    //MapleTip
                                    
    c.getPlayer().getMap().broadcastMessage(MaplePacketCreator.sendYellowTip(c.getPlayer().getName() + " : " text));
                                    break;
                            }
                            
    c.getPlayer().getMap().broadcastMessage(MaplePacketCreator.getChatText(c.getPlayer().getId(), textfalse1));
                        }
                    } else {
                        
    c.getPlayer().getMap().broadcastGMMessage(MaplePacketCreator.serverNotice(5c.getPlayer().getName() + ": " text));
                    }
                }
            }
        }

    עובד תודה רבה
    אפשר לנעול




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

    ברירת מחדל

    נעול

נושא נעול


הרשאות פרסום

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


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

נושאים: 2,473,229 | הודעות: 8,173,816 | משתמשים: 315,603 | המשתמש החדש ביותר: upizijoj | עיצוב גרפי: סטודיו עודד בביוף | קידוד: rellect