Is there a way to make a setplayeremitter event? If so, how?..This is what I got done. I'm not sure if it's right..
registerOutputEvent(Player,setPlayerEmitter,"dataBlock Emitter",0);
package playerEmitter
{
function Player::emote(%this,%emote,%skipSpamProtect)
{
%this.emote(%emote);
Parent::emote(%this,%emote,%skipSpamProtect);
}
};
activatePackage(playerEmitter);
(EDITED)