• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

v62 Yellow Notices

The almighty chicken
Loyal Member
Joined
Apr 7, 2008
Messages
570
Reaction score
31
Static functions can be called without defining the inner class?
also, why do you mplew.writeShort((int)0x4A))
and why do you write(5) instead of -1

i haven't tested this, but my function used -1
 
Newbie Spellweaver
Joined
Feb 27, 2009
Messages
32
Reaction score
0
Good thing this is noob proof. 75% of the pepople here won't even get it to work, or 35% will get them to work but won't find a command for it. Anyways, nice release again.
 
Junior Spellweaver
Joined
Jan 21, 2009
Messages
162
Reaction score
1
LOL I gave it to you :p

I told you I was upgrading it myself but then you ruined my fun. :< I would've got it anyway !mtt <1>
1 to increase the header until it worked! :D and it would've taken 4 tries.
 
Best Commu NA
Loyal Member
Joined
Sep 12, 2007
Messages
507
Reaction score
38
Sup V1ral.. Its Wizet from FMS :p

I can make this for Titan :p:p
 
Junior Spellweaver
Joined
Aug 18, 2008
Messages
170
Reaction score
0
Comply it. Also, this has been released like 8 times. look around next time.
 
Elite Diviner
Loyal Member
Joined
Sep 25, 2008
Messages
457
Reaction score
37
Still dunno how to get this work lol
can someone add me on msn to do it plox
cihad_palta@hotmail.com
ty

dude its mad simple o.o

add it to your maple packet creator
and if u wanna test it out like

edit your !say command
from

MaplePacketCreator.serverNotice(6, [blabla]
to
MaplePacketCreator.sendYellowTip([Balbla]
 
Junior Spellweaver
Joined
Oct 4, 2008
Messages
164
Reaction score
0
i got this in maplepacketcreator
in message

PHP:
package net.sf.odinms.client.messages;

import net.sf.odinms.client.MapleClient;
import net.sf.odinms.tools.MaplePacketCreator;

public class ServernoticeMapleClientMessageCallback implements MessageCallback {
	private MapleClient client;
	private int mode;
	
	public ServernoticeMapleClientMessageCallback(MapleClient client) {
		this (6, client);
	}
	
	public ServernoticeMapleClientMessageCallback(int mode, MapleClient client) {
		this.client = client;
		this.mode = mode;
	}
	
	@Override
	public void dropMessage(String message) {
		client.getSession().write(MaplePacketCreator.serverNotice(mode, message));
	}
}
 
Master Summoner
Loyal Member
Joined
Jul 27, 2008
Messages
583
Reaction score
0
i got this in maplepacketcreator
in message

PHP:
package net.sf.odinms.client.messages;

import net.sf.odinms.client.MapleClient;
import net.sf.odinms.tools.MaplePacketCreator;

public class ServernoticeMapleClientMessageCallback implements MessageCallback {
	private MapleClient client;
	private int mode;
	
	public ServernoticeMapleClientMessageCallback(MapleClient client) {
		this (6, client);
	}
	
	public ServernoticeMapleClientMessageCallback(int mode, MapleClient client) {
		this.client = client;
		this.mode = mode;
	}
	
	@Override
	public void dropMessage(String message) {
		client.getSession().write(MaplePacketCreator.serverNotice(mode, message));
	}
}

You did even noticed that file is called ServernoticeMapleClientMessageCallback.java?
 
Junior Spellweaver
Joined
Oct 4, 2008
Messages
164
Reaction score
0
i got this in ServernoticeMapleClientMessageCallback
PHP:
package net.sf.odinms.client.messages;

import net.sf.odinms.client.MapleClient;
import net.sf.odinms.tools.MaplePacketCreator;

public class ServernoticeMapleClientMessageCallback implements MessageCallback {
	private MapleClient client;
	private int mode;
	
	public ServernoticeMapleClientMessageCallback(MapleClient client) {
		this (6, client);
	}
	
	public ServernoticeMapleClientMessageCallback(int mode, MapleClient client) {
		this.client = client;
		this.mode = mode;
	}
	
	@Override
	public void dropMessage(String message) {
		client.getSession().write(MaplePacketCreator.serverNotice(mode, message));
	}
}
 
Back
Top