Facebook
From Red Hamster, 2 Years ago, written in Plain Text.
This paste is a reply to Untitled from Coral Wolf - view diff
Embed
Download Paste or View Raw
Hits: 119
  1. Scriptname aaaAddLListScript extends Quest  
  2.  
  3. LeveledItem Property aaaLItemEnchNecklaceMisc Auto
  4.  
  5. LeveledItem Property LItemEnchNecklaceAll Auto
  6. LeveledItem Property LItemEnchNecklaceAll25 Auto
  7.  
  8.  
  9. Event OnInit()
  10.         Utility.Wait(5.0)
  11.         LItemEnchNecklaceAll.AddForm(aaaLItemEnchNecklaceMisc, 1, 1)
  12.         LItemEnchNecklaceAll25.AddForm(aaaLItemEnchNecklaceMisc, 1, 1)
  13.         Debug.Notification("New magic items are added to leveled lists.")
  14. EndEvent