Difference between revisions of "DropAllItems"
Jump to navigation
Jump to search
imported>Qazaaq m (functions won't accept anything but a number or a variable as argument) |
imported>Haama (Fixed the bottom script) |
||
(One intermediate revision by the same user not shown) | |||
Line 6: | Line 6: | ||
ref CurObj | ref CurObj | ||
short CurObjNum | short CurObjNum | ||
float fquestdelaytime | float fquestdelaytime | ||
Line 15: | Line 14: | ||
if DropAllItems | if DropAllItems | ||
if ActorRef | if ActorRef | ||
set CurObj to ActorRef.GetInventoryObject 0 | |||
if CurObj | |||
set CurObjNum to ActorRef.GetItemCount CurObj | set CurObjNum to ActorRef.GetItemCount CurObj | ||
ActorRef.Drop CurObj CurObjNum | ActorRef.Drop CurObj CurObjNum | ||
Line 56: | Line 54: | ||
set CurObjNum to (ActorRef.GetItemCount CurObj) | set CurObjNum to (ActorRef.GetItemCount CurObj) | ||
ActorRef.Drop CurObj CurObjNum | ActorRef.Drop CurObj CurObjNum | ||
else | |||
set InvPosition to (InvPosition + 1) | |||
endif | endif | ||
else | else | ||
set DropAllItems to 0 | set DropAllItems to 0 |
Latest revision as of 10:59, 7 March 2008
Make a quest called DropAllItems, and attach this script to it
scn DropAllItemsQuestScript short DropAllItems ref ActorRef ref CurObj short CurObjNum float fquestdelaytime begin GameMode set fquestdelaytime to 0.001 if DropAllItems if ActorRef set CurObj to ActorRef.GetInventoryObject 0 if CurObj set CurObjNum to ActorRef.GetItemCount CurObj ActorRef.Drop CurObj CurObjNum else set DropAllItems to 0 endif endif endif end
Whenever you want an actor to drop all of their items, use these lines in the calling script
set DropAllItems.ActorRef to Actor set DropAllItems.DropAllItems to 1
Note that using OBSE's loop functions may result in a crash. See this link for more information.
Also, dropping quest items from the player will probably be bad, so here's a more complex script to ensure that doesn't happen
scn DropAllItemsQuestScript short DropAllItems ref ActorRef ref CurObj short CurObjNum float fquestdelaytime short InvPosition begin GameMode set fquestdelaytime to 0.001 if (DropAllItems == 1) set DropAllItems to 2 set InvPosition to 0 elseif (DropAllItems == 2) if ActorRef set CurObj to (ActorRef.GetInventoryObject InvPosition) if CurObj if (IsQuestItem CurObj == 0) || (ActorRef != player) set CurObjNum to (ActorRef.GetItemCount CurObj) ActorRef.Drop CurObj CurObjNum else set InvPosition to (InvPosition + 1) endif else set DropAllItems to 0 endif endif endif end