I did the npcs you talked about here is what i came up with
// NPC made by Synergy The (Enchida)
//#CLIENTSIDE
if (keydownA) {
setplayerprop #c,Look at that..I clicked!;
}
^this one i could'nt get...
// NPC made by Synergy The (Enchida)
if (waspelt) {
say2 Look at that you hit me!;
}
// NPC made by Synergy The (Enchida)
if (playerchats&&strequals(#c,buy sword)){
if (playerrupees=>100){
message Fine.;
lay goldensword;
players[index].rupees-=100;
sleep 2;
message ;
}
if (playerrupees=<100){
message You don’t have enough money!;
sleep 3;
message ;
}
}
// NPC made by Synergy The (Enchida)
if (wasshot) {
hurt 1;
}
//What do you think?