4
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

15 lines
335 B

Scriptname defaultAddBookScript extends ObjectReference
BOOK PROPERTY itemToAdd AUTO
{the misc item to place}
INT PROPERTY count AUTO
{how many of the above item the char should have}
EVENT onLoad()
IF (SELF.getItemCount(itemToAdd) < count)
SELF.addItem(itemToAdd, count - SELF.getItemCount(itemToAdd), TRUE)
ENDIF
ENDEVENT