Hello,

i got a problem on kill book script, i noticed that loottype isn't show blessed in the book.
same if the command already there " LootType = LootType.Blessed;"
can someone help plz?

killbook.jpg
 

Attachments

  • Book of Kills.rar
    11 KB · Views: 15
You should be able to get it to show by adding the following to the ObjectPropertyList around line 152

Code:
if (LootType == LootType.Blessed)
            {
                list.Add(1038021);
            }
 
Back