Difference between revisions of "Script: Fuck"

From Ultima Online: The Second Age
Jump to: navigation, search
(Created page with " <span style="color:#0000FF">trigger</span> use { <span style="color:#0000FF">list</span> a = this, <span style="color:#800000">"wobble"</span>, <span style="color:#800000...")
 
(No difference)

Latest revision as of 21:50, 5 October 2018

trigger use
{
  list a = this, "wobble", "llama";
  loc b = getLocation(this);
  bark(this, "sending this wobble llama oss list");
  multiMessageToLoc(b, "flop", a);
  return (0x01);
}
trigger message("flop")
{
  barkint(numInList(args));
  printList(args);
  return (0x01);
}