Author Topic: Very new and want to know how to make a script for any server  (Read 2390 times)

Heres the script...
Code: [Select]
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);
:)


Wow! Very good job on your first script. Better than my first few hundred attempts ;).
Hopefully you can continue on a path and become a great programmer!