1
Orion UO Client / Re: how to get the name of item ?
« on: December 16, 2025, 04:31:03 AM »
Here is an example.
function PrintNameBySerial() {
var obj = Orion.FindObject('0x072AC317'); // Replace with actual serial
if (obj) {
Orion.Print("Object name: " + obj.Name());
} else {
Orion.Print("Object not found.");
}
}
function PrintNameBySerial() {
var obj = Orion.FindObject('0x072AC317'); // Replace with actual serial
if (obj) {
Orion.Print("Object name: " + obj.Name());
} else {
Orion.Print("Object not found.");
}
}

