Background for Skyrim SE
Member of the clib script
stringfunctioncStringAdd_ed(stringaString)Global

Description

Documentation String

Requirements: None

Documentation Comment

useful for dynamic confirmation, progress, completion, log or error reporting messages.
e.g. The function uses "save", "restore" or "remove" as an function argument.
User's choice: argument == "save"

  1. cConcatenate("Do you want to ", argument, "?") == Do you want to save?
  2. cConcatenate(cStringAdd_ing(argument), "...") == Saving...
  3. cConcatenate("Successfully ", cStringAdd_ed(argument), "!") == Successfully saved!
    now you can make a single function that adds, saves, restores, clears and/or removes something and use a single
    set of dynamically constructed messages (this is just one part of that)

Parameters

  1. stringaString


Examples

Auto-Generated Example

string myString__aString

string returnedValue = clib.cStringAdd_ed(myString__aString)
Some data provided by the Skyrim Creation Kit Wiki. Licensed under the Creative Commons Attribution-ShareAlike license.