Difference between revisions of "DropMe"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>Geckbot
m (Robot: Automated text replacement (-Link to TES4 Construction Set Wiki +{{Incomplete}}\n\nLink to TES4 Construction Set Wiki))
imported>Ez0n3
 
(5 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Incomplete}}
{{Function
|CSWikiPage = DropMe
|origin = GECK1
|summary = Drops the calling item from its container. If it is not currently in a container, the function will have no effect.
|name = DropMe
}}


Link to TES4 Construction Set Wiki: [http://cs.elderscrolls.com/constwiki/index.php/DropMe DropMe].
==Notes==
*This function acts as a [[Return]] when called -- the lines of script following it will NOT be executed (since it has just destroyed itself in the process of removing itself from inventory).
*Unlike [[RemoveMe]], this function does not preserve the health, charges, or script variables of the item.
*This function does not spark the [[OnDrop]] block of the dropped item.
*The dropped item will appear next to the container or the owner/merchant. If the item has no model information, scripts on it will stop running, but the item will still be there to cause bloated savegames.
 
==See Also==
*[[Drop]]
*[[RemoveMe]]  


[[Category:Functions]]
[[Category:Functions]]
[[Category:Functions (GECK 1.1)]]
[[Category:Object Functions]]
[[Category:Object Functions]]
[[Category:Object Functions (GECK 1.1)]]

Latest revision as of 10:22, 12 January 2011

< [[::Category:Functions|Category:Functions]]

Link to TES4 Construction Set Wiki: DropMe.

A function included in the GECK version 1.1.0.36.

Description

Drops the calling item from its container. If it is not currently in a container, the function will have no effect.

Syntax

[help]
DropMe


Notes

  • This function acts as a Return when called -- the lines of script following it will NOT be executed (since it has just destroyed itself in the process of removing itself from inventory).
  • Unlike RemoveMe, this function does not preserve the health, charges, or script variables of the item.
  • This function does not spark the OnDrop block of the dropped item.
  • The dropped item will appear next to the container or the owner/merchant. If the item has no model information, scripts on it will stop running, but the item will still be there to cause bloated savegames.

See Also