Author Topic: A note to clan-tag editing scripts  (Read 395 times)

Please, stop using a bunch of unneeded lines of code. It takes one function instead of packaging all of the admin modifying functions.
Code: [Select]
package asdf
{
    function serverCmdMessageSent(%client, %text)
    {
%oldPrefix = %client.clanPrefix;

//assign the clan tags accordingly
//%client.clanPrefix = "asdf "@ %client.clanPrefix;

%client.clanPrefix = %oldPrefix;
    }
};

activatePackage(asdf);

Somewhat related...

%client.setClanPrefix("blah");

Does that actually change their clan tags, like, clientside? Or does it just last while they're on my server?