Script Function: Q4RY

From Ultima Online: The Second Age
Jump to: navigation, search
 function string Q4RY(int murderCount)
 {
   list Q5Y8 = "hath murdered one too many!", "shall not slay again!", "hath slain too many!", "cannot continue to kill!", "must be stopped.", "is a bloodthirsty monster.", "is a killer of the worst sort.", "hath no conscience!", "hath cowardly slain many.", "must die for all our sakes.", "sheds innocent blood!", "must fall to preserve us.", "must be taken care of.", "is a thug and must die.", "cannot be redeemed.", "is a shameless butcher.", "is a callous monster.", "is a cruel, casual killer.";
   string Q5Y4 = Q5Y8[random(0x00, numInList(Q5Y8) - 0x01)];
   return (Q5Y4);
 }
 function string Q4RY(obj killer)
 {
   list Q5Y8 = "hath murdered one too many!", "hath killed " + getHisHer(killer) + " last!", "shall not slay again!", "hath slain too many!", "cannot continue to kill!", "must be stopped.", "is a bloodthirsty monster.", "is a killer of the worst sort.", "hath no conscience!", "hath cowardly slain many.", "must die for all our sakes.", "sheds innocent blood!", "must fall to preserve us.", "must be taken care of.", "is a thug and must die.", "cannot be redeemed.", "is a shameless butcher.", "is a callous monster.", "is a cruel, casual killer.";
   string Q5Y4 = Q5Y8[random(0x00, numInList(Q5Y8) - 0x01)];
   return (Q5Y4);
 }