Solved NPC Click

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.

syntax0

Member
Aug 6, 2022
1
0
1
23
Hello im trying to create a Skript what makes the console say something when a NPC gets clicked. but it always says: "Can't Understand on npc click event"

Code:
command /test:
    permission: cmd.123
    permission message: "you cant do this"
    trigger:
        on npc click:
        execute console command "say hi"
 
Try this:

Hello im trying to create a Skript what makes the console say something when a NPC gets clicked. but it always says: "Can't Understand on npc click event"

Code:
command /test:
    permission: cmd.123
    permission message: "you cant do this"
    trigger:
        ...

     
on rightclick on entity:
    if entity is citizens:
        execute console command "say hi!"

Check if plugin 'Citizens' is installed!
P.S: I haven't used any scripts in a while, try this
 
Status
Not open for further replies.