Its cool guys, i appreciate all your help in all the forms, here is what I did to correct it.
NPC Code:
//Bartender Code
//Yellow Beer
if (playersays(Buy Regular Beer)&& playerrupees>=5){
playerrupees -=5;
putnpc yellowbeer.gif, yellowbeernpc.txt,13,21;
}
if (playersays(Buy Regular Beer)&& playerrupees<5){
message Sorry, you dont have enough rupees;
sleep 3;
message ;
}
//Yellowbeernpc.txt
// NPC made by Sephiroth *leader* {Brotherhood of Kazad0m}
if (playertouchsme) {
hurt -6;
hide;
}
which works fine, I just need to figure out how to change things like the players sword power for say 60 seconds after drinkin the beer. Hopefully ill think of somthing.