Thread: Script Help
View Single Post
  #12  
Old 06-09-2003, 07:42 AM
Deus_Sephiroth Deus_Sephiroth is offline
Registered User
Join Date: Jun 2003
Posts: 12
Deus_Sephiroth is on a distinguished road
Send a message via AIM to Deus_Sephiroth
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.
Reply With Quote