View Single Post
  #22  
Old 08-05-2002, 07:05 AM
Kyle_2002 Kyle_2002 is offline
Banned
Join Date: Aug 2002
Location: Where do you think?
Posts: 160
Kyle_2002 is on a distinguished road
One would not need a "up" or "down" arrow. All they need is a brain to type "Yes" or "No".

Here is the new edited script:
NPC Code:

if (playertouchsme&&!client.lucky) say2 Do you feel lucky? Yes or No?;
else say2 Hey I already talked to you!;
if (playerchats&&!client.lucky) {
if(strequals(#c,yes)) {
playerhearts = 1;
say2 Too bad punk, you arent.;
set client.lucky;
}
if(strequals(#c,no)) {
playerrupees+=100;
say2 Good kid, dont too be proud.;
set client.lucky;
}
}


Godspeed helped me edit it.
Reply With Quote