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!

UOG and CUO packets in sphereserver

xantier

Sorceror
UOG and CUO packets in sphereserver

Which packets are handled for responding to UOG and CUO packets in sphereserver ? Which packets are sent for it ?
 

Jeff

Lord
The poller sends 0xF1, 0xFF to your server. You need to respond with, the following string

"Sphere Name=<servername>, Clients=<clientcount>, Chars=<mobile count>, Items=<Item count>, Mem=<mem usage>"

Make sure each property is seperated with a , (comma) and each value and property item group are seperated with a =. Also, the packet ID is 0x53, but that is the ASCII character S, so you responde with 0x53 and the reset should be the string "phere Name=<servername>, Clients=<clientcount>, Chars=<mobile count>, Items=<Item count>, Mem=<mem usage>".

Let me know if this doesnt make sense...
 

_Epila_

Sorceror
To get the sphere UOG i just send the string " (0x34 if im not wrong) then the sphere answer with a string
or you can send the same bytes you would send to RunUO (0x7f, 0x00, 0x00, 0x01, 0xf1, 0x00, 0x04, 0xff) but only the newers versions recognize them
 
Top