View Single Post
  #19  
Old 07-24-2003, 12:09 PM
sYnergy247 sYnergy247 is offline
Banned
sYnergy247's Avatar
Join Date: Jun 2003
Location: Scott Land USA(er..) Canada
Posts: 1,043
sYnergy247 is on a distinguished road
Send a message via AIM to sYnergy247 Send a message via Yahoo to sYnergy247
GoZelda..

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?
Reply With Quote