RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Sending Raw Data

Raymond

Wanderer
Sending Raw Data

Was just wondering is it possible in RunUO to send raw data to the client. And if so how?

:)
 

krrios

Administrator
[code:1]someMobile.Send( new SomePacket( ... ) );[/code:1]

You can use existing packets (see Server.Network documentation), or create your own packets by writing a class derived from Packet.
 
A

Allmight

Guest
Yes

Yes, it is very much possible. C# is not a scripting language, it is a full fledged programming language which means you can do anything you want to.

RunUO also has a packet handler that let you send packets to the client.
Look at the doc that come with RunUO, you can find all methods RunUO has there.
 
Top