Liberty Unleashed

Liberty Unleashed => Suggestions => Topic started by: stormeus on August 12, 2011, 07:29:36 pm

Title: Remove Hardcoded /me
Post by: stormeus on August 12, 2011, 07:29:36 pm
It seems Liberty Unleashed has a hardcoded /me, which makes it hard to script one that only works within a certain range of the player. I'd suggest removing it altogether since it can be scripted easily.
Title: Re: Remove Hardcoded /me
Post by: AdTec_224 on August 12, 2011, 08:00:57 pm
Pretty you can just return 0 to cancel the message e.g.:

Code: [Select]
function onPlayerAction( player, text )
{
return 0;
}
Title: Re: Remove Hardcoded /me
Post by: stormeus on August 12, 2011, 08:28:35 pm
Crap, forgot about that event. Thanks!
Locked.