03-19-2013, 14:42
(03-19-2013, 13:16)napok Wrote: Please post !pos plugin too. Thanks.
!pos is to easy to code..
Code:
Use the Event OnSay
Code:
public override ChatType OnSay(String Message, ServerClient Client, bool Teamchat)
{
Code:
if (Message == "!pos") // This will let you fly through walls
{
ServerPrint(Client.Name + "is on the position X: " + Client.OriginX + " Y: " + Client.OriginY + " Z: " + Client.OriginZ); // Serverprints the coords
TellClient(Client.ClientNum, "You are on the position X: " + Client.OriginX + " Y: " + Client.OriginY + " Z: " + Client.OriginZ, true); // Send a message to client
return ChatType.ChatNone;
}
Source:
http://www.itsmods.com/forum/Thread-Rele...Boxes.html
Goodluck