questtomelakeratheteartome01.lua 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. --[[
  2. Script Name : SpawnScripts/SouthQeynos/questtomelakeratheteartome01.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.06.05 03:06:14
  5. Script Purpose :
  6. :
  7. --]]
  8. local LakeBook = 14137
  9. local LakeQuest = 5583
  10. function spawn(NPC)
  11. Check(NPC,Spawn)
  12. SetPlayerProximityFunction(NPC, 10, "InRange", Spawn)
  13. end
  14. function respawn(NPC)
  15. spawn(NPC)
  16. end
  17. function InRange(NPC, Spawn)
  18. if HasItem(Spawn,LakeBook,1) or HasCompletedQuest(Spawn,LakeQuest) then
  19. SetAccessToEntityCommand(Spawn,NPC,"Search Books", 0)
  20. SpawnSet(NPC, "show_command_icon", 0)
  21. SpawnSet(NPC, "display_hand_icon", 0)
  22. else
  23. SetAccessToEntityCommand(Spawn,NPC,"Search Books", 1)
  24. SpawnSet(NPC, "show_command_icon", 1)
  25. SpawnSet(NPC, "display_hand_icon", 1)
  26. end
  27. end
  28. function Check(NPC,Spawn)
  29. if HasItem(Spawn,LakeBook,1) or HasCompletedQuest(Spawn,LakeQuest) then
  30. SpawnSet(NPC, "show_command_icon", 0)
  31. SpawnSet(NPC, "display_hand_icon", 0)
  32. SetAccessToEntityCommand(Spawn,NPC,"Search Books", 0)
  33. else
  34. SetAccessToEntityCommand(Spawn,NPC,"Search Books", 1)
  35. SpawnSet(NPC, "show_command_icon", 1)
  36. SpawnSet(NPC, "display_hand_icon", 1)
  37. end
  38. end
  39. function casted_on(NPC, Spawn, SpellName)
  40. if SpellName == 'Search Books' then
  41. SummonItem(Spawn,LakeBook,1)
  42. Check(NPC,Spawn)
  43. end
  44. end