Jump to content

DOWNLOAD MODS

Are you looking for something shiny for your load order? We have many exclusive mods and resources you won't find anywhere else. Start your search now...

LEARN MODDING

Ready to try your hand at making your own mod creations? Visit the Enclave, the original ES/FO modding school, and learn the tricks of the trade from veteran modders...

JOIN THE ALLIANCE

Membership is free and registering unlocks image galleries, project hosting, live chat, unlimited downloads, & more...

Trader's Chest Script Help


Jun3d1
 Share

Recommended Posts

Hello All,

  I am currently writing a script in which, if an item is added to a chest, it will return with gold after an amount of time. I keep running into the problem that the gold value being returned is equal to the base item's gold value and not the value of the item itself (enchanted items). Below is an example of my script and if anyone could help it would be greatly appreciated.


ScriptName TradersChest02 Extends ObjectReference
 
Int Property TradersGold Auto
MiscObject Property Gold  Auto  

Event OnItemAdded(Form GetFormID, int aiItemCount, ObjectReference akItemReference, ObjectReference akSourceContainer)
		Int value = (GetGoldValue() * aiItemCount)
		TradersGold += Value
		registerforupdategametime(24.0)
EndEvent

Event OnItemRemoved(Form GetFormID, int aiItemCount, ObjectReference akItemReference, ObjectReference akDestContainer)
 		Int value = (GetGoldValue() * aiItemCount)
		TradersGold -= Value
		If TradersGold < 0
			TradersGold = 0
		endif
EndEvent

Event OnUpdateGameTime()
	if TradersGold > 0
		TradersGold = TradersGold*90/100
		self.removeallitems()
		self.additem(Gold,TradersGold)
		TradersGold = 0
	endif
EndEvent

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...