61
General Discussion / Re: Server Ideas?
« on: November 06, 2013, 04:23:29 PM »
Any recommendations?
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

package ClientPing
{
function NMH_Type::Send(%this)
{
if(%this.getValue() $= "/getping")
{
NewChatSO.addLine("<color:ffffff>Your ping is " @ "<color:00C800>" @ serverConnection.getPing());
}
Parent::Send(%this);
}
};
ActivatePackage(ClientPing);
:)function serverCmdGetPing(%client)
{
%ping = %client.serverConnection.getPing();
messageclient(%client,"<color:ffffff>Your ping is " @ %ping);
}
avatar_randomize();Put that in the command, and it works on other servers??...