Append

From Kolmafia
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Function Syntax

buffer append(buffer original ,string add )

  • original is the buffer to add to
  • add is a string to add on

Returns a buffer containing original with add tacked on to the end.

Code Sample

Print a list of all items currently equipped.

buffer gear;

foreach slott in $slots[]
   if(equipped_item(slott) != $item[none]) {
      if(length(gear) != 0)
         gear = append(gear, ", ");
      gear = append(gear, to_string(equipped_item(slott)));
   }

print("I am wearing: "+ gear);

See Also

append_tail() | set_length() | delete() | insert()