Difference between revisions of "Manual:DIL Manual/addextra()"

From DikuMUD Wiki
Jump to navigation Jump to search
(XML import of LLM wiki pages)
(XML import)
 
Line 1: Line 1:
 +
<span id="bpaddex"></span>
 +
addextra ( var e : extraptr, l : stringlist , s : string )
 +
    e : Extra description list to add element to.
 +
    l : Stringlist for the .names field.
 +
    s : String for the .descr field.
 +
    result: Adds an extra description to a list of extra descriptions.
  
 +
<strong>CAVEAT</strong> builder: You cannot use an extraptr variable as the e
 +
argument, but you may continue to use the following form:
  
 +
    ...
 +
    ...
 +
    addextra (self.quests, "Bozo's Quest");
 +
    ...
 +
    ...
 +
 +
---~---~---~---~---~---~---~---~---
 
<span id="bpaddex"></span>
 
<span id="bpaddex"></span>
 
  addextra ( var e : extraptr, l : stringlist , s : string )
 
  addextra ( var e : extraptr, l : stringlist , s : string )

Latest revision as of 22:36, 4 December 2025

addextra ( var e : extraptr, l : stringlist , s : string )
   e : Extra description list to add element to.
   l : Stringlist for the .names field.
   s : String for the .descr field.
   result: Adds an extra description to a list of extra descriptions.
CAVEAT builder: You cannot use an extraptr variable as the e
argument, but you may continue to use the following form:
   ...
   ...
   addextra (self.quests, "Bozo's Quest");
   ...
   ...
---~---~---~---~---~---~---~---~---

addextra ( var e : extraptr, l : stringlist , s : string )
   e : Extra description list to add element to.
   l : Stringlist for the .names field.
   s : String for the .descr field.
   result: Adds an extra description to a list of extra descriptions.
CAVEAT builder: You cannot use an extraptr variable as the e
argument, but you may continue to use the following form:
   ...
   ...
   addextra (self.quests, "Bozo's Quest");
   ...
   ...
---~---~---~---~---~---~---~---~---