Your browser does not support JavaScript or its disabled!
Please turn it on, or be aware that some features on this website will not work correctly.
1.5K
Talk To Npc on Attack #42
Target an NPC to say Hi, Trade.
268b | 8 lines.
 --[[
  Script made by Lee (Discord: l33_) - www.trainorcreations.com
  If you want to support my work, feel free to donate at https://trainorcreations.com/donate
  PS. Stop ripping off my work and selling it as your own.
 ]]--
npcAttack = macro(10000, "Talk to NPC", function() end)
onAttackingCreatureChange(function(creature, oldCreature)
    if npcAttack:isOff() then return end
    if creature and creature:isNpc() then
        NPC.say("hi")
        scheduleNpcSay("trade", 200)
    end
end)

01 Jul 2021
Ads