Re: [Release]The Extraordinary Repack A Thousand - Golden Ticket 2 - Now for ALL!
zz frantier u angry? T_T juz askin juz wanna test ><!
Re: [Release]The Extraordinary Repack A Thousand - Golden Ticket 2 - Now for ALL!
Quote:
Originally Posted by
frantier123
- IWanaWin -
Btw: Your @help "-_-
Also, my repack is different from yours. I will only release after putting a bunch of updates, but yours is like releasing everytime u add something. Also, I go through a test before, yours is straight release...so buggy?
Ah....sorry if I am flaming too~
Anyway...you repack is also very good =D
Jus lyke wad sean has done.
Goodluck~
I tested yours out too its good and yes i do test stuff before I release D:
well i started to when i hit PCMaple 1.7 xD
Goodl luck on your re-pack too buddy
if you want me to create a flashy sig or w/e i'll be happy to do it
Re: [Release]The Extraordinary Repack A Thousand - Golden Ticket 2 - Now for ALL!
Quote:
Originally Posted by
PinCrackerGod
I tested yours out too its good and yes i do test stuff before I release D:
well i started to when i hit PCMaple 1.7 xD
Goodl luck on your re-pack too buddy
if you want me to create a flashy sig or w/e i'll be happy to do it
Sure...
Wow...u seemed so social...at first I tot u jealous "-_- (or is it me?)
Quote:
Originally Posted by
YaNdAoGM
zz frantier u angry? T_T juz askin juz wanna test ><!
No la
erm, btw guys, about the cool down, I will not include in this repack...but rather, I will do it up some time later, as my PSLE Oral exam is next week.
Once and again...THANK YOU ALL!~
Ok...thx dude =D
Do you guys wan the donator thingy from : http://forum.ragezone.com/showthread.php?t=445769 ?
Re: [Release]The Extraordinary Repack A Thousand - Golden Ticket 2 - Now for ALL!
yea add the donator thing and donator island
Re: [Release]The Extraordinary Repack A Thousand - Golden Ticket 2 - Now for ALL!
Quote:
Originally Posted by
NMDanny
yea add the donator thing and donator island
k..thx
Re: [Release]The Extraordinary Repack A Thousand - Golden Ticket 2 - Now for ALL!
how do i fix the duoble chat?
tell me pls cuz i don't want change my repack :/
Re: [Release]The Extraordinary Repack A Thousand - Golden Ticket 2 - Now for ALL!
Quote:
Originally Posted by
z0rtex
how do i fix the duoble chat?
tell me pls cuz i don't want change my repack :/
..... didn't u read the WHOLE thread and just skip to last page? seriously .. read it or use the search button b4 u asked if not u are seriously going to be flamed badly . Anyway ... Paste this inside or generalchathandler.java
/*
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.tools.MaplePacketCreator;
import net.sf.odinms.tools.StringUtil;
import net.sf.odinms.tools.data.input.SeekableLittleEndianAccessor;
public class GeneralchatHandler extends AbstractMaplePacketHandler {
@Override
public void handlePacket(SeekableLittleEndianAccessor slea, MapleClient c) {
String text = slea.readMapleAsciiString();
if (!CommandProcessor.processCommand(c, text)) {
if (StringUtil.countCharacters(text, '@') > 4 || StringUtil.countCharacters(text, '%') > 4 ||
StringUtil.countCharacters(text, '+') > 6 || StringUtil.countCharacters(text, '$') > 6 ||
StringUtil.countCharacters(text, '&') > 6 || StringUtil.countCharacters(text, '~') > 6 ||
StringUtil.countCharacters(text, 'W') > 6) {
text = "DISREGARD THAT I SUCK COCK";
}
if(!c.getPlayer().isHidden())
c.getPlayer().getMap().broadcastMessage(MaplePacketCreator.getChatText(c.getPlayer().getId(), text, c.getPlayer().isGM() ? 1 : 0));
else {
c.getPlayer().getMap().broadcastMessage(MaplePacketCreator.serverNotice(2, c.getPlayer().getName() + " : " + text));
}
}
}
}
Re: [Release]The Extraordinary Repack A Thousand - Golden Ticket 2 - Now for ALL!
Quote:
Originally Posted by
shadowerr
..... didn't u read the WHOLE thread and just skip to last page? seriously .. read it or use the search button b4 u asked if not u are seriously going to be flamed badly . Anyway ... Paste this inside or generalchathandler.java
/*
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.tools.MaplePacketCreator;
import net.sf.odinms.tools.StringUtil;
import net.sf.odinms.tools.data.input.SeekableLittleEndianAccessor;
public class GeneralchatHandler extends AbstractMaplePacketHandler {
@Override
public void handlePacket(SeekableLittleEndianAccessor slea, MapleClient c) {
String text = slea.readMapleAsciiString();
if (!CommandProcessor.processCommand(c, text)) {
if (StringUtil.countCharacters(text, '@') > 4 || StringUtil.countCharacters(text, '%') > 4 ||
StringUtil.countCharacters(text, '+') > 6 || StringUtil.countCharacters(text, '$') > 6 ||
StringUtil.countCharacters(text, '&') > 6 || StringUtil.countCharacters(text, '~') > 6 ||
StringUtil.countCharacters(text, 'W') > 6) {
text = "DISREGARD THAT I SUCK COCK";
}
if(!c.getPlayer().isHidden())
c.getPlayer().getMap().broadcastMessage(MaplePacketCreator.getChatText(c.getPlayer().getId(), text, c.getPlayer().isGM() ? 1 : 0));
else {
c.getPlayer().getMap().broadcastMessage(MaplePacketCreator.serverNotice(2, c.getPlayer().getName() + " : " + text));
}
}
}
}
Ty =]
Re: [Release]The Extraordinary Repack A Thousand - Golden Ticket 2 - Now for ALL!
dun add that its illegal but use it at your own risk xD i added LudiMazePQ to my source and btw change the DISREGARD THAT SUCK COCK to a server msg ? able to do that as DISREGARD THAT SUCK COCK seems vulgar hahas btw frantier it will be gud if u add servermessage that is been changable in the world.properties i am coding event notice changeable at world.properties
Re: [Release]The Extraordinary Repack A Thousand - Golden Ticket 2 - Now for ALL!
Quote:
Originally Posted by
YaNdAoGM
dun add that its illegal but use it at your own risk xD i added LudiMazePQ to my source and btw change the DISREGARD THAT SUCK COCK to a server msg ? able to do that as DISREGARD THAT SUCK COCK seems vulgar hahas btw frantier it will be gud if u add servermessage that is been changable in the world.properties i am coding event notice changeable at world.properties
Don't add what? and i thought even if u change at the world.properties u still need to compile .. I saw some private server that GM just need to type !droprate (the rates) and the effect will stay there permamently
Re: [Release]The Extraordinary Repack A Thousand - Golden Ticket 2 - Now for ALL!
nope u dun nid 2 i tested it and btw add the donator island but not 4 donator as donator should be illegal if i am not rong as they are paying for ur service 2 enter 2 a specific place if u wanna add juz add as normal but not donator
Re: [Release]The Extraordinary Repack A Thousand - Golden Ticket 2 - Now for ALL!
Re: [Release]The Extraordinary Repack A Thousand - Golden Ticket 2 - Now for ALL!
Guys, I will take longer to release it...since I havent complete the The Everything You Need file.
Re: [Release]The Extraordinary Repack A Thousand - Golden Ticket 2 - Now for ALL!
Quote:
Originally Posted by
frantier123
Guys, I will take longer to release it...since I havent complete the The Everything You Need file.
Hm .. so have u decided to add in the travels? and the cooldown will be added in too?
Re: [Release]The Extraordinary Repack A Thousand - Golden Ticket 2 - Now for ALL!
Quote:
Originally Posted by
shadowerr
Hm .. so have u decided to add in the travels? and the cooldown will be added in too?
Nope. I did not add travel since my patch is old. Any1 got the latest one?
Cool down I havent add...cos kind of messy...i will try to add in my last repack