Script Function: Q43T
From Ultima Online: The Second Age
function int Q43T(obj user, obj usedon) { if (usedon == NULL()) { return (0x00); } if ((containedBy(usedon) == NULL()) && (canSeeObj(user, usedon) != 0x01)) { bark(user, "I cannot see that object."); return (0x00); } if (isMobile(usedon)) { bark(user, "I cannot recall from that object."); return (0x00); } if (!hasObjVar(usedon, "markLoc")) { bark(user, "I cannot recall from that object."); return (0x00); } return (0x01); }